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/arrow-datafusion.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 0384c6612c Publish built docs triggered by
3a1e3adc727eb46c582d48105a4b115f5b80a992
0384c6612c is described below
commit 0384c6612cbb99f2257fa2a2589d650bdbf3d8bd
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 28 18:09:31 2024 +0000
Publish built docs triggered by 3a1e3adc727eb46c582d48105a4b115f5b80a992
---
_sources/library-user-guide/custom-table-providers.md.txt | 4 ++++
library-user-guide/custom-table-providers.html | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/_sources/library-user-guide/custom-table-providers.md.txt
b/_sources/library-user-guide/custom-table-providers.md.txt
index 9da207da68..11024f77e0 100644
--- a/_sources/library-user-guide/custom-table-providers.md.txt
+++ b/_sources/library-user-guide/custom-table-providers.md.txt
@@ -46,6 +46,10 @@ struct CustomExec {
}
impl ExecutionPlan for CustomExec {
+ fn name(&self) {
+ "CustomExec"
+ }
+
fn execute(
&self,
_partition: usize,
diff --git a/library-user-guide/custom-table-providers.html
b/library-user-guide/custom-table-providers.html
index 5e27b11b5c..7e5a552d1a 100644
--- a/library-user-guide/custom-table-providers.html
+++ b/library-user-guide/custom-table-providers.html
@@ -487,6 +487,10 @@
<span class="p">}</span>
<span class="k">impl</span><span class="w"> </span><span
class="n">ExecutionPlan</span><span class="w"> </span><span
class="k">for</span><span class="w"> </span><span
class="n">CustomExec</span><span class="w"> </span><span class="p">{</span>
+<span class="w"> </span><span class="k">fn</span> <span
class="nf">name</span><span class="p">(</span><span class="o">&</span><span
class="bp">self</span><span class="p">)</span><span class="w"> </span><span
class="p">{</span>
+<span class="w"> </span><span class="s">"CustomExec"</span>
+<span class="w"> </span><span class="p">}</span>
+
<span class="w"> </span><span class="k">fn</span> <span
class="nf">execute</span><span class="p">(</span>
<span class="w"> </span><span class="o">&</span><span
class="bp">self</span><span class="p">,</span>
<span class="w"> </span><span class="n">_partition</span>: <span
class="kt">usize</span><span class="p">,</span>