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 ba7ce05d00 Publish built docs triggered by
2f02c43b6283472c7c620c68819050128a7e8544
ba7ce05d00 is described below
commit ba7ce05d003123ce22ad871daaaf740bbc0c4409
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 8 10:00:42 2024 +0000
Publish built docs triggered by 2f02c43b6283472c7c620c68819050128a7e8544
---
_sources/contributor-guide/inviting.md.txt | 2 +-
_sources/library-user-guide/adding-udfs.md.txt | 4 ++--
_sources/user-guide/example-usage.md.txt | 6 +++---
contributor-guide/inviting.html | 2 +-
library-user-guide/adding-udfs.html | 4 ++--
searchindex.js | 2 +-
user-guide/example-usage.html | 6 +++---
7 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/_sources/contributor-guide/inviting.md.txt
b/_sources/contributor-guide/inviting.md.txt
index be189b95f6..967f417e6e 100644
--- a/_sources/contributor-guide/inviting.md.txt
+++ b/_sources/contributor-guide/inviting.md.txt
@@ -294,7 +294,7 @@ Subject: [DISCUSS] $NEW_PMC_MEMBER for PMC
I would like to propose adding $NEW_PMC_MEMBER[1] to the DataFusion PMC.
-$NEW_PMC_MEMBMER has been a committer since $COMMITER_MONTH [2], has a
+$NEW_PMC_MEMBMER has been a committer since $COMMITTER_MONTH [2], has a
strong and sustained contribution record for more than a year, and focused on
helping the community and the project grow[3].
diff --git a/_sources/library-user-guide/adding-udfs.md.txt
b/_sources/library-user-guide/adding-udfs.md.txt
index f805f0a992..fe3990b90c 100644
--- a/_sources/library-user-guide/adding-udfs.md.txt
+++ b/_sources/library-user-guide/adding-udfs.md.txt
@@ -268,7 +268,7 @@ impl PartitionEvaluator for MyPartitionEvaluator {
}
}
-/// Create a `PartitionEvalutor` to evaluate this function on a new
+/// Create a `PartitionEvaluator` to evaluate this function on a new
/// partition.
fn make_partition_evaluator() -> Result<Box<dyn PartitionEvaluator>> {
Ok(Box::new(MyPartitionEvaluator::new()))
@@ -474,7 +474,7 @@ impl Accumulator for GeometricMean {
### registering an Aggregate UDF
-To register a Aggreate UDF, you need to wrap the function implementation in a
[`AggregateUDF`] struct and then register it with the `SessionContext`.
DataFusion provides the [`create_udaf`] helper functions to make this easier.
+To register a Aggregate UDF, you need to wrap the function implementation in a
[`AggregateUDF`] struct and then register it with the `SessionContext`.
DataFusion provides the [`create_udaf`] helper functions to make this easier.
There is a lower level API with more functionality but is more complex, that
is documented in [`advanced_udaf.rs`].
```rust
diff --git a/_sources/user-guide/example-usage.md.txt
b/_sources/user-guide/example-usage.md.txt
index 62f09a6a99..7dbd4045e7 100644
--- a/_sources/user-guide/example-usage.md.txt
+++ b/_sources/user-guide/example-usage.md.txt
@@ -264,8 +264,8 @@ Set environment
[variables](https://doc.rust-lang.org/std/backtrace/index.html#e
```bash
RUST_BACKTRACE=1 ./target/debug/datafusion-cli
DataFusion CLI v31.0.0
-> select row_numer() over (partition by a order by a) from (select 1 a);
-Error during planning: Invalid function 'row_numer'.
+> select row_number() over (partition by a order by a) from (select 1 a);
+Error during planning: Invalid function 'row_number'.
Did you mean 'ROW_NUMBER'?
backtrace: 0: std::backtrace_rs::backtrace::libunwind::trace
@@ -290,7 +290,7 @@ 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);
+ select row_number() over (partition by a order by a) from (select 1 a);
";
let _ = ctx.sql(sql).await?.collect().await?;
diff --git a/contributor-guide/inviting.html b/contributor-guide/inviting.html
index a5439d4335..4ba677f642 100644
--- a/contributor-guide/inviting.html
+++ b/contributor-guide/inviting.html
@@ -849,7 +849,7 @@ Subject: [DISCUSS] $NEW_PMC_MEMBER for PMC
I would like to propose adding $NEW_PMC_MEMBER[1] to the DataFusion PMC.
-$NEW_PMC_MEMBMER has been a committer since $COMMITER_MONTH [2], has a
+$NEW_PMC_MEMBMER has been a committer since $COMMITTER_MONTH [2], has a
strong and sustained contribution record for more than a year, and focused on
helping the community and the project grow[3].
diff --git a/library-user-guide/adding-udfs.html
b/library-user-guide/adding-udfs.html
index 71b6de5a8b..a4570444b8 100644
--- a/library-user-guide/adding-udfs.html
+++ b/library-user-guide/adding-udfs.html
@@ -843,7 +843,7 @@ DataFusion provides the <a class="reference external"
href="https://docs.rs/data
<span class="w"> </span><span class="p">}</span>
<span class="p">}</span>
-<span class="sd">/// Create a `PartitionEvalutor` to evaluate this function on
a new</span>
+<span class="sd">/// Create a `PartitionEvaluator` to evaluate this function
on a new</span>
<span class="sd">/// partition.</span>
<span class="k">fn</span><span class="w"> </span><span
class="nf">make_partition_evaluator</span><span class="p">()</span><span
class="w"> </span><span class="p">-></span><span class="w"> </span><span
class="nb">Result</span><span class="o"><</span><span
class="nb">Box</span><span class="o"><</span><span class="k">dyn</span><span
class="w"> </span><span class="n">PartitionEvaluator</span><span
class="o">>></span><span class="w"> </span><span class="p">{</span>
<span class="w"> </span><span class="nb">Ok</span><span
class="p">(</span><span class="nb">Box</span><span class="p">::</span><span
class="n">new</span><span class="p">(</span><span
class="n">MyPartitionEvaluator</span><span class="p">::</span><span
class="n">new</span><span class="p">()))</span>
@@ -1033,7 +1033,7 @@ There is a lower level API with more functionality but is
more complex, that is
</div>
<section id="registering-an-aggregate-udf">
<h3>registering an Aggregate UDF<a class="headerlink"
href="#registering-an-aggregate-udf" title="Link to this heading">ΒΆ</a></h3>
-<p>To register a Aggreate UDF, you need to wrap the function implementation in
a <a class="reference external"
href="https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.AggregateUDF.html"><code
class="docutils literal notranslate"><span
class="pre">AggregateUDF</span></code></a> struct and then register it with the
<code class="docutils literal notranslate"><span
class="pre">SessionContext</span></code>. DataFusion provides the <a
class="reference external" href="https://doc [...]
+<p>To register a Aggregate UDF, you need to wrap the function implementation
in a <a class="reference external"
href="https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.AggregateUDF.html"><code
class="docutils literal notranslate"><span
class="pre">AggregateUDF</span></code></a> struct and then register it with the
<code class="docutils literal notranslate"><span
class="pre">SessionContext</span></code>. DataFusion provides the <a
class="reference external" href="https://do [...]
There is a lower level API with more functionality but is more complex, that
is documented in <a class="reference external"
href="https://github.com/apache/datafusion/blob/main/datafusion-examples/examples/advanced_udaf.rs"><code
class="docutils literal notranslate"><span
class="pre">advanced_udaf.rs</span></code></a>.</p>
<div class="highlight-rust notranslate"><div
class="highlight"><pre><span></span><span class="k">use</span><span class="w">
</span><span class="n">datafusion</span><span class="p">::</span><span
class="n">logical_expr</span><span class="p">::{</span><span
class="n">Volatility</span><span class="p">,</span><span class="w">
</span><span class="n">create_udaf</span><span class="p">};</span>
<span class="k">use</span><span class="w"> </span><span
class="n">datafusion</span><span class="p">::</span><span
class="n">arrow</span><span class="p">::</span><span
class="n">datatypes</span><span class="p">::</span><span
class="n">DataType</span><span class="p">;</span>
diff --git a/searchindex.js b/searchindex.js
index 8d48b18f3b..d2744b2c80 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": [[10,
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*":
[[43, "op-multiply"]], "+": [[43, "op-plus"]], "-": [[43, "op-minus"]], "/": [[
[...]
\ 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": [[10,
"relation-name-tuples-in-logical-fields-and-logical-columns-are-unique"]], "*":
[[43, "op-multiply"]], "+": [[43, "op-plus"]], "-": [[43, "op-minus"]], "/": [[
[...]
\ No newline at end of file
diff --git a/user-guide/example-usage.html b/user-guide/example-usage.html
index cb462b8e9c..87bd599c64 100644
--- a/user-guide/example-usage.html
+++ b/user-guide/example-usage.html
@@ -797,8 +797,8 @@ like error backtrace. To enable a backtrace you need to add
Datafusion <code cla
<p>Set environment <a class="reference external"
href="https://doc.rust-lang.org/std/backtrace/index.html#environment-variables">variables</a></p>
<div class="highlight-bash notranslate"><div
class="highlight"><pre><span></span><span class="nv">RUST_BACKTRACE</span><span
class="o">=</span><span class="m">1</span><span class="w">
</span>./target/debug/datafusion-cli
DataFusion<span class="w"> </span>CLI<span class="w"> </span>v31.0.0
-><span class="w"> </span><span class="k">select</span><span class="w">
</span>row_numer<span class="o">()</span><span class="w"> </span>over<span
class="w"> </span><span class="o">(</span>partition<span class="w">
</span>by<span class="w"> </span>a<span class="w"> </span>order<span class="w">
</span>by<span class="w"> </span>a<span class="o">)</span><span class="w">
</span>from<span class="w"> </span><span class="o">(</span><span
class="k">select</span><span class="w"> </span><span cl [...]
-Error<span class="w"> </span>during<span class="w"> </span>planning:<span
class="w"> </span>Invalid<span class="w"> </span><span
class="k">function</span><span class="w"> </span><span
class="s1">'row_numer'</span>.
+><span class="w"> </span><span class="k">select</span><span class="w">
</span>row_number<span class="o">()</span><span class="w"> </span>over<span
class="w"> </span><span class="o">(</span>partition<span class="w">
</span>by<span class="w"> </span>a<span class="w"> </span>order<span class="w">
</span>by<span class="w"> </span>a<span class="o">)</span><span class="w">
</span>from<span class="w"> </span><span class="o">(</span><span
class="k">select</span><span class="w"> </span><span c [...]
+Error<span class="w"> </span>during<span class="w"> </span>planning:<span
class="w"> </span>Invalid<span class="w"> </span><span
class="k">function</span><span class="w"> </span><span
class="s1">'row_number'</span>.
Did<span class="w"> </span>you<span class="w"> </span>mean<span class="w">
</span><span class="s1">'ROW_NUMBER'</span>?
backtrace:<span class="w"> </span><span class="m">0</span>:<span class="w">
</span>std::backtrace_rs::backtrace::libunwind::trace
@@ -821,7 +821,7 @@ 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);
+ select row_number() over (partition by a order by a) from (select 1 a);
";
let _ = ctx.sql(sql).await?.collect().await?;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]