This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 39487c7b Publish built docs triggered by
6f9b56abe8fa9eaa127ccce1f76c083185dbd060
39487c7b is described below
commit 39487c7b3e804abfac18080c64b48f17fb7b11b9
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 15 23:18:38 2024 +0000
Publish built docs triggered by 6f9b56abe8fa9eaa127ccce1f76c083185dbd060
---
.buildinfo | 2 +-
_sources/user-guide/expressions.md.txt | 6 +++---
_static/searchtools.js | 7 ++++---
contributor-guide/adding_a_new_expression.html | 2 +-
contributor-guide/benchmarking.html | 2 +-
contributor-guide/contributing.html | 2 +-
contributor-guide/debugging.html | 2 +-
contributor-guide/development.html | 2 +-
contributor-guide/plugin_overview.html | 2 +-
contributor-guide/profiling_native_code.html | 2 +-
contributor-guide/spark-sql-tests.html | 2 +-
genindex.html | 2 +-
index.html | 2 +-
search.html | 2 +-
searchindex.js | 2 +-
user-guide/compatibility.html | 2 +-
user-guide/configs.html | 2 +-
user-guide/datatypes.html | 2 +-
user-guide/expressions.html | 8 ++++----
user-guide/installation.html | 2 +-
user-guide/operators.html | 2 +-
user-guide/overview.html | 2 +-
user-guide/tuning.html | 2 +-
23 files changed, 31 insertions(+), 30 deletions(-)
diff --git a/.buildinfo b/.buildinfo
index 17231004..6fb34351 100644
--- a/.buildinfo
+++ b/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it
is not found, a full rebuild will be done.
-config: 7bf65a2b622d2a65f7ba6d187a242143
+config: f510ec0db78061506c95a8d6de678dfe
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/_sources/user-guide/expressions.md.txt
b/_sources/user-guide/expressions.md.txt
index 07323382..e44f6731 100644
--- a/_sources/user-guide/expressions.md.txt
+++ b/_sources/user-guide/expressions.md.txt
@@ -120,9 +120,9 @@ The following Spark expressions are currently available.
Any known compatibility
| Exp |
|
| Floor |
|
| IsNaN |
|
-| Log | log(0) will produce `-Infinity` unlike Spark which returns
`null` |
-| Log2 | log2(0) will produce `-Infinity` unlike Spark which returns
`null` |
-| Log10 | log10(0) will produce `-Infinity` unlike Spark which returns
`null` |
+| Log |
|
+| Log2 |
|
+| Log10 |
|
| Pow |
|
| Round |
|
| Signum | Signum does not differentiate between `0.0` and `-0.0`
|
diff --git a/_static/searchtools.js b/_static/searchtools.js
index 92da3f8b..b08d58c9 100644
--- a/_static/searchtools.js
+++ b/_static/searchtools.js
@@ -178,7 +178,7 @@ const Search = {
htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString,
'text/html');
- for (const removalQuery of [".headerlinks", "script", "style"]) {
+ for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove()
});
}
if (anchor) {
@@ -328,13 +328,14 @@ const Search = {
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) &&
(queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
- let score = Math.round(100 * queryLower.length / title.length)
+ const score = Math.round(Scorer.title * queryLower.length /
title.length);
+ const boost = titles[file] === title ? 1 : 0; // add a boost for
document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
- score,
+ score + boost,
filenames[file],
]);
}
diff --git a/contributor-guide/adding_a_new_expression.html
b/contributor-guide/adding_a_new_expression.html
index dfaf119a..2e70717d 100644
--- a/contributor-guide/adding_a_new_expression.html
+++ b/contributor-guide/adding_a_new_expression.html
@@ -599,7 +599,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/benchmarking.html
b/contributor-guide/benchmarking.html
index f6c427ba..24b91865 100644
--- a/contributor-guide/benchmarking.html
+++ b/contributor-guide/benchmarking.html
@@ -449,7 +449,7 @@ is an ongoing task, and we welcome contributions from the
community to help achi
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/contributing.html
b/contributor-guide/contributing.html
index ff05a021..41b7e492 100644
--- a/contributor-guide/contributing.html
+++ b/contributor-guide/contributing.html
@@ -405,7 +405,7 @@ coordinate on issues that they are working on.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/debugging.html b/contributor-guide/debugging.html
index 74f80e03..293bbe83 100644
--- a/contributor-guide/debugging.html
+++ b/contributor-guide/debugging.html
@@ -516,7 +516,7 @@ To enable this option with Comet it is needed to include
<code class="docutils l
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/development.html
b/contributor-guide/development.html
index fb9f6e67..742e12a4 100644
--- a/contributor-guide/development.html
+++ b/contributor-guide/development.html
@@ -531,7 +531,7 @@ automatically format the code. Before submitting a pull
request, you can simply
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/plugin_overview.html
b/contributor-guide/plugin_overview.html
index d9079676..6d83732a 100644
--- a/contributor-guide/plugin_overview.html
+++ b/contributor-guide/plugin_overview.html
@@ -397,7 +397,7 @@ override the DataFusion versions to ensure compatibility
with Apache Spark.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/profiling_native_code.html
b/contributor-guide/profiling_native_code.html
index e295818b..da3903a3 100644
--- a/contributor-guide/profiling_native_code.html
+++ b/contributor-guide/profiling_native_code.html
@@ -425,7 +425,7 @@ running flamegraph.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/contributor-guide/spark-sql-tests.html
b/contributor-guide/spark-sql-tests.html
index 1a72eae4..79557e7c 100644
--- a/contributor-guide/spark-sql-tests.html
+++ b/contributor-guide/spark-sql-tests.html
@@ -475,7 +475,7 @@ new version.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/genindex.html b/genindex.html
index fa7d6093..688915c6 100644
--- a/genindex.html
+++ b/genindex.html
@@ -300,7 +300,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/index.html b/index.html
index 4a1a1927..552c0211 100644
--- a/index.html
+++ b/index.html
@@ -373,7 +373,7 @@ as a native runtime to achieve improvement in terms of
query efficiency and quer
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/search.html b/search.html
index 1bbe7040..13e1a09a 100644
--- a/search.html
+++ b/search.html
@@ -327,7 +327,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/searchindex.js b/searchindex.js
index d2bd5e4e..9b55e137 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"1. Install Comet": [[7, "install-comet"]], "2.
Clone Spark and Apply Diff": [[7, "clone-spark-and-apply-diff"]], "3. Run Spark
SQL Tests": [[7, "run-spark-sql-tests"]], "ANSI mode": [[9, "ansi-mode"]], "API
Differences Between Spark Versions": [[0,
"api-differences-between-spark-versions"]], "ASF Links": [[8, null]], "Adding
Spark-side Tests for the New Expression": [[0,
"adding-spark-side-tests-for-the-new-expression"]], "Adding a New Expression":
[[0, "a [...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"1. Install Comet": [[7, "install-comet"]], "2.
Clone Spark and Apply Diff": [[7, "clone-spark-and-apply-diff"]], "3. Run Spark
SQL Tests": [[7, "run-spark-sql-tests"]], "ANSI mode": [[9, "ansi-mode"]], "API
Differences Between Spark Versions": [[0,
"api-differences-between-spark-versions"]], "ASF Links": [[8, null]], "Adding
Spark-side Tests for the New Expression": [[0,
"adding-spark-side-tests-for-the-new-expression"]], "Adding a New Expression":
[[0, nu [...]
\ No newline at end of file
diff --git a/user-guide/compatibility.html b/user-guide/compatibility.html
index a3005d8b..2916d98d 100644
--- a/user-guide/compatibility.html
+++ b/user-guide/compatibility.html
@@ -741,7 +741,7 @@ Spark.</p></li>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/configs.html b/user-guide/configs.html
index fcb12492..2c7ab7ab 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -468,7 +468,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/datatypes.html b/user-guide/datatypes.html
index 61bf44e5..c448a948 100644
--- a/user-guide/datatypes.html
+++ b/user-guide/datatypes.html
@@ -379,7 +379,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/expressions.html b/user-guide/expressions.html
index 0d406287..a2890304 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -654,13 +654,13 @@ under the License.
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>Log</p></td>
-<td><p>log(0) will produce <code class="docutils literal notranslate"><span
class="pre">-Infinity</span></code> unlike Spark which returns <code
class="docutils literal notranslate"><span
class="pre">null</span></code></p></td>
+<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>Log2</p></td>
-<td><p>log2(0) will produce <code class="docutils literal notranslate"><span
class="pre">-Infinity</span></code> unlike Spark which returns <code
class="docutils literal notranslate"><span
class="pre">null</span></code></p></td>
+<td><p></p></td>
</tr>
<tr class="row-even"><td><p>Log10</p></td>
-<td><p>log10(0) will produce <code class="docutils literal notranslate"><span
class="pre">-Infinity</span></code> unlike Spark which returns <code
class="docutils literal notranslate"><span
class="pre">null</span></code></p></td>
+<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>Pow</p></td>
<td><p></p></td>
@@ -901,7 +901,7 @@ under the License.
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/installation.html b/user-guide/installation.html
index e5ebf26a..3a154593 100644
--- a/user-guide/installation.html
+++ b/user-guide/installation.html
@@ -506,7 +506,7 @@ components which will then fail at runtime. For example:</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/operators.html b/user-guide/operators.html
index 1a57f590..9664bea3 100644
--- a/user-guide/operators.html
+++ b/user-guide/operators.html
@@ -400,7 +400,7 @@ not supported by Comet will fall back to regular Spark
execution.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/overview.html b/user-guide/overview.html
index b7f119ca..d4b14b11 100644
--- a/user-guide/overview.html
+++ b/user-guide/overview.html
@@ -416,7 +416,7 @@ enabled.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
diff --git a/user-guide/tuning.html b/user-guide/tuning.html
index 3a967d9e..12da9fd4 100644
--- a/user-guide/tuning.html
+++ b/user-guide/tuning.html
@@ -427,7 +427,7 @@ To enable native shuffle, just set <code class="docutils
literal notranslate"><s
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.4.4.<br>
</p>
</div>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]