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 427cd7e8d0 Publish built docs triggered by 
133128840ca3dbea200dcfe84050cb7b82bf94a8
427cd7e8d0 is described below

commit 427cd7e8d081ce4407ead3aecacb104d34f53676
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jul 16 11:19:59 2024 +0000

    Publish built docs triggered by 133128840ca3dbea200dcfe84050cb7b82bf94a8
---
 .buildinfo                                         |  2 +-
 _sources/contributor-guide/architecture.md.txt     | 74 +++++++++++++++++
 _static/searchtools.js                             |  7 +-
 contributor-guide/architecture.html                | 92 +++++++++++++++++++++-
 contributor-guide/communication.html               |  2 +-
 contributor-guide/getting_started.html             |  2 +-
 contributor-guide/governance.html                  |  2 +-
 contributor-guide/howtos.html                      |  2 +-
 contributor-guide/index.html                       |  2 +-
 contributor-guide/inviting.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 +-
 contributor-guide/testing.html                     |  2 +-
 download.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/crate-configuration.html                |  2 +-
 user-guide/dataframe.html                          |  2 +-
 user-guide/example-usage.html                      |  2 +-
 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 +-
 56 files changed, 221 insertions(+), 58 deletions(-)

diff --git a/.buildinfo b/.buildinfo
index 3b6dcc57d2..5b9ed646b0 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: 136576f7a76d85edf958a1a31347fb8a
+config: 0b06fa16321819ad8c6451147aefaa77
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/_sources/contributor-guide/architecture.md.txt 
b/_sources/contributor-guide/architecture.md.txt
index 68541f8777..55c8a1d980 100644
--- a/_sources/contributor-guide/architecture.md.txt
+++ b/_sources/contributor-guide/architecture.md.txt
@@ -25,3 +25,77 @@ possible. You can find the most up to date version in the 
[source code].
 
 [crates.io documentation]: 
https://docs.rs/datafusion/latest/datafusion/index.html#architecture
 [source code]: 
https://github.com/apache/datafusion/blob/main/datafusion/core/src/lib.rs
+
+## Forks vs Extension APIs
+
+DataFusion is a fast moving project, which results in frequent internal 
changes.
+This benefits DataFusion by allowing it to evolve and respond quickly to
+requests, but also means that maintaining a fork with major modifications
+sometimes requires non trivial work.
+
+The public API (what is accessible if you use the DataFusion releases from
+crates.io) is typically much more stable (though it does change from release to
+release as well).
+
+Thus, rather than forks, we recommend using one of the many extension APIs 
(such
+as `TableProvider`, `OptimizerRule`, or `ExecutionPlan`) to customize
+DataFusion. If you can not do what you want with the existing APIs, we would
+welcome you working with us to add new APIs to enable your use case, as
+described in the next section.
+
+## `datafusion-contrib`
+
+While DataFusions comes with enough features "out of the box" to quickly start
+with a working system, it can't include everything useful feature (e.g.
+`TableProvider`s for all data formats). The [`datafusion-contrib`] project
+contains a collection of community maintained extensions that are not part of
+the core DataFusion project, and not under Apache Software Foundation 
governance
+but may be useful to others in the community. If you are interested adding a
+feature to DataFusion, a new extension in `datafusion-contrib` is likely a good
+place to start. Please [contact] us via github issue, slack, or Discord and
+we'll gladly set up a new repository for your extension.
+
+[`datafusion-contrib`]: https://github.com/datafusion-contrib
+[contact]: ../contributor-guide/communication.md
+
+## Creating new Extension APIs
+
+DataFusion aims to be a general-purpose query engine, and thus the core crates
+contain features that are useful for a wide range of use cases. Use case 
specific
+functionality (such as very specific time series or stream processing features)
+are typically implemented using the extension APIs.
+
+If have a use case that is not covered by the existing APIs, we would love to
+work with you to design a new general purpose API. There are often others who 
are
+interested in similar extensions and the act of defining the API often improves
+the code overall for everyone.
+
+Extension APIs that provide "safe" default behaviors are more likely to be
+suitable for inclusion in DataFusion, while APIs that require major changes to
+built-in operators are less likely. For example, it might make less sense
+to add an API to support a stream processing feature if that would result in
+slower performance for built-in operators. It may still make sense to add
+extension APIs for such features, but leave implementation of such operators in
+downstream projects.
+
+The process to create a new extension API is typically:
+
+- Look for an existing issue describing what you want to do, and file one if it
+  doesn't yet exist.
+- Discuss what the API would look like. Feel free to ask contributors (via `@`
+  mentions) for feedback (you can find such people by looking at the most
+  recently changed PRs and issues)
+- Prototype the new API, typically by adding an example (in
+  `datafusion-examples` or refactoring existing code) to show how it would work
+- Create a PR with the new API, and work with the community to get it merged
+
+Some benefits of using an example based approach are
+
+- Any future API changes will also keep your example going ensuring no
+  regression in functionality
+- There will be a blue print of any needed changes to your code if the APIs do 
change
+  (just look at what changed in your example)
+
+An example of this process was [creating a SQL Extension Planning API].
+
+[creating a sql extension planning api]: 
https://github.com/apache/datafusion/issues/11207
diff --git a/_static/searchtools.js b/_static/searchtools.js
index 92da3f8b22..b08d58c9b9 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/architecture.html 
b/contributor-guide/architecture.html
index 79f591b61b..8685205f46 100644
--- a/contributor-guide/architecture.html
+++ b/contributor-guide/architecture.html
@@ -467,9 +467,33 @@
               
               <div class="toc-item">
                 
+<div class="tocsection onthispage pt-5 pb-3">
+    <i class="fas fa-list"></i> On this page
+</div>
 
 <nav id="bd-toc-nav">
-    
+    <ul class="visible nav section-nav flex-column">
+ <li class="toc-h2 nav-item toc-entry">
+  <a class="reference internal nav-link" href="#forks-vs-extension-apis">
+   Forks vs Extension APIs
+  </a>
+ </li>
+ <li class="toc-h2 nav-item toc-entry">
+  <a class="reference internal nav-link" href="#datafusion-contrib">
+   <code class="docutils literal notranslate">
+    <span class="pre">
+     datafusion-contrib
+    </span>
+   </code>
+  </a>
+ </li>
+ <li class="toc-h2 nav-item toc-entry">
+  <a class="reference internal nav-link" href="#creating-new-extension-apis">
+   Creating new Extension APIs
+  </a>
+ </li>
+</ul>
+
 </nav>
               </div>
               
@@ -519,6 +543,70 @@
 <p>DataFusion’s code structure and organization is described in the
 <a class="reference external" 
href="https://docs.rs/datafusion/latest/datafusion/index.html#architecture";>crates.io
 documentation</a>, to keep it as close to the source as
 possible. You can find the most up to date version in the <a class="reference 
external" 
href="https://github.com/apache/datafusion/blob/main/datafusion/core/src/lib.rs";>source
 code</a>.</p>
+<section id="forks-vs-extension-apis">
+<h2>Forks vs Extension APIs<a class="headerlink" 
href="#forks-vs-extension-apis" title="Link to this heading">¶</a></h2>
+<p>DataFusion is a fast moving project, which results in frequent internal 
changes.
+This benefits DataFusion by allowing it to evolve and respond quickly to
+requests, but also means that maintaining a fork with major modifications
+sometimes requires non trivial work.</p>
+<p>The public API (what is accessible if you use the DataFusion releases from
+crates.io) is typically much more stable (though it does change from release to
+release as well).</p>
+<p>Thus, rather than forks, we recommend using one of the many extension APIs 
(such
+as <code class="docutils literal notranslate"><span 
class="pre">TableProvider</span></code>, <code class="docutils literal 
notranslate"><span class="pre">OptimizerRule</span></code>, or <code 
class="docutils literal notranslate"><span 
class="pre">ExecutionPlan</span></code>) to customize
+DataFusion. If you can not do what you want with the existing APIs, we would
+welcome you working with us to add new APIs to enable your use case, as
+described in the next section.</p>
+</section>
+<section id="datafusion-contrib">
+<h2><code class="docutils literal notranslate"><span 
class="pre">datafusion-contrib</span></code><a class="headerlink" 
href="#datafusion-contrib" title="Link to this heading">¶</a></h2>
+<p>While DataFusions comes with enough features “out of the box” to quickly 
start
+with a working system, it can’t include everything useful feature (e.g.
+<code class="docutils literal notranslate"><span 
class="pre">TableProvider</span></code>s for all data formats). The <a 
class="reference external" href="https://github.com/datafusion-contrib";><code 
class="docutils literal notranslate"><span 
class="pre">datafusion-contrib</span></code></a> project
+contains a collection of community maintained extensions that are not part of
+the core DataFusion project, and not under Apache Software Foundation 
governance
+but may be useful to others in the community. If you are interested adding a
+feature to DataFusion, a new extension in <code class="docutils literal 
notranslate"><span class="pre">datafusion-contrib</span></code> is likely a good
+place to start. Please <a class="reference internal" 
href="communication.html"><span class="std std-doc">contact</span></a> us via 
github issue, slack, or Discord and
+we’ll gladly set up a new repository for your extension.</p>
+</section>
+<section id="creating-new-extension-apis">
+<h2>Creating new Extension APIs<a class="headerlink" 
href="#creating-new-extension-apis" title="Link to this heading">¶</a></h2>
+<p>DataFusion aims to be a general-purpose query engine, and thus the core 
crates
+contain features that are useful for a wide range of use cases. Use case 
specific
+functionality (such as very specific time series or stream processing features)
+are typically implemented using the extension APIs.</p>
+<p>If have a use case that is not covered by the existing APIs, we would love 
to
+work with you to design a new general purpose API. There are often others who 
are
+interested in similar extensions and the act of defining the API often improves
+the code overall for everyone.</p>
+<p>Extension APIs that provide “safe” default behaviors are more likely to be
+suitable for inclusion in DataFusion, while APIs that require major changes to
+built-in operators are less likely. For example, it might make less sense
+to add an API to support a stream processing feature if that would result in
+slower performance for built-in operators. It may still make sense to add
+extension APIs for such features, but leave implementation of such operators in
+downstream projects.</p>
+<p>The process to create a new extension API is typically:</p>
+<ul class="simple">
+<li><p>Look for an existing issue describing what you want to do, and file one 
if it
+doesn’t yet exist.</p></li>
+<li><p>Discuss what the API would look like. Feel free to ask contributors 
(via <code class="docutils literal notranslate"><span 
class="pre">&#64;</span></code>
+mentions) for feedback (you can find such people by looking at the most
+recently changed PRs and issues)</p></li>
+<li><p>Prototype the new API, typically by adding an example (in
+<code class="docutils literal notranslate"><span 
class="pre">datafusion-examples</span></code> or refactoring existing code) to 
show how it would work</p></li>
+<li><p>Create a PR with the new API, and work with the community to get it 
merged</p></li>
+</ul>
+<p>Some benefits of using an example based approach are</p>
+<ul class="simple">
+<li><p>Any future API changes will also keep your example going ensuring no
+regression in functionality</p></li>
+<li><p>There will be a blue print of any needed changes to your code if the 
APIs do change
+(just look at what changed in your example)</p></li>
+</ul>
+<p>An example of this process was <a class="reference external" 
href="https://github.com/apache/datafusion/issues/11207";>creating a SQL 
Extension Planning API</a>.</p>
+</section>
 </section>
 
 
@@ -563,7 +651,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/communication.html 
b/contributor-guide/communication.html
index e66154dcef..42dc33f25b 100644
--- a/contributor-guide/communication.html
+++ b/contributor-guide/communication.html
@@ -622,7 +622,7 @@ mailing list for release coordination and other 
project-wide discussions. Links:
     
     <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/getting_started.html 
b/contributor-guide/getting_started.html
index 38c7467ecf..74c808120d 100644
--- a/contributor-guide/getting_started.html
+++ b/contributor-guide/getting_started.html
@@ -641,7 +641,7 @@ libprotoc<span class="w"> </span><span 
class="m">3</span>.15.0
     
     <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/governance.html 
b/contributor-guide/governance.html
index 2ae85160d5..d8fb4bad57 100644
--- a/contributor-guide/governance.html
+++ b/contributor-guide/governance.html
@@ -642,7 +642,7 @@ direction, typically over the course of a year or more.</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/howtos.html b/contributor-guide/howtos.html
index fa0b44d808..2a5bb72c03 100644
--- a/contributor-guide/howtos.html
+++ b/contributor-guide/howtos.html
@@ -714,7 +714,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/index.html b/contributor-guide/index.html
index f16801f734..39f9bd505a 100644
--- a/contributor-guide/index.html
+++ b/contributor-guide/index.html
@@ -709,7 +709,7 @@ Commenting on the PR will remove the <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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/inviting.html b/contributor-guide/inviting.html
index e5252a219b..1b9872cd15 100644
--- a/contributor-guide/inviting.html
+++ b/contributor-guide/inviting.html
@@ -1026,7 +1026,7 @@ Congratulations and welcome!
     
     <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/roadmap.html b/contributor-guide/roadmap.html
index 5adfbb8a83..6ae2e5b965 100644
--- a/contributor-guide/roadmap.html
+++ b/contributor-guide/roadmap.html
@@ -789,7 +789,7 @@ date.</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/specification/index.html 
b/contributor-guide/specification/index.html
index 9e51f7593a..4eb713a93a 100644
--- a/contributor-guide/specification/index.html
+++ b/contributor-guide/specification/index.html
@@ -555,7 +555,7 @@ specifications:</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/specification/invariants.html 
b/contributor-guide/specification/invariants.html
index b3ad32512a..ed60ea83fc 100644
--- a/contributor-guide/specification/invariants.html
+++ b/contributor-guide/specification/invariants.html
@@ -1065,7 +1065,7 @@ schemas.</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/specification/output-field-name-semantic.html 
b/contributor-guide/specification/output-field-name-semantic.html
index 17a4eb6cc7..5f2b87c6b5 100644
--- a/contributor-guide/specification/output-field-name-semantic.html
+++ b/contributor-guide/specification/output-field-name-semantic.html
@@ -983,7 +983,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/contributor-guide/testing.html b/contributor-guide/testing.html
index 0909b0b2be..6e2db23ae6 100644
--- a/contributor-guide/testing.html
+++ b/contributor-guide/testing.html
@@ -723,7 +723,7 @@ tested in the same way using the <a class="reference 
external" href="https://doc
     
     <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/download.html b/download.html
index f99b67d629..7e953ddde8 100644
--- a/download.html
+++ b/download.html
@@ -628,7 +628,7 @@ official Apache DataFusion releases are provided as source 
artifacts.</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 b92205f405..d50d02bcde 100644
--- a/genindex.html
+++ b/genindex.html
@@ -507,7 +507,7 @@
     
     <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 bc19ebc66b..74ab0b9c90 100644
--- a/index.html
+++ b/index.html
@@ -631,7 +631,7 @@ community.</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/library-user-guide/adding-udfs.html 
b/library-user-guide/adding-udfs.html
index ad53fa4868..a16f503fa5 100644
--- a/library-user-guide/adding-udfs.html
+++ b/library-user-guide/adding-udfs.html
@@ -1211,7 +1211,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/building-logical-plans.html 
b/library-user-guide/building-logical-plans.html
index 5bce2f737d..8c2e8d3f02 100644
--- a/library-user-guide/building-logical-plans.html
+++ b/library-user-guide/building-logical-plans.html
@@ -685,7 +685,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/catalogs.html b/library-user-guide/catalogs.html
index 9c012266f0..ada367d128 100644
--- a/library-user-guide/catalogs.html
+++ b/library-user-guide/catalogs.html
@@ -792,7 +792,7 @@
     
     <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/library-user-guide/custom-table-providers.html 
b/library-user-guide/custom-table-providers.html
index d49f4a9267..ac034b4034 100644
--- a/library-user-guide/custom-table-providers.html
+++ b/library-user-guide/custom-table-providers.html
@@ -773,7 +773,7 @@
     
     <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/library-user-guide/extending-operators.html 
b/library-user-guide/extending-operators.html
index db9bff89b4..3b19355596 100644
--- a/library-user-guide/extending-operators.html
+++ b/library-user-guide/extending-operators.html
@@ -561,7 +561,7 @@
     
     <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/library-user-guide/index.html b/library-user-guide/index.html
index 3ddb7ceb58..31e369d2e4 100644
--- a/library-user-guide/index.html
+++ b/library-user-guide/index.html
@@ -576,7 +576,7 @@ useful place to get the lay of the land before starting 
down a specific path.</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/library-user-guide/profiling.html 
b/library-user-guide/profiling.html
index c9de93282c..e1fca7670b 100644
--- a/library-user-guide/profiling.html
+++ b/library-user-guide/profiling.html
@@ -633,7 +633,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/library-user-guide/using-the-dataframe-api.html 
b/library-user-guide/using-the-dataframe-api.html
index d0c77c730f..7851dab90a 100644
--- a/library-user-guide/using-the-dataframe-api.html
+++ b/library-user-guide/using-the-dataframe-api.html
@@ -849,7 +849,7 @@ easily go back and forth between them.</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/library-user-guide/using-the-sql-api.html 
b/library-user-guide/using-the-sql-api.html
index 3cf355463e..3082245e0e 100644
--- a/library-user-guide/using-the-sql-api.html
+++ b/library-user-guide/using-the-sql-api.html
@@ -800,7 +800,7 @@ statement.</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/library-user-guide/working-with-exprs.html 
b/library-user-guide/working-with-exprs.html
index 8b8dca51de..090838446a 100644
--- a/library-user-guide/working-with-exprs.html
+++ b/library-user-guide/working-with-exprs.html
@@ -806,7 +806,7 @@
     
     <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 2d3c1aba9f..d141d6a574 100644
--- a/search.html
+++ b/search.html
@@ -534,7 +534,7 @@
     
     <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 efbe9976dc..9f059582c1 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"!=": [[43, "op-neq"]], "!~": [[43, 
"op-re-not-match"]], "!~*": [[43, "op-re-not-match-i"]], "!~~": [[43, "id18"]], 
"!~~*": [[43, "id19"]], "#": [[43, "op-bit-xor"]], "%": [[43, "op-modulo"]], 
"&": [[43, "op-bit-and"]], "(relation, name) tuples in logical fields and 
logical columns are unique": [[9, 
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*": 
[[43, "op-multiply"]], "+": [[43, "op-plus"]], "-": [[43, "op-minus"]], "/": 
[[4 [...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"!=": [[43, "op-neq"]], "!~": [[43, 
"op-re-not-match"]], "!~*": [[43, "op-re-not-match-i"]], "!~~": [[43, "id18"]], 
"!~~*": [[43, "id19"]], "#": [[43, "op-bit-xor"]], "%": [[43, "op-modulo"]], 
"&": [[43, "op-bit-and"]], "(relation, name) tuples in logical fields and 
logical columns are unique": [[9, 
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*": 
[[43, "op-multiply"]], "+": [[43, "op-plus"]], "-": [[43, "op-minus"]], "/": 
[[4 [...]
\ No newline at end of file
diff --git a/user-guide/cli/datasources.html b/user-guide/cli/datasources.html
index 448f44afcd..4c147bb47b 100644
--- a/user-guide/cli/datasources.html
+++ b/user-guide/cli/datasources.html
@@ -983,7 +983,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/index.html b/user-guide/cli/index.html
index 79636fd3f7..ca765b16c0 100644
--- a/user-guide/cli/index.html
+++ b/user-guide/cli/index.html
@@ -584,7 +584,7 @@
     
     <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/cli/installation.html b/user-guide/cli/installation.html
index 7ac74d4e36..1c4e511519 100644
--- a/user-guide/cli/installation.html
+++ b/user-guide/cli/installation.html
@@ -618,7 +618,7 @@ docker<span class="w"> </span>run<span class="w"> 
</span>--rm<span class="w"> </
     
     <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/cli/overview.html b/user-guide/cli/overview.html
index e5626d7181..6e08bccdeb 100644
--- a/user-guide/cli/overview.html
+++ b/user-guide/cli/overview.html
@@ -580,7 +580,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/cli/usage.html b/user-guide/cli/usage.html
index 72ced0279e..b5a17562d5 100644
--- a/user-guide/cli/usage.html
+++ b/user-guide/cli/usage.html
@@ -967,7 +967,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.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 910204b8d0..b04b6ab21a 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -899,7 +899,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/crate-configuration.html 
b/user-guide/crate-configuration.html
index ee760293ad..1dd975e17f 100644
--- a/user-guide/crate-configuration.html
+++ b/user-guide/crate-configuration.html
@@ -721,7 +721,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/dataframe.html b/user-guide/dataframe.html
index 32797f4aee..ad6295cb7b 100644
--- a/user-guide/dataframe.html
+++ b/user-guide/dataframe.html
@@ -610,7 +610,7 @@ the following statement.</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/example-usage.html b/user-guide/example-usage.html
index 80a497d192..006bee1ded 100644
--- a/user-guide/example-usage.html
+++ b/user-guide/example-usage.html
@@ -755,7 +755,7 @@ unexpectedly.</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/expressions.html b/user-guide/expressions.html
index a2e4f633a0..cba2ce752f 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -1425,7 +1425,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/faq.html b/user-guide/faq.html
index 13ba1c0997..f0ab695833 100644
--- a/user-guide/faq.html
+++ b/user-guide/faq.html
@@ -629,7 +629,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index babddef386..5fa8d0c275 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -744,7 +744,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/aggregate_functions.html 
b/user-guide/sql/aggregate_functions.html
index 7cc67f3e84..ec35c51f62 100644
--- a/user-guide/sql/aggregate_functions.html
+++ b/user-guide/sql/aggregate_functions.html
@@ -1814,7 +1814,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/data_types.html b/user-guide/sql/data_types.html
index 5fcbc439ea..403d947897 100644
--- a/user-guide/sql/data_types.html
+++ b/user-guide/sql/data_types.html
@@ -890,7 +890,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/ddl.html b/user-guide/sql/ddl.html
index ede1012b0f..3b05533d56 100644
--- a/user-guide/sql/ddl.html
+++ b/user-guide/sql/ddl.html
@@ -837,7 +837,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/dml.html b/user-guide/sql/dml.html
index dd40df3afd..35a8769b0e 100644
--- a/user-guide/sql/dml.html
+++ b/user-guide/sql/dml.html
@@ -692,7 +692,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/explain.html b/user-guide/sql/explain.html
index 74c5e1942f..5a810d3372 100644
--- a/user-guide/sql/explain.html
+++ b/user-guide/sql/explain.html
@@ -622,7 +622,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/index.html b/user-guide/sql/index.html
index ad28d4a24f..93e0dd3323 100644
--- a/user-guide/sql/index.html
+++ b/user-guide/sql/index.html
@@ -646,7 +646,7 @@
     
     <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/sql/information_schema.html 
b/user-guide/sql/information_schema.html
index 26f35708d5..b80ae3c093 100644
--- a/user-guide/sql/information_schema.html
+++ b/user-guide/sql/information_schema.html
@@ -603,7 +603,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/operators.html b/user-guide/sql/operators.html
index f3266530f0..b15b5108c2 100644
--- a/user-guide/sql/operators.html
+++ b/user-guide/sql/operators.html
@@ -1318,7 +1318,7 @@
     
     <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/sql/scalar_functions.html 
b/user-guide/sql/scalar_functions.html
index f1e4b1e18e..73ef31965d 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -7902,7 +7902,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/select.html b/user-guide/sql/select.html
index 6a348ed9a4..95b6a96096 100644
--- a/user-guide/sql/select.html
+++ b/user-guide/sql/select.html
@@ -867,7 +867,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/sql_status.html b/user-guide/sql/sql_status.html
index 2615b6d0b6..e5fb001886 100644
--- a/user-guide/sql/sql_status.html
+++ b/user-guide/sql/sql_status.html
@@ -692,7 +692,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.7.<br>
+Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 7.4.4.<br>
 </p>
     </div>
     
diff --git a/user-guide/sql/subqueries.html b/user-guide/sql/subqueries.html
index c256c8f86a..4c61808b9b 100644
--- a/user-guide/sql/subqueries.html
+++ b/user-guide/sql/subqueries.html
@@ -1090,7 +1090,7 @@ returns 0 rows.</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/sql/window_functions.html 
b/user-guide/sql/window_functions.html
index 0250423754..d1d04bf6a7 100644
--- a/user-guide/sql/window_functions.html
+++ b/user-guide/sql/window_functions.html
@@ -971,7 +971,7 @@
     
     <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/sql/write_options.html 
b/user-guide/sql/write_options.html
index 1926e4671f..77634ae0af 100644
--- a/user-guide/sql/write_options.html
+++ b/user-guide/sql/write_options.html
@@ -802,7 +802,7 @@
     
     <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]


Reply via email to