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.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 3f08835b0e Publish built docs triggered by 
0b5bfe2cfeccae6df4ee09010c1532e1299eab29
3f08835b0e is described below

commit 3f08835b0e8a70b9e8c4a328acc74982e2054b82
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 22 15:38:56 2024 +0000

    Publish built docs triggered by 0b5bfe2cfeccae6df4ee09010c1532e1299eab29
---
 _sources/user-guide/example-usage.md.txt           | 24 ++++++++++++++++++++++
 contributor-guide/architecture.html                |  2 +-
 contributor-guide/communication.html               |  2 +-
 contributor-guide/index.html                       |  2 +-
 contributor-guide/quarterly_roadmap.html           |  2 +-
 contributor-guide/roadmap.html                     |  2 +-
 contributor-guide/specification/index.html         |  2 +-
 contributor-guide/specification/invariants.html    |  2 +-
 .../specification/output-field-name-semantic.html  |  2 +-
 genindex.html                                      |  2 +-
 index.html                                         |  2 +-
 library-user-guide/adding-udfs.html                |  2 +-
 library-user-guide/building-logical-plans.html     |  2 +-
 library-user-guide/catalogs.html                   |  2 +-
 library-user-guide/custom-table-providers.html     |  2 +-
 library-user-guide/extending-operators.html        |  2 +-
 library-user-guide/index.html                      |  2 +-
 library-user-guide/profiling.html                  |  2 +-
 library-user-guide/using-the-dataframe-api.html    |  2 +-
 library-user-guide/using-the-sql-api.html          |  2 +-
 library-user-guide/working-with-exprs.html         |  2 +-
 search.html                                        |  2 +-
 searchindex.js                                     |  2 +-
 user-guide/cli/datasources.html                    |  2 +-
 user-guide/cli/index.html                          |  2 +-
 user-guide/cli/installation.html                   |  2 +-
 user-guide/cli/overview.html                       |  2 +-
 user-guide/cli/usage.html                          |  2 +-
 user-guide/configs.html                            |  2 +-
 user-guide/dataframe.html                          |  2 +-
 user-guide/example-usage.html                      | 22 +++++++++++++++++++-
 user-guide/expressions.html                        |  2 +-
 user-guide/faq.html                                |  2 +-
 user-guide/introduction.html                       |  2 +-
 user-guide/sql/aggregate_functions.html            |  2 +-
 user-guide/sql/data_types.html                     |  2 +-
 user-guide/sql/ddl.html                            |  2 +-
 user-guide/sql/dml.html                            |  2 +-
 user-guide/sql/explain.html                        |  2 +-
 user-guide/sql/index.html                          |  2 +-
 user-guide/sql/information_schema.html             |  2 +-
 user-guide/sql/operators.html                      |  2 +-
 user-guide/sql/scalar_functions.html               |  2 +-
 user-guide/sql/select.html                         |  2 +-
 user-guide/sql/sql_status.html                     |  2 +-
 user-guide/sql/subqueries.html                     |  2 +-
 user-guide/sql/window_functions.html               |  2 +-
 user-guide/sql/write_options.html                  |  2 +-
 48 files changed, 91 insertions(+), 47 deletions(-)

diff --git a/_sources/user-guide/example-usage.md.txt 
b/_sources/user-guide/example-usage.md.txt
index 6e4bf68fa0..9c6482e6bb 100644
--- a/_sources/user-guide/example-usage.md.txt
+++ b/_sources/user-guide/example-usage.md.txt
@@ -279,4 +279,28 @@ backtrace:    0: 
std::backtrace_rs::backtrace::libunwind::trace
    ............
 ```
 
+The backtraces are useful when debugging code. If there is a test in 
`datafusion/core/src/physical_planner.rs`
+
+```
+#[tokio::test]
+async fn test_get_backtrace_for_failed_code() -> Result<()> {
+    let ctx = SessionContext::new();
+
+    let sql = "
+    select row_numer() over (partition by a order by a) from (select 1 a);
+    ";
+
+    let _ = ctx.sql(sql).await?.collect().await?;
+
+    Ok(())
+}
+```
+
+To obtain a backtrace:
+
+```bash
+cargo build --features=backtrace
+RUST_BACKTRACE=1 cargo test --features=backtrace --package datafusion --lib -- 
physical_planner::tests::test_get_backtrace_for_failed_code --exact --nocapture
+```
+
 Note: The backtrace wrapped into systems calls, so some steps on top of the 
backtrace can be ignored
diff --git a/contributor-guide/architecture.html 
b/contributor-guide/architecture.html
index d128aa7d81..c076acc819 100644
--- a/contributor-guide/architecture.html
+++ b/contributor-guide/architecture.html
@@ -474,7 +474,7 @@ possible. You can find the most up to date version in the 
<a class="reference ex
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/communication.html 
b/contributor-guide/communication.html
index a64a3c55b0..c056a62365 100644
--- a/contributor-guide/communication.html
+++ b/contributor-guide/communication.html
@@ -521,7 +521,7 @@ that the appropriate people in the Apache Arrow community 
notice the message.</p
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/index.html b/contributor-guide/index.html
index 64c96dc616..e0321e3e50 100644
--- a/contributor-guide/index.html
+++ b/contributor-guide/index.html
@@ -993,7 +993,7 @@ taplo<span class="w"> </span><span class="m">0</span>.9.0
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/quarterly_roadmap.html 
b/contributor-guide/quarterly_roadmap.html
index b76e8f468c..f8a6b8c799 100644
--- a/contributor-guide/quarterly_roadmap.html
+++ b/contributor-guide/quarterly_roadmap.html
@@ -650,7 +650,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/roadmap.html b/contributor-guide/roadmap.html
index f008a75138..31510f1893 100644
--- a/contributor-guide/roadmap.html
+++ b/contributor-guide/roadmap.html
@@ -508,7 +508,7 @@ make review efficient and avoid surprises.</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/specification/index.html 
b/contributor-guide/specification/index.html
index 4822f11ce5..eb3d0002e0 100644
--- a/contributor-guide/specification/index.html
+++ b/contributor-guide/specification/index.html
@@ -459,7 +459,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/specification/invariants.html 
b/contributor-guide/specification/invariants.html
index 0304d74e10..09eed8a600 100644
--- a/contributor-guide/specification/invariants.html
+++ b/contributor-guide/specification/invariants.html
@@ -976,7 +976,7 @@ schemas.</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/specification/output-field-name-semantic.html 
b/contributor-guide/specification/output-field-name-semantic.html
index 0ba2f0834c..dddbb3d54c 100644
--- a/contributor-guide/specification/output-field-name-semantic.html
+++ b/contributor-guide/specification/output-field-name-semantic.html
@@ -894,7 +894,7 @@ DataFusion queries planned from both SQL queries and 
Dataframe APIs.</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/genindex.html b/genindex.html
index aad98486fa..789a88f80b 100644
--- a/genindex.html
+++ b/genindex.html
@@ -418,7 +418,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/index.html b/index.html
index df41e395b1..32710e9473 100644
--- a/index.html
+++ b/index.html
@@ -512,7 +512,7 @@ community.</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/adding-udfs.html 
b/library-user-guide/adding-udfs.html
index 2ed974f00d..44c82f370b 100644
--- a/library-user-guide/adding-udfs.html
+++ b/library-user-guide/adding-udfs.html
@@ -1122,7 +1122,7 @@ There is a lower level API with more functionality but is 
more complex, that is
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/building-logical-plans.html 
b/library-user-guide/building-logical-plans.html
index c98f362e3f..c61526f066 100644
--- a/library-user-guide/building-logical-plans.html
+++ b/library-user-guide/building-logical-plans.html
@@ -596,7 +596,7 @@ wrapper for a <a class="reference external" 
href="https://docs.rs/datafusion/lat
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/catalogs.html b/library-user-guide/catalogs.html
index 4c15c9dcdd..4bfa4de5ed 100644
--- a/library-user-guide/catalogs.html
+++ b/library-user-guide/catalogs.html
@@ -703,7 +703,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/custom-table-providers.html 
b/library-user-guide/custom-table-providers.html
index 00e12cd718..b7ca199c66 100644
--- a/library-user-guide/custom-table-providers.html
+++ b/library-user-guide/custom-table-providers.html
@@ -684,7 +684,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/extending-operators.html 
b/library-user-guide/extending-operators.html
index 138d538a53..3f10995c53 100644
--- a/library-user-guide/extending-operators.html
+++ b/library-user-guide/extending-operators.html
@@ -472,7 +472,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/index.html b/library-user-guide/index.html
index 5c13efe450..bcf4c9a4df 100644
--- a/library-user-guide/index.html
+++ b/library-user-guide/index.html
@@ -473,7 +473,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/profiling.html 
b/library-user-guide/profiling.html
index 4da4b49c2a..eef09cf5a4 100644
--- a/library-user-guide/profiling.html
+++ b/library-user-guide/profiling.html
@@ -544,7 +544,7 @@ sudo<span class="w"> </span>dtrace<span class="w"> 
</span>-c<span class="w"> </s
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/using-the-dataframe-api.html 
b/library-user-guide/using-the-dataframe-api.html
index ad1f52fcb8..ba72f327e0 100644
--- a/library-user-guide/using-the-dataframe-api.html
+++ b/library-user-guide/using-the-dataframe-api.html
@@ -619,7 +619,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/using-the-sql-api.html 
b/library-user-guide/using-the-sql-api.html
index 783dc078c7..b73795922a 100644
--- a/library-user-guide/using-the-sql-api.html
+++ b/library-user-guide/using-the-sql-api.html
@@ -472,7 +472,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/working-with-exprs.html 
b/library-user-guide/working-with-exprs.html
index c2baf43016..c5d4addd21 100644
--- a/library-user-guide/working-with-exprs.html
+++ b/library-user-guide/working-with-exprs.html
@@ -712,7 +712,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/search.html b/search.html
index bcb1fad75f..cf40ac0db6 100644
--- a/search.html
+++ b/search.html
@@ -445,7 +445,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/searchindex.js b/searchindex.js
index fa61daf409..2756879ac7 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"!=": [[37, "op-neq"]], "!~": [[37, 
"op-re-not-match"]], "!~*": [[37, "op-re-not-match-i"]], "!~~": [[37, "id18"]], 
"!~~*": [[37, "id19"]], "#": [[37, "op-bit-xor"]], "%": [[37, "op-modulo"]], 
"&": [[37, "op-bit-and"]], "(relation, name) tuples in logical fields and 
logical columns are unique": [[6, 
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*": 
[[37, "op-multiply"]], "+": [[37, "op-plus"]], "-": [[37, "op-minus"]], "/": 
[[3 [...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"!=": [[37, "op-neq"]], "!~": [[37, 
"op-re-not-match"]], "!~*": [[37, "op-re-not-match-i"]], "!~~": [[37, "id18"]], 
"!~~*": [[37, "id19"]], "#": [[37, "op-bit-xor"]], "%": [[37, "op-modulo"]], 
"&": [[37, "op-bit-and"]], "(relation, name) tuples in logical fields and 
logical columns are unique": [[6, 
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*": 
[[37, "op-multiply"]], "+": [[37, "op-plus"]], "-": [[37, "op-minus"]], "/": 
[[3 [...]
\ No newline at end of file
diff --git a/user-guide/cli/datasources.html b/user-guide/cli/datasources.html
index cd807d81af..c9e755dcb9 100644
--- a/user-guide/cli/datasources.html
+++ b/user-guide/cli/datasources.html
@@ -894,7 +894,7 @@ DataFusion<span class="w"> </span>CLI<span class="w"> 
</span>v21.0.0
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/index.html b/user-guide/cli/index.html
index 5774c50a97..4e474acc6c 100644
--- a/user-guide/cli/index.html
+++ b/user-guide/cli/index.html
@@ -495,7 +495,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/installation.html b/user-guide/cli/installation.html
index 897640be43..a7bb17ecb9 100644
--- a/user-guide/cli/installation.html
+++ b/user-guide/cli/installation.html
@@ -528,7 +528,7 @@ docker<span class="w"> </span>run<span class="w"> 
</span>-it<span class="w"> </s
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/overview.html b/user-guide/cli/overview.html
index c7f8ffa79f..c5a87e888c 100644
--- a/user-guide/cli/overview.html
+++ b/user-guide/cli/overview.html
@@ -491,7 +491,7 @@ and <a class="reference internal" 
href="datasources.html"><span class="doc std s
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/usage.html b/user-guide/cli/usage.html
index db18aa4e00..df29eb4b72 100644
--- a/user-guide/cli/usage.html
+++ b/user-guide/cli/usage.html
@@ -878,7 +878,7 @@ in the file. Please refer to the <a class="reference 
external" href="https://par
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/configs.html b/user-guide/configs.html
index f036701d68..116e48717d 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -786,7 +786,7 @@ Environment variables are read during <code class="docutils 
literal notranslate"
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/dataframe.html b/user-guide/dataframe.html
index 76b1ccf33a..e053bf9dd1 100644
--- a/user-guide/dataframe.html
+++ b/user-guide/dataframe.html
@@ -652,7 +652,7 @@ execution. The plan is evaluated (executed) when an action 
method is invoked, su
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/example-usage.html b/user-guide/example-usage.html
index 6fcf1a627f..bfeb5386a1 100644
--- a/user-guide/example-usage.html
+++ b/user-guide/example-usage.html
@@ -729,6 +729,26 @@ backtrace:<span class="w">    </span><span 
class="m">0</span>:<span class="w"> <
 <span class="w">   </span>............
 </pre></div>
 </div>
+<p>The backtraces are useful when debugging code. If there is a test in <code 
class="docutils literal notranslate"><span 
class="pre">datafusion/core/src/physical_planner.rs</span></code></p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>#[tokio::test]
+async fn test_get_backtrace_for_failed_code() -&gt; Result&lt;()&gt; {
+    let ctx = SessionContext::new();
+
+    let sql = &quot;
+    select row_numer() over (partition by a order by a) from (select 1 a);
+    &quot;;
+
+    let _ = ctx.sql(sql).await?.collect().await?;
+
+    Ok(())
+}
+</pre></div>
+</div>
+<p>To obtain a backtrace:</p>
+<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>cargo<span class="w"> </span>build<span 
class="w"> </span>--features<span class="o">=</span>backtrace
+<span class="nv">RUST_BACKTRACE</span><span class="o">=</span><span 
class="m">1</span><span class="w"> </span>cargo<span class="w"> </span><span 
class="nb">test</span><span class="w"> </span>--features<span 
class="o">=</span>backtrace<span class="w"> </span>--package<span class="w"> 
</span>datafusion<span class="w"> </span>--lib<span class="w"> </span>--<span 
class="w"> 
</span>physical_planner::tests::test_get_backtrace_for_failed_code<span 
class="w"> </span>--exact<span class="w"> </spa [...]
+</pre></div>
+</div>
 <p>Note: The backtrace wrapped into systems calls, so some steps on top of the 
backtrace can be ignored</p>
 </section>
 </section>
@@ -775,7 +795,7 @@ backtrace:<span class="w">    </span><span 
class="m">0</span>:<span class="w"> <
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/expressions.html b/user-guide/expressions.html
index ebea0396a1..c786daa230 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -1313,7 +1313,7 @@ but these operators always return a <code class="docutils 
literal notranslate"><
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/faq.html b/user-guide/faq.html
index d44511c83e..8ad63522a4 100644
--- a/user-guide/faq.html
+++ b/user-guide/faq.html
@@ -540,7 +540,7 @@ targets end-users rather than developers of other database 
systems.</p></li>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index 70c2848fda..b006adf06e 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -655,7 +655,7 @@ provide integrations with other systems, some of which are 
described below:</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/aggregate_functions.html 
b/user-guide/sql/aggregate_functions.html
index 0971854011..48784c0253 100644
--- a/user-guide/sql/aggregate_functions.html
+++ b/user-guide/sql/aggregate_functions.html
@@ -1727,7 +1727,7 @@ Can be a constant, column, or function, and any 
combination of arithmetic operat
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/data_types.html b/user-guide/sql/data_types.html
index f3c5a559ac..f3d41406cb 100644
--- a/user-guide/sql/data_types.html
+++ b/user-guide/sql/data_types.html
@@ -801,7 +801,7 @@ For example, to cast the output of <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.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/ddl.html b/user-guide/sql/ddl.html
index 3810d5655a..8ecf82ff6a 100644
--- a/user-guide/sql/ddl.html
+++ b/user-guide/sql/ddl.html
@@ -751,7 +751,7 @@ DROP VIEW [ IF EXISTS ] <b><i>view_name</i></b>;
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/dml.html b/user-guide/sql/dml.html
index 54fe70f5cb..1ed74cc892 100644
--- a/user-guide/sql/dml.html
+++ b/user-guide/sql/dml.html
@@ -600,7 +600,7 @@ INSERT INTO <i><b>table_name</i></b> { VALUES ( 
<i><b>expression</i></b> [, ...]
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/explain.html b/user-guide/sql/explain.html
index ec7f151c30..d3193780a6 100644
--- a/user-guide/sql/explain.html
+++ b/user-guide/sql/explain.html
@@ -533,7 +533,7 @@ If you need more information output, use <code 
class="docutils literal notransla
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/index.html b/user-guide/sql/index.html
index 61597d1053..8477b0fda8 100644
--- a/user-guide/sql/index.html
+++ b/user-guide/sql/index.html
@@ -556,7 +556,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/information_schema.html 
b/user-guide/sql/information_schema.html
index e6b01bb6eb..af57436701 100644
--- a/user-guide/sql/information_schema.html
+++ b/user-guide/sql/information_schema.html
@@ -514,7 +514,7 @@ views of the ISO SQL <code class="docutils literal 
notranslate"><span class="pre
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/operators.html b/user-guide/sql/operators.html
index 4bba6128d8..7037067eaa 100644
--- a/user-guide/sql/operators.html
+++ b/user-guide/sql/operators.html
@@ -1229,7 +1229,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/scalar_functions.html 
b/user-guide/sql/scalar_functions.html
index 4d33d182cc..55f5d789e5 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -7432,7 +7432,7 @@ string operators.</p></li>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/select.html b/user-guide/sql/select.html
index 87b44f9f80..10afd9e4e8 100644
--- a/user-guide/sql/select.html
+++ b/user-guide/sql/select.html
@@ -778,7 +778,7 @@ This order can be changed to descending by adding <code 
class="docutils literal
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/sql_status.html b/user-guide/sql/sql_status.html
index 4c23dc482e..110213c6b9 100644
--- a/user-guide/sql/sql_status.html
+++ b/user-guide/sql/sql_status.html
@@ -603,7 +603,7 @@ trait, DataFusion includes built in support for the 
following formats:</p>
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/subqueries.html b/user-guide/sql/subqueries.html
index d7633b922e..8928e9dd0c 100644
--- a/user-guide/sql/subqueries.html
+++ b/user-guide/sql/subqueries.html
@@ -571,7 +571,7 @@ is an example of a filter using a scalar subquery. Only 
correlated subqueries ar
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/window_functions.html 
b/user-guide/sql/window_functions.html
index fce1a515cd..ca04557bcc 100644
--- a/user-guide/sql/window_functions.html
+++ b/user-guide/sql/window_functions.html
@@ -882,7 +882,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/write_options.html 
b/user-guide/sql/write_options.html
index fd8ecfe69d..30ca414da3 100644
--- a/user-guide/sql/write_options.html
+++ b/user-guide/sql/write_options.html
@@ -689,7 +689,7 @@
     
     <div class="footer-item">
       <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.6.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.3.7.<br>
 </p>
     </div>
     


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to