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 f4237aef29 Publish built docs triggered by
e0b807ba9ccd2678539a7581a34a2aece73bad55
f4237aef29 is described below
commit f4237aef2911ded3fd5806122145e31acb58dbda
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Oct 9 23:32:51 2024 +0000
Publish built docs triggered by e0b807ba9ccd2678539a7581a34a2aece73bad55
---
_sources/user-guide/sql/aggregate_functions.md.txt | 6 ++++++
_sources/user-guide/sql/aggregate_functions_new.md.txt | 6 +++++-
_sources/user-guide/sql/scalar_functions.md.txt | 8 ++++++++
_sources/user-guide/sql/scalar_functions_new.md.txt | 6 +++++-
_sources/user-guide/sql/window_functions.md.txt | 10 +++++++++-
_sources/user-guide/sql/window_functions_new.md.txt | 11 +++++++++--
searchindex.js | 2 +-
user-guide/sql/aggregate_functions.html | 3 +++
user-guide/sql/aggregate_functions_new.html | 4 +++-
user-guide/sql/scalar_functions.html | 4 ++++
user-guide/sql/scalar_functions_new.html | 4 +++-
user-guide/sql/window_functions.html | 6 +++++-
user-guide/sql/window_functions_new.html | 9 +++++++--
13 files changed, 68 insertions(+), 11 deletions(-)
diff --git a/_sources/user-guide/sql/aggregate_functions.md.txt
b/_sources/user-guide/sql/aggregate_functions.md.txt
index ecd0cb5b79..1c25874c08 100644
--- a/_sources/user-guide/sql/aggregate_functions.md.txt
+++ b/_sources/user-guide/sql/aggregate_functions.md.txt
@@ -21,6 +21,12 @@
Aggregate functions operate on a set of values to compute a single result.
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Aggregate Functions (new)](aggregate_functions_new.md) page for
+the rest of the documentation.
+
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
+
## General
- [avg](#avg)
diff --git a/_sources/user-guide/sql/aggregate_functions_new.md.txt
b/_sources/user-guide/sql/aggregate_functions_new.md.txt
index 236ef57da5..08cdb0a986 100644
--- a/_sources/user-guide/sql/aggregate_functions_new.md.txt
+++ b/_sources/user-guide/sql/aggregate_functions_new.md.txt
@@ -27,7 +27,11 @@ dev/update_function_docs.sh file for updating surrounding
text.
# Aggregate Functions (NEW)
-This page is a WIP and will replace the Aggregate Functions page once
completed.
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Aggregate Functions (old)](aggregate_functions.md) page for
+the rest of the documentation.
+
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
Aggregate functions operate on a set of values to compute a single result.
diff --git a/_sources/user-guide/sql/scalar_functions.md.txt
b/_sources/user-guide/sql/scalar_functions.md.txt
index de15b3dd33..f4c5163f49 100644
--- a/_sources/user-guide/sql/scalar_functions.md.txt
+++ b/_sources/user-guide/sql/scalar_functions.md.txt
@@ -19,6 +19,14 @@
# Scalar Functions
+Scalar functions operate on a single row at a time and return a single value.
+
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Scalar Functions (new)](scalar_functions_new.md) page for
+the rest of the documentation.
+
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
+
## Math Functions
- [abs](#abs)
diff --git a/_sources/user-guide/sql/scalar_functions_new.md.txt
b/_sources/user-guide/sql/scalar_functions_new.md.txt
index 2423f9c475..1b6b0ffd59 100644
--- a/_sources/user-guide/sql/scalar_functions_new.md.txt
+++ b/_sources/user-guide/sql/scalar_functions_new.md.txt
@@ -27,7 +27,11 @@ dev/update_function_docs.sh file for updating surrounding
text.
# Scalar Functions (NEW)
-This page is a WIP and will replace the Scalar Functions page once completed.
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Scalar Functions (old)](aggregate_functions.md) page for
+the rest of the documentation.
+
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
## Math Functions
diff --git a/_sources/user-guide/sql/window_functions.md.txt
b/_sources/user-guide/sql/window_functions.md.txt
index 3246a87bb1..6c0de711bc 100644
--- a/_sources/user-guide/sql/window_functions.md.txt
+++ b/_sources/user-guide/sql/window_functions.md.txt
@@ -19,7 +19,15 @@
# Window Functions
-A _window function_ performs a calculation across a set of table rows that are
somehow related to the current row. This is comparable to the type of
calculation that can be done with an aggregate function. However, window
functions do not cause rows to become grouped into a single output row like
non-window aggregate calls would. Instead, the rows retain their separate
identities. Behind the scenes, the window function is able to access more than
just the current row of the query result
+A _window function_ performs a calculation across a set of table rows that are
somehow related to the current row.
+
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Window Functions (new)](window_functions_new.md) page for
+the rest of the documentation.
+
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
+
+Window functions are comparable to the type of calculation that can be done
with an aggregate function. However, window functions do not cause rows to
become grouped into a single output row like non-window aggregate calls would.
Instead, the rows retain their separate identities. Behind the scenes, the
window function is able to access more than just the current row of the query
result
Here is an example that shows how to compare each employee's salary with the
average salary in his or her department:
diff --git a/_sources/user-guide/sql/window_functions_new.md.txt
b/_sources/user-guide/sql/window_functions_new.md.txt
index 1ab6740a6f..ee981911f5 100644
--- a/_sources/user-guide/sql/window_functions_new.md.txt
+++ b/_sources/user-guide/sql/window_functions_new.md.txt
@@ -27,9 +27,16 @@ dev/update_function_docs.sh file for updating surrounding
text.
# Window Functions (NEW)
-This page is a WIP and will replace the Window Functions page once completed.
+Note: this documentation is in the process of being migrated to be
[automatically created from the codebase].
+Please see the [Window Functions (Old)](window_functions.md) page for
+the rest of the documentation.
-A _window function_ performs a calculation across a set of table rows that are
somehow related to the current row. This is comparable to the type of
calculation that can be done with an aggregate function. However, window
functions do not cause rows to become grouped into a single output row like
non-window aggregate calls would. Instead, the rows retain their separate
identities. Behind the scenes, the window function is able to access more than
just the current row of the query result
+[automatically created from the codebase]:
https://github.com/apache/datafusion/issues/12740
+
+A _window function_ performs a calculation across a set of table rows that are
somehow related to the current row.
+This is comparable to the type of calculation that can be done with an
aggregate function.
+However, window functions do not cause rows to become grouped into a single
output row like non-window aggregate calls would.
+Instead, the rows retain their separate identities. Behind the scenes, the
window function is able to access more than just the current row of the query
result
Here is an example that shows how to compare each employee's salary with the
average salary in his or her department:
diff --git a/searchindex.js b/searchindex.js
index 701c11a13a..5168b225e5 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"!=": [[47, "op-neq"]], "!~": [[47,
"op-re-not-match"]], "!~*": [[47, "op-re-not-match-i"]], "!~~": [[47, "id18"]],
"!~~*": [[47, "id19"]], "#": [[47, "op-bit-xor"]], "%": [[47, "op-modulo"]],
"&": [[47, "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"]], "*":
[[47, "op-multiply"]], "+": [[47, "op-plus"]], "-": [[47, "op-minus"]], "/":
[[4 [...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"!=": [[47, "op-neq"]], "!~": [[47,
"op-re-not-match"]], "!~*": [[47, "op-re-not-match-i"]], "!~~": [[47, "id18"]],
"!~~*": [[47, "id19"]], "#": [[47, "op-bit-xor"]], "%": [[47, "op-modulo"]],
"&": [[47, "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"]], "*":
[[47, "op-multiply"]], "+": [[47, "op-plus"]], "-": [[47, "op-minus"]], "/":
[[4 [...]
\ No newline at end of file
diff --git a/user-guide/sql/aggregate_functions.html
b/user-guide/sql/aggregate_functions.html
index 2650784d53..dd66f33189 100644
--- a/user-guide/sql/aggregate_functions.html
+++ b/user-guide/sql/aggregate_functions.html
@@ -1083,6 +1083,9 @@
<section id="aggregate-functions">
<h1>Aggregate Functions<a class="headerlink" href="#aggregate-functions"
title="Link to this heading">¶</a></h1>
<p>Aggregate functions operate on a set of values to compute a single
result.</p>
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="aggregate_functions_new.html"><span class="std std-doc">Aggregate
Functions (new)</span></a> page for
+the rest of the documentation.</p>
<section id="general">
<h2>General<a class="headerlink" href="#general" title="Link to this
heading">¶</a></h2>
<ul class="simple">
diff --git a/user-guide/sql/aggregate_functions_new.html
b/user-guide/sql/aggregate_functions_new.html
index 2a17ca41ae..ca4583f160 100644
--- a/user-guide/sql/aggregate_functions_new.html
+++ b/user-guide/sql/aggregate_functions_new.html
@@ -682,7 +682,9 @@ dev/update_function_docs.sh file for updating surrounding
text.
-->
<section id="aggregate-functions-new">
<h1>Aggregate Functions (NEW)<a class="headerlink"
href="#aggregate-functions-new" title="Link to this heading">¶</a></h1>
-<p>This page is a WIP and will replace the Aggregate Functions page once
completed.</p>
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="aggregate_functions.html"><span class="std std-doc">Aggregate Functions
(old)</span></a> page for
+the rest of the documentation.</p>
<p>Aggregate functions operate on a set of values to compute a single
result.</p>
<section id="general-functions">
<h2>General Functions<a class="headerlink" href="#general-functions"
title="Link to this heading">¶</a></h2>
diff --git a/user-guide/sql/scalar_functions.html
b/user-guide/sql/scalar_functions.html
index c56dfda1d1..4673cd5808 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -3408,6 +3408,10 @@
-->
<section id="scalar-functions">
<h1>Scalar Functions<a class="headerlink" href="#scalar-functions" title="Link
to this heading">¶</a></h1>
+<p>Scalar functions operate on a single row at a time and return a single
value.</p>
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="scalar_functions_new.html"><span class="std std-doc">Scalar Functions
(new)</span></a> page for
+the rest of the documentation.</p>
<section id="math-functions">
<h2>Math Functions<a class="headerlink" href="#math-functions" title="Link to
this heading">¶</a></h2>
<ul class="simple">
diff --git a/user-guide/sql/scalar_functions_new.html
b/user-guide/sql/scalar_functions_new.html
index af4edb1c27..5927da3e75 100644
--- a/user-guide/sql/scalar_functions_new.html
+++ b/user-guide/sql/scalar_functions_new.html
@@ -1484,7 +1484,9 @@ dev/update_function_docs.sh file for updating surrounding
text.
-->
<section id="scalar-functions-new">
<h1>Scalar Functions (NEW)<a class="headerlink" href="#scalar-functions-new"
title="Link to this heading">¶</a></h1>
-<p>This page is a WIP and will replace the Scalar Functions page once
completed.</p>
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="aggregate_functions.html"><span class="std std-doc">Scalar Functions
(old)</span></a> page for
+the rest of the documentation.</p>
<section id="math-functions">
<h2>Math Functions<a class="headerlink" href="#math-functions" title="Link to
this heading">¶</a></h2>
<ul class="simple">
diff --git a/user-guide/sql/window_functions.html
b/user-guide/sql/window_functions.html
index 8250180a7e..216c169e3b 100644
--- a/user-guide/sql/window_functions.html
+++ b/user-guide/sql/window_functions.html
@@ -707,7 +707,11 @@
-->
<section id="window-functions">
<h1>Window Functions<a class="headerlink" href="#window-functions" title="Link
to this heading">¶</a></h1>
-<p>A <em>window function</em> performs a calculation across a set of table
rows that are somehow related to the current row. This is comparable to the
type of calculation that can be done with an aggregate function. However,
window functions do not cause rows to become grouped into a single output row
like non-window aggregate calls would. Instead, the rows retain their separate
identities. Behind the scenes, the window function is able to access more than
just the current row of the que [...]
+<p>A <em>window function</em> performs a calculation across a set of table
rows that are somehow related to the current row.</p>
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="window_functions_new.html"><span class="std std-doc">Window Functions
(new)</span></a> page for
+the rest of the documentation.</p>
+<p>Window functions are comparable to the type of calculation that can be done
with an aggregate function. However, window functions do not cause rows to
become grouped into a single output row like non-window aggregate calls would.
Instead, the rows retain their separate identities. Behind the scenes, the
window function is able to access more than just the current row of the query
result</p>
<p>Here is an example that shows how to compare each employee’s salary with
the average salary in his or her department:</p>
<div class="highlight-sql notranslate"><div
class="highlight"><pre><span></span><span class="k">SELECT</span><span
class="w"> </span><span class="n">depname</span><span class="p">,</span><span
class="w"> </span><span class="n">empno</span><span class="p">,</span><span
class="w"> </span><span class="n">salary</span><span class="p">,</span><span
class="w"> </span><span class="k">avg</span><span class="p">(</span><span
class="n">salary</span><span class="p">)</span><span class="w"> </span>< [...]
diff --git a/user-guide/sql/window_functions_new.html
b/user-guide/sql/window_functions_new.html
index 836adb5162..91f5b4a67f 100644
--- a/user-guide/sql/window_functions_new.html
+++ b/user-guide/sql/window_functions_new.html
@@ -584,8 +584,13 @@ dev/update_function_docs.sh file for updating surrounding
text.
-->
<section id="window-functions-new">
<h1>Window Functions (NEW)<a class="headerlink" href="#window-functions-new"
title="Link to this heading">¶</a></h1>
-<p>This page is a WIP and will replace the Window Functions page once
completed.</p>
-<p>A <em>window function</em> performs a calculation across a set of table
rows that are somehow related to the current row. This is comparable to the
type of calculation that can be done with an aggregate function. However,
window functions do not cause rows to become grouped into a single output row
like non-window aggregate calls would. Instead, the rows retain their separate
identities. Behind the scenes, the window function is able to access more than
just the current row of the que [...]
+<p>Note: this documentation is in the process of being migrated to be <a
class="reference external"
href="https://github.com/apache/datafusion/issues/12740">automatically created
from the codebase</a>.
+Please see the <a class="reference internal"
href="window_functions.html"><span class="std std-doc">Window Functions
(Old)</span></a> page for
+the rest of the documentation.</p>
+<p>A <em>window function</em> performs a calculation across a set of table
rows that are somehow related to the current row.
+This is comparable to the type of calculation that can be done with an
aggregate function.
+However, window functions do not cause rows to become grouped into a single
output row like non-window aggregate calls would.
+Instead, the rows retain their separate identities. Behind the scenes, the
window function is able to access more than just the current row of the query
result</p>
<p>Here is an example that shows how to compare each employee’s salary with
the average salary in his or her department:</p>
<div class="highlight-sql notranslate"><div
class="highlight"><pre><span></span><span class="k">SELECT</span><span
class="w"> </span><span class="n">depname</span><span class="p">,</span><span
class="w"> </span><span class="n">empno</span><span class="p">,</span><span
class="w"> </span><span class="n">salary</span><span class="p">,</span><span
class="w"> </span><span class="k">avg</span><span class="p">(</span><span
class="n">salary</span><span class="p">)</span><span class="w"> </span>< [...]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]