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 affae04784 Publish built docs triggered by 
5fa1e7ee9d99bb669341f80ab7f1003df8a095df
affae04784 is described below

commit affae0478409a9656fb4948b4de38294184de4a7
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Nov 1 10:28:45 2025 +0000

    Publish built docs triggered by 5fa1e7ee9d99bb669341f80ab7f1003df8a095df
---
 _sources/library-user-guide/upgrading.md.txt | 19 ++++++++++---------
 library-user-guide/upgrading.html            |  8 ++++++++
 searchindex.js                               |  2 +-
 3 files changed, 19 insertions(+), 10 deletions(-)

diff --git a/_sources/library-user-guide/upgrading.md.txt 
b/_sources/library-user-guide/upgrading.md.txt
index f34b8b2a5c..6cc3af5285 100644
--- a/_sources/library-user-guide/upgrading.md.txt
+++ b/_sources/library-user-guide/upgrading.md.txt
@@ -133,20 +133,16 @@ The `projection` field in `FileScanConfig` has been 
renamed to `projection_exprs
 
 If you directly access the `projection` field:
 
-```rust
-# /* comment to avoid running
+```rust,ignore
 let config: FileScanConfig = ...;
 let projection = config.projection;
-# */
 ```
 
 You should update to:
 
-```rust
-# /* comment to avoid running
+```rust,ignore
 let config: FileScanConfig = ...;
 let projection_exprs = config.projection_exprs;
-# */
 ```
 
 **Impact on builders:**
@@ -168,12 +164,10 @@ Note: `with_projection()` still works but is deprecated 
and will be removed in a
 
 You can access column indices from `ProjectionExprs` using its methods if 
needed:
 
-```rust
-# /* comment to avoid running
+```rust,ignore
 let projection_exprs: ProjectionExprs = ...;
 // Get the column indices if the projection only contains simple column 
references
 let indices = projection_exprs.column_indices();
-# */
 ```
 
 ### `DESCRIBE query` support
@@ -260,6 +254,13 @@ let full_schema = table_schema.table_schema();          // 
Complete schema with
 let partition_cols_ref = table_schema.table_partition_cols(); // Just the 
partition columns
 ```
 
+### `AggregateUDFImpl::is_ordered_set_aggregate` has been renamed to 
`AggregateUDFImpl::supports_within_group_clause`
+
+This method has been renamed to better reflect the actual impact it has for 
aggregate UDF implementations.
+The accompanying `AggregateUDF::is_ordered_set_aggregate` has also been 
renamed to `AggregateUDF::supports_within_group_clause`.
+No functionality has been changed with regards to this method; it still refers 
only to permitting use of `WITHIN GROUP`
+SQL syntax for the aggregate function.
+
 ## DataFusion `50.0.0`
 
 ### ListingTable automatically detects Hive Partitioned tables
diff --git a/library-user-guide/upgrading.html 
b/library-user-guide/upgrading.html
index 1ba6f99e4a..cdaa62bf2c 100644
--- a/library-user-guide/upgrading.html
+++ b/library-user-guide/upgrading.html
@@ -599,6 +599,13 @@ the computed <em>schema</em> of the query, consistent with 
the behavior of <code
 </pre></div>
 </div>
 </section>
+<section 
id="aggregateudfimpl-is-ordered-set-aggregate-has-been-renamed-to-aggregateudfimpl-supports-within-group-clause">
+<h3><code class="docutils literal notranslate"><span 
class="pre">AggregateUDFImpl::is_ordered_set_aggregate</span></code> has been 
renamed to <code class="docutils literal notranslate"><span 
class="pre">AggregateUDFImpl::supports_within_group_clause</span></code><a 
class="headerlink" 
href="#aggregateudfimpl-is-ordered-set-aggregate-has-been-renamed-to-aggregateudfimpl-supports-within-group-clause"
 title="Link to this heading">#</a></h3>
+<p>This method has been renamed to better reflect the actual impact it has for 
aggregate UDF implementations.
+The accompanying <code class="docutils literal notranslate"><span 
class="pre">AggregateUDF::is_ordered_set_aggregate</span></code> has also been 
renamed to <code class="docutils literal notranslate"><span 
class="pre">AggregateUDF::supports_within_group_clause</span></code>.
+No functionality has been changed with regards to this method; it still refers 
only to permitting use of <code class="docutils literal notranslate"><span 
class="pre">WITHIN</span> <span class="pre">GROUP</span></code>
+SQL syntax for the aggregate function.</p>
+</section>
 </section>
 <section id="datafusion-50-0-0">
 <h2>DataFusion <code class="docutils literal notranslate"><span 
class="pre">50.0.0</span></code><a class="headerlink" href="#datafusion-50-0-0" 
title="Link to this heading">#</a></h2>
@@ -1556,6 +1563,7 @@ take care of constructing the <code class="docutils 
literal notranslate"><span c
 <li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" 
href="#filescanconfig-projection-renamed-to-filescanconfig-projection-exprs"><code
 class="docutils literal notranslate"><span 
class="pre">FileScanConfig::projection</span></code> renamed to <code 
class="docutils literal notranslate"><span 
class="pre">FileScanConfig::projection_exprs</span></code></a></li>
 <li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" 
href="#describe-query-support"><code class="docutils literal notranslate"><span 
class="pre">DESCRIBE</span> <span class="pre">query</span></code> 
support</a></li>
 <li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" 
href="#introduction-of-tableschema-and-changes-to-filesource-with-schema-method">Introduction
 of <code class="docutils literal notranslate"><span 
class="pre">TableSchema</span></code> and changes to <code class="docutils 
literal notranslate"><span class="pre">FileSource::with_schema()</span></code> 
method</a></li>
+<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" 
href="#aggregateudfimpl-is-ordered-set-aggregate-has-been-renamed-to-aggregateudfimpl-supports-within-group-clause"><code
 class="docutils literal notranslate"><span 
class="pre">AggregateUDFImpl::is_ordered_set_aggregate</span></code> has been 
renamed to <code class="docutils literal notranslate"><span 
class="pre">AggregateUDFImpl::supports_within_group_clause</span></code></a></li>
 </ul>
 </li>
 <li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" 
href="#datafusion-50-0-0">DataFusion <code class="docutils literal 
notranslate"><span class="pre">50.0.0</span></code></a><ul class="nav 
section-nav flex-column">
diff --git a/searchindex.js b/searchindex.js
index 260e6355d6..76eabefcd7 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"!=":[[60,"op-neq"]],"!~":[[60,"op-re-not-match"]],"!~*":[[60,"op-re-not-match-i"]],"!~~":[[60,"id19"]],"!~~*":[[60,"id20"]],"#":[[60,"op-bit-xor"]],"%":[[60,"op-modulo"]],"&":[[60,"op-bit-and"]],"(relation,
 name) tuples in logical fields and logical columns are 
unique":[[13,"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]],"*":[[60,"op-multiply"]],"+":[[60,"op-plus"]],"-":[[60,"op-minus"]],"/":[[60,"op-divide"]],"<":[[60,"op-lt"]],"<
 [...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"!=":[[60,"op-neq"]],"!~":[[60,"op-re-not-match"]],"!~*":[[60,"op-re-not-match-i"]],"!~~":[[60,"id19"]],"!~~*":[[60,"id20"]],"#":[[60,"op-bit-xor"]],"%":[[60,"op-modulo"]],"&":[[60,"op-bit-and"]],"(relation,
 name) tuples in logical fields and logical columns are 
unique":[[13,"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]],"*":[[60,"op-multiply"]],"+":[[60,"op-plus"]],"-":[[60,"op-minus"]],"/":[[60,"op-divide"]],"<":[[60,"op-lt"]],"<
 [...]
\ No newline at end of file


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

Reply via email to