Publish built docs triggered by 200a249ac310e0f91bfd9f85f2d5278badca0131
diff --git a/_sources/autoapi/datafusion/dataframe/index.rst.txt b/_sources/autoapi/datafusion/dataframe/index.rst.txt
index f0272cc..9e92438 100644
--- a/_sources/autoapi/datafusion/dataframe/index.rst.txt
+++ b/_sources/autoapi/datafusion/dataframe/index.rst.txt
@@ -171,7 +171,7 @@
 
       Execute this :py:class:`DataFrame` and collect results into memory.
 
-      Prior to calling ``collect``, modifying a DataFrme simply updates a plan
+      Prior to calling ``collect``, modifying a DataFrame simply updates a plan
       (no actual computation is performed). Calling ``collect`` triggers the
       computation.
 
@@ -289,7 +289,7 @@
       If ``analyze`` is specified, runs the plan and reports metrics.
 
       :param verbose: If ``True``, more details will be included.
-      :param analyze: If ``Tru`e``, the plan will run and metrics reported.
+      :param analyze: If ``True``, the plan will run and metrics reported.
 
 
 
diff --git a/_sources/autoapi/datafusion/functions/index.rst.txt b/_sources/autoapi/datafusion/functions/index.rst.txt
index 26a92da..7ef6ee3 100644
--- a/_sources/autoapi/datafusion/functions/index.rst.txt
+++ b/_sources/autoapi/datafusion/functions/index.rst.txt
@@ -336,7 +336,7 @@
    between two of the values.
 
    This function uses the [t-digest](https://arxiv.org/abs/1902.04023) algorithm to
-   compute the percentil. You can limit the number of bins used in this algorithm by
+   compute the percentile. You can limit the number of bins used in this algorithm by
    setting the ``num_centroids`` parameter.
 
    If using the builder functions described in ref:`_aggregation` this function ignores
@@ -887,7 +887,7 @@
    Create a cumulative distribution window function.
 
    This window function is similar to :py:func:`rank` except that the returned values
-   are the ratio of the row number to the total numebr of rows. Here is an example of a
+   are the ratio of the row number to the total number of rows. Here is an example of a
    dataframe with a window ordered by descending ``points`` and the associated
    cumulative distribution::
 
@@ -1088,7 +1088,7 @@
 
    Lag operation will return the argument that is in the previous shift_offset-th row
    in the partition. For example ``lag(col("b"), shift_offset=3, default_value=5)``
-   will return the 3rd previous value in column ``b``. At the beginnig of the
+   will return the 3rd previous value in column ``b``. At the beginning of the
    partition, where no values can be returned it will return the default value of 5.
 
    Here is an example of both the ``lag`` and :py:func:`datafusion.functions.lead`
@@ -1137,7 +1137,7 @@
    Lead operation will return the argument that is in the next shift_offset-th row in
    the partition. For example ``lead(col("b"), shift_offset=3, default_value=5)`` will
    return the 3rd following value in column ``b``. At the end of the partition, where
-   no futher values can be returned it will return the default value of 5.
+   no further values can be returned it will return the default value of 5.
 
    Here is an example of both the ``lead`` and :py:func:`datafusion.functions.lag`
    functions on a simple DataFrame::
@@ -1643,7 +1643,7 @@
 
    Returns the rank based upon the window order. Consecutive equal values will receive
    the same rank, but the next different value will not be consecutive but rather the
-   number of rows that preceed it plus one. This is similar to Olympic medals. If two
+   number of rows that precede it plus one. This is similar to Olympic medals. If two
    people tie for gold, the next place is bronze. There would be no silver medal. Here
    is an example of a dataframe with a window ordered by descending ``points`` and the
    associated rank.
@@ -1983,7 +1983,7 @@
    Concatenates the input strings.
 
    This aggregate function will concatenate input strings, ignoring null values, and
-   seperating them with the specified delimiter. Non-string values will be converted to
+   separating them with the specified delimiter. Non-string values will be converted to
    their string equivalents.
 
    If using the builder functions described in ref:`_aggregation` this function ignores
diff --git a/_sources/autoapi/datafusion/user_defined/index.rst.txt b/_sources/autoapi/datafusion/user_defined/index.rst.txt
index 728ace0..591d4cd 100644
--- a/_sources/autoapi/datafusion/user_defined/index.rst.txt
+++ b/_sources/autoapi/datafusion/user_defined/index.rst.txt
@@ -535,7 +535,7 @@
 
    .. py:method:: get_range(idx: int, num_rows: int) -> tuple[int, int]
 
-      Return the range for the window fuction.
+      Return the range for the window function.
 
       If `uses_window_frame` flag is `false`. This method is used to
       calculate required range for the window function during
diff --git a/_sources/contributor-guide/ffi.rst.txt b/_sources/contributor-guide/ffi.rst.txt
index a40af12..e201db7 100644
--- a/_sources/contributor-guide/ffi.rst.txt
+++ b/_sources/contributor-guide/ffi.rst.txt
@@ -195,7 +195,7 @@
 have identified you can use.
 
 #. Re-export all of ``datafusion-python`` yourself with your extensions built in.
-#. Carefully synchonize your software releases with the ``datafusion-python`` CI build
+#. Carefully synchronize your software releases with the ``datafusion-python`` CI build
    system so that your libraries use the exact same compiler, features, and
    optimization level.
 
diff --git a/_sources/contributor-guide/introduction.rst.txt b/_sources/contributor-guide/introduction.rst.txt
index 2fba641..6cb05c6 100644
--- a/_sources/contributor-guide/introduction.rst.txt
+++ b/_sources/contributor-guide/introduction.rst.txt
@@ -43,7 +43,7 @@
 
     # fetch this repo
     git clone git@github.com:apache/datafusion-python.git
-    # create the virtual enviornment
+    # create the virtual environment
     uv sync --dev --no-install-package datafusion
     # activate the environment
     source .venv/bin/activate
diff --git a/_sources/user-guide/common-operations/expressions.rst.txt b/_sources/user-guide/common-operations/expressions.rst.txt
index e94e1a6..77607e8 100644
--- a/_sources/user-guide/common-operations/expressions.rst.txt
+++ b/_sources/user-guide/common-operations/expressions.rst.txt
@@ -64,7 +64,7 @@
 ------
 
 For columns that contain arrays of values, you can access individual elements of the array by index
-using bracket indexing. This is similar to callling the function
+using bracket indexing. This is similar to calling the function
 :py:func:`datafusion.functions.array_element`, except that array indexing using brackets is 0 based,
 similar to Python arrays and ``array_element`` is 1 based indexing to be compatible with other SQL
 approaches.
diff --git a/_sources/user-guide/common-operations/windows.rst.txt b/_sources/user-guide/common-operations/windows.rst.txt
index 8225d12..8226685 100644
--- a/_sources/user-guide/common-operations/windows.rst.txt
+++ b/_sources/user-guide/common-operations/windows.rst.txt
@@ -24,7 +24,7 @@
 multiple rows to produce a result for each individual row, unlike an aggregate function that
 provides a single value for multiple rows.
 
-The window functions are availble in the :py:mod:`~datafusion.functions` module.
+The window functions are available in the :py:mod:`~datafusion.functions` module.
 
 We'll use the pokemon dataset (from Ritchie Vink) in the following examples.
 
@@ -99,8 +99,8 @@
 criteria.
 
 * If an ``order_by`` clause is set, the default window frame is defined as the rows between
-  unbounded preceeding and the current row.
-* If an ``order_by`` is not set, the default frame is defined as the rows betwene unbounded
+  unbounded preceding and the current row.
+* If an ``order_by`` is not set, the default frame is defined as the rows between unbounded
   and unbounded following (the entire partition).
 
 Window Frames are defined by three parameters: unit type, starting bound, and ending bound.
@@ -116,7 +116,7 @@
   ``order_by`` clause.
 
 In this example we perform a "rolling average" of the speed of the current Pokemon and the
-two preceeding rows.
+two preceding rows.
 
 .. ipython:: python
 
diff --git a/_sources/user-guide/data-sources.rst.txt b/_sources/user-guide/data-sources.rst.txt
index 9c95d58..6730754 100644
--- a/_sources/user-guide/data-sources.rst.txt
+++ b/_sources/user-guide/data-sources.rst.txt
@@ -25,7 +25,7 @@
 Local file
 ----------
 
-DataFusion has the abilty to read from a variety of popular file formats, such as :ref:`Parquet <io_parquet>`,
+DataFusion has the ability to read from a variety of popular file formats, such as :ref:`Parquet <io_parquet>`,
 :ref:`CSV <io_csv>`, :ref:`JSON <io_json>`, and :ref:`AVRO <io_avro>`.
 
 .. ipython:: python
@@ -120,7 +120,7 @@
 `Polars <https://pola.rs/>`_ and `Pandas <https://pandas.pydata.org/>`_.
 Since DataFusion version 42.0.0, any DataFrame library that supports the Arrow FFI PyCapsule
 interface can be imported to DataFusion using the
-:py:func:`~datafusion.context.SessionContext.from_arrow` function. Older verions of Polars may
+:py:func:`~datafusion.context.SessionContext.from_arrow` function. Older versions of Polars may
 not support the arrow interface. In those cases, you can still import via the
 :py:func:`~datafusion.context.SessionContext.from_polars` function.
 
diff --git a/autoapi/datafusion/dataframe/index.html b/autoapi/datafusion/dataframe/index.html
index 965fe81..ba47b9f 100644
--- a/autoapi/datafusion/dataframe/index.html
+++ b/autoapi/datafusion/dataframe/index.html
@@ -1743,7 +1743,7 @@
 <dt class="sig sig-object py" id="datafusion.dataframe.DataFrame.collect">
 <span class="sig-name descname"><span class="pre">collect</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><span class="pre">list</span><span class="p"><span class="pre">[</span></span><span class="pre">pyarrow.RecordBatch</span><span class="p"><span class="pre">]</span></span></span></span><a class="headerlink" href="#datafusion.dataframe.DataFrame.collect" title="Link to this definition">¶</a></dt>
 <dd><p>Execute this <a class="reference internal" href="#datafusion.dataframe.DataFrame" title="datafusion.dataframe.DataFrame"><code class="xref py py-class docutils literal notranslate"><span class="pre">DataFrame</span></code></a> and collect results into memory.</p>
-<p>Prior to calling <code class="docutils literal notranslate"><span class="pre">collect</span></code>, modifying a DataFrme simply updates a plan
+<p>Prior to calling <code class="docutils literal notranslate"><span class="pre">collect</span></code>, modifying a DataFrame simply updates a plan
 (no actual computation is performed). Calling <code class="docutils literal notranslate"><span class="pre">collect</span></code> triggers the
 computation.</p>
 <dl class="field-list simple">
@@ -1887,7 +1887,7 @@
 <dt class="field-odd">Parameters<span class="colon">:</span></dt>
 <dd class="field-odd"><ul class="simple">
 <li><p><strong>verbose</strong> – If <code class="docutils literal notranslate"><span class="pre">True</span></code>, more details will be included.</p></li>
-<li><p><strong>analyze</strong> – If <code class="docutils literal notranslate"><span class="pre">Tru`e</span></code>, the plan will run and metrics reported.</p></li>
+<li><p><strong>analyze</strong> – If <code class="docutils literal notranslate"><span class="pre">True</span></code>, the plan will run and metrics reported.</p></li>
 </ul>
 </dd>
 </dl>
diff --git a/autoapi/datafusion/functions/index.html b/autoapi/datafusion/functions/index.html
index 88f4b06..47247ab 100644
--- a/autoapi/datafusion/functions/index.html
+++ b/autoapi/datafusion/functions/index.html
@@ -3441,7 +3441,7 @@
 test score that is above 90% of the other test scores. The returned value may be
 between two of the values.</p>
 <p>This function uses the [t-digest](<a class="reference external" href="https://arxiv.org/abs/1902.04023">https://arxiv.org/abs/1902.04023</a>) algorithm to
-compute the percentil. You can limit the number of bins used in this algorithm by
+compute the percentile. You can limit the number of bins used in this algorithm by
 setting the <code class="docutils literal notranslate"><span class="pre">num_centroids</span></code> parameter.</p>
 <p>If using the builder functions described in ref:<cite>_aggregation</cite> this function ignores
 the options <code class="docutils literal notranslate"><span class="pre">order_by</span></code>, <code class="docutils literal notranslate"><span class="pre">null_treatment</span></code>, and <code class="docutils literal notranslate"><span class="pre">distinct</span></code>.</p>
@@ -4097,7 +4097,7 @@
 <span class="sig-prename descclassname"><span class="pre">datafusion.functions.</span></span><span class="sig-name descname"><span class="pre">cume_dist</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">partition_by</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">list</span><span class="p"><span class="pre">[</span></span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="p"><span class="pre">]</span></span><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><span class="pre">None</span></span><span class="w"> </span><span class="o"><span class="pre">=</span></span><span class="w"> </span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">order_by</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">list</span><span class="p"><span class="pre">[</span></span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.SortExpr" title="datafusion.expr.SortExpr"><span class="pre">datafusion.expr.SortExpr</span></a><span class="p"><span class="pre">]</span></span><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.SortExpr" title="datafusion.expr.SortExpr"><span class="pre">datafusion.expr.SortExpr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><span class="pre">None</span></span><span class="w"> </span><span class="o"><span class="pre">=</span></span><span class="w"> </span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a></span></span><a class="headerlink" href="#datafusion.functions.cume_dist" title="Link to this definition">¶</a></dt>
 <dd><p>Create a cumulative distribution window function.</p>
 <p>This window function is similar to <a class="reference internal" href="#datafusion.functions.rank" title="datafusion.functions.rank"><code class="xref py py-func docutils literal notranslate"><span class="pre">rank()</span></code></a> except that the returned values
-are the ratio of the row number to the total numebr of rows. Here is an example of a
+are the ratio of the row number to the total number of rows. Here is an example of a
 dataframe with a window ordered by descending <code class="docutils literal notranslate"><span class="pre">points</span></code> and the associated
 cumulative distribution:</p>
 <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">+--------+-----------+</span>
@@ -4332,7 +4332,7 @@
 <dd><p>Create a lag window function.</p>
 <p>Lag operation will return the argument that is in the previous shift_offset-th row
 in the partition. For example <code class="docutils literal notranslate"><span class="pre">lag(col(&quot;b&quot;),</span> <span class="pre">shift_offset=3,</span> <span class="pre">default_value=5)</span></code>
-will return the 3rd previous value in column <code class="docutils literal notranslate"><span class="pre">b</span></code>. At the beginnig of the
+will return the 3rd previous value in column <code class="docutils literal notranslate"><span class="pre">b</span></code>. At the beginning of the
 partition, where no values can be returned it will return the default value of 5.</p>
 <p>Here is an example of both the <code class="docutils literal notranslate"><span class="pre">lag</span></code> and <a class="reference internal" href="#datafusion.functions.lead" title="datafusion.functions.lead"><code class="xref py py-func docutils literal notranslate"><span class="pre">datafusion.functions.lead()</span></code></a>
 functions on a simple DataFrame:</p>
@@ -4391,7 +4391,7 @@
 <p>Lead operation will return the argument that is in the next shift_offset-th row in
 the partition. For example <code class="docutils literal notranslate"><span class="pre">lead(col(&quot;b&quot;),</span> <span class="pre">shift_offset=3,</span> <span class="pre">default_value=5)</span></code> will
 return the 3rd following value in column <code class="docutils literal notranslate"><span class="pre">b</span></code>. At the end of the partition, where
-no futher values can be returned it will return the default value of 5.</p>
+no further values can be returned it will return the default value of 5.</p>
 <p>Here is an example of both the <code class="docutils literal notranslate"><span class="pre">lead</span></code> and <a class="reference internal" href="#datafusion.functions.lag" title="datafusion.functions.lag"><code class="xref py py-func docutils literal notranslate"><span class="pre">datafusion.functions.lag()</span></code></a>
 functions on a simple DataFrame:</p>
 <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">+--------+------+-----+</span>
@@ -4952,7 +4952,7 @@
 <dd><p>Create a rank window function.</p>
 <p>Returns the rank based upon the window order. Consecutive equal values will receive
 the same rank, but the next different value will not be consecutive but rather the
-number of rows that preceed it plus one. This is similar to Olympic medals. If two
+number of rows that precede it plus one. This is similar to Olympic medals. If two
 people tie for gold, the next place is bronze. There would be no silver medal. Here
 is an example of a dataframe with a window ordered by descending <code class="docutils literal notranslate"><span class="pre">points</span></code> and the
 associated rank.</p>
@@ -5361,7 +5361,7 @@
 <span class="sig-prename descclassname"><span class="pre">datafusion.functions.</span></span><span class="sig-name descname"><span class="pre">string_agg</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">expression</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a></span></em>, <em class="sig-param"><span class="n"><span class="pre">delimiter</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">str</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">filter</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><span class="pre">None</span></span><span class="w"> </span><span class="o"><span class="pre">=</span></span><span class="w"> </span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">order_by</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">list</span><span class="p"><span class="pre">[</span></span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.SortExpr" title="datafusion.expr.SortExpr"><span class="pre">datafusion.expr.SortExpr</span></a><span class="p"><span class="pre">]</span></span><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><a class="reference internal" href="../expr/index.html#datafusion.expr.SortExpr" title="datafusion.expr.SortExpr"><span class="pre">datafusion.expr.SortExpr</span></a><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><span class="pre">None</span></span><span class="w"> </span><span class="o"><span class="pre">=</span></span><span class="w"> </span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><a class="reference internal" href="../expr/index.html#datafusion.expr.Expr" title="datafusion.expr.Expr"><span class="pre">datafusion.expr.Expr</span></a></span></span><a class="headerlink" href="#datafusion.functions.string_agg" title="Link to this definition">¶</a></dt>
 <dd><p>Concatenates the input strings.</p>
 <p>This aggregate function will concatenate input strings, ignoring null values, and
-seperating them with the specified delimiter. Non-string values will be converted to
+separating them with the specified delimiter. Non-string values will be converted to
 their string equivalents.</p>
 <p>If using the builder functions described in ref:<cite>_aggregation</cite> this function ignores
 the options <code class="docutils literal notranslate"><span class="pre">distinct</span></code> and <code class="docutils literal notranslate"><span class="pre">null_treatment</span></code>.</p>
diff --git a/autoapi/datafusion/user_defined/index.html b/autoapi/datafusion/user_defined/index.html
index f9c314e..c2e1f6c 100644
--- a/autoapi/datafusion/user_defined/index.html
+++ b/autoapi/datafusion/user_defined/index.html
@@ -1548,7 +1548,7 @@
 <dl class="py method">
 <dt class="sig sig-object py" id="datafusion.user_defined.WindowEvaluator.get_range">
 <span class="sig-name descname"><span class="pre">get_range</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">idx</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">int</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">num_rows</span></span><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="n"><span class="pre">int</span></span></em><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><span class="pre">tuple</span><span class="p"><span class="pre">[</span></span><span class="pre">int</span><span class="p"><span class="pre">,</span></span><span class="w"> </span><span class="pre">int</span><span class="p"><span class="pre">]</span></span></span></span><a class="headerlink" href="#datafusion.user_defined.WindowEvaluator.get_range" title="Link to this definition">¶</a></dt>
-<dd><p>Return the range for the window fuction.</p>
+<dd><p>Return the range for the window function.</p>
 <p>If <cite>uses_window_frame</cite> flag is <cite>false</cite>. This method is used to
 calculate required range for the window function during
 stateful execution.</p>
diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html
index 518ae0e..0439f32 100644
--- a/contributor-guide/ffi.html
+++ b/contributor-guide/ffi.html
@@ -608,7 +608,7 @@
 have identified you can use.</p>
 <ol class="arabic simple">
 <li><p>Re-export all of <code class="docutils literal notranslate"><span class="pre">datafusion-python</span></code> yourself with your extensions built in.</p></li>
-<li><p>Carefully synchonize your software releases with the <code class="docutils literal notranslate"><span class="pre">datafusion-python</span></code> CI build
+<li><p>Carefully synchronize your software releases with the <code class="docutils literal notranslate"><span class="pre">datafusion-python</span></code> CI build
 system so that your libraries use the exact same compiler, features, and
 optimization level.</p></li>
 </ol>
diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html
index 5df6002..37db300 100644
--- a/contributor-guide/introduction.html
+++ b/contributor-guide/introduction.html
@@ -474,7 +474,7 @@
 <p>Bootstrap:</p>
 <div class="highlight-shell notranslate"><div class="highlight"><pre><span></span><span class="c1"># fetch this repo</span>
 git<span class="w"> </span>clone<span class="w"> </span>git@github.com:apache/datafusion-python.git
-<span class="c1"># create the virtual enviornment</span>
+<span class="c1"># create the virtual environment</span>
 uv<span class="w"> </span>sync<span class="w"> </span>--dev<span class="w"> </span>--no-install-package<span class="w"> </span>datafusion
 <span class="c1"># activate the environment</span>
 <span class="nb">source</span><span class="w"> </span>.venv/bin/activate
diff --git a/searchindex.js b/searchindex.js
index dc3eb86..1c53d51 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"API Reference": [[18, null]], "Additional Resources": [[36, "additional-resources"]], "Aggregate Functions": [[23, "aggregate-functions"], [30, "aggregate-functions"], [32, "aggregate-functions"]], "Aggregation": [[23, null]], "Alternative Approach": [[19, "alternative-approach"]], "Arrays": [[25, "arrays"]], "Arrow": [[38, null]], "Attributes": [[4, "attributes"], [7, "attributes"], [12, "attributes"], [17, "attributes"]], "Available Functions": [[32, "available-functions"]], "Avro": [[39, null]], "Basic HTML Rendering": [[36, "basic-html-rendering"]], "Basic Operations": [[24, null]], "Benchmark Example": [[33, "benchmark-example"]], "Best Practices": [[36, "best-practices"]], "Boolean": [[25, "boolean"]], "Built-in Functions": [[35, "built-in-functions"]], "CSV": [[40, null]], "Casting": [[26, "casting"]], "Catalog": [[34, "catalog"]], "Classes": [[0, "classes"], [1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"]], "Column": [[25, "column"]], "Column Selections": [[29, null]], "Common DataFrame Operations": [[35, "common-dataframe-operations"]], "Common Operations": [[27, null]], "Concepts": [[22, null]], "Conditional": [[26, "conditional"]], "Configuration": [[33, null]], "Configuring the HTML Formatter": [[36, "configuring-the-html-formatter"]], "Contextual Formatting": [[36, "contextual-formatting"]], "Core Classes": [[35, "core-classes"]], "Create in-memory": [[34, "create-in-memory"]], "Creating DataFrames": [[35, "creating-dataframes"]], "Creating a Custom Formatter": [[36, "creating-a-custom-formatter"]], "Custom Style Providers": [[36, "custom-style-providers"]], "Custom Table Provider": [[34, "custom-table-provider"], [44, null]], "Customizing HTML Rendering": [[36, "customizing-html-rendering"]], "Data Sources": [[34, null]], "DataFrame": [[22, "dataframe"]], "DataFrames": [[35, null]], "DataFusion in Python": [[21, null]], "Delta Lake": [[34, "delta-lake"]], "Distinct": [[23, "distinct"]], "Example": [[21, "example"]], "Exporting from DataFusion": [[38, "exporting-from-datafusion"]], "Expression Classes": [[35, "expression-classes"]], "Expressions": [[22, "expressions"], [25, null]], "Filter": [[23, "filter"]], "Full Join": [[28, "full-join"]], "Functions": [[3, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [25, "functions"], [26, null]], "Guidelines for Separating Python and Rust Code": [[20, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[35, "html-rendering"]], "HTML Rendering in Jupyter": [[36, null]], "Handling Missing Values": [[26, "handling-missing-values"]], "How to develop": [[20, "how-to-develop"]], "IO": [[41, null]], "Iceberg": [[34, "iceberg"]], "Implementation Details": [[19, "implementation-details"]], "Important Considerations": [[33, "important-considerations"]], "Importing to DataFusion": [[38, "importing-to-datafusion"]], "Improving Build Speed": [[20, "improving-build-speed"]], "Inner Join": [[28, "inner-join"]], "Inspiration from Arrow": [[19, "inspiration-from-arrow"]], "Install": [[21, "install"]], "Installation": [[37, "installation"]], "Introduction": [[20, null], [37, null]], "JSON": [[42, null]], "Joins": [[28, null]], "Left Anti Join": [[28, "left-anti-join"]], "Left Join": [[28, "left-join"]], "Left Semi Join": [[28, "left-semi-join"]], "Literal": [[25, "literal"]], "Local file": [[34, "local-file"]], "Managing Formatters": [[36, "managing-formatters"]], "Mathematical": [[26, "mathematical"]], "Maximizing CPU Usage": [[33, "maximizing-cpu-usage"]], "Memory and Display Controls": [[36, "memory-and-display-controls"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"]], "Null Treatment": [[23, "null-treatment"], [32, "null-treatment"]], "Object Store": [[34, "object-store"]], "Ordering": [[23, "ordering"], [32, "ordering"]], "Other": [[26, "other"]], "Other DataFrame Libraries": [[34, "other-dataframe-libraries"]], "Overview": [[35, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parquet": [[43, null]], "Partitions": [[32, "partitions"]], "Performance Optimization with Shared Styles": [[36, "performance-optimization-with-shared-styles"]], "Python Extensions": [[19, null]], "Registering Views": [[31, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[20, "running-installing-pre-commit-hooks"]], "SQL": [[45, null]], "Scalar Functions": [[30, "scalar-functions"]], "Session Context": [[22, "session-context"]], "Setting Parameters": [[23, "setting-parameters"], [32, "setting-parameters"]], "Status of Work": [[19, "status-of-work"]], "String": [[26, "string"]], "Structs": [[25, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[30, "table-functions"]], "Temporal": [[26, "temporal"]], "Terminal Operations": [[35, "terminal-operations"]], "The FFI Approach": [[19, "the-ffi-approach"]], "The Primary Issue": [[19, "the-primary-issue"]], "UDWF options": [[30, "udwf-options"]], "Update Dependencies": [[20, "update-dependencies"]], "User Defined Catalog and Schema": [[34, "user-defined-catalog-and-schema"]], "User-Defined Functions": [[30, null]], "Window Frame": [[32, "window-frame"]], "Window Functions": [[30, "window-functions"], [32, null]], "datafusion": [[7, null]], "datafusion.catalog": [[0, null]], "datafusion.context": [[1, null]], "datafusion.dataframe": [[2, null]], "datafusion.dataframe_formatter": [[3, null]], "datafusion.expr": [[4, null]], "datafusion.functions": [[5, null]], "datafusion.html_formatter": [[6, null]], "datafusion.input": [[9, null]], "datafusion.input.base": [[8, null]], "datafusion.input.location": [[10, null]], "datafusion.io": [[11, null]], "datafusion.object_store": [[12, null]], "datafusion.plan": [[13, null]], "datafusion.record_batch": [[14, null]], "datafusion.substrait": [[15, null]], "datafusion.unparser": [[16, null]], "datafusion.user_defined": [[17, null]], "fill_null": [[26, "fill-null"]]}, "docnames": ["autoapi/datafusion/catalog/index", "autoapi/datafusion/context/index", "autoapi/datafusion/dataframe/index", "autoapi/datafusion/dataframe_formatter/index", "autoapi/datafusion/expr/index", "autoapi/datafusion/functions/index", "autoapi/datafusion/html_formatter/index", "autoapi/datafusion/index", "autoapi/datafusion/input/base/index", "autoapi/datafusion/input/index", "autoapi/datafusion/input/location/index", "autoapi/datafusion/io/index", "autoapi/datafusion/object_store/index", "autoapi/datafusion/plan/index", "autoapi/datafusion/record_batch/index", "autoapi/datafusion/substrait/index", "autoapi/datafusion/unparser/index", "autoapi/datafusion/user_defined/index", "autoapi/index", "contributor-guide/ffi", "contributor-guide/introduction", "index", "user-guide/basics", "user-guide/common-operations/aggregations", "user-guide/common-operations/basic-info", "user-guide/common-operations/expressions", "user-guide/common-operations/functions", "user-guide/common-operations/index", "user-guide/common-operations/joins", "user-guide/common-operations/select-and-filter", "user-guide/common-operations/udf-and-udfa", "user-guide/common-operations/views", "user-guide/common-operations/windows", "user-guide/configuration", "user-guide/data-sources", "user-guide/dataframe/index", "user-guide/dataframe/rendering", "user-guide/introduction", "user-guide/io/arrow", "user-guide/io/avro", "user-guide/io/csv", "user-guide/io/index", "user-guide/io/json", "user-guide/io/parquet", "user-guide/io/table_provider", "user-guide/sql"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["autoapi/datafusion/catalog/index.rst", "autoapi/datafusion/context/index.rst", "autoapi/datafusion/dataframe/index.rst", "autoapi/datafusion/dataframe_formatter/index.rst", "autoapi/datafusion/expr/index.rst", "autoapi/datafusion/functions/index.rst", "autoapi/datafusion/html_formatter/index.rst", "autoapi/datafusion/index.rst", "autoapi/datafusion/input/base/index.rst", "autoapi/datafusion/input/index.rst", "autoapi/datafusion/input/location/index.rst", "autoapi/datafusion/io/index.rst", "autoapi/datafusion/object_store/index.rst", "autoapi/datafusion/plan/index.rst", "autoapi/datafusion/record_batch/index.rst", "autoapi/datafusion/substrait/index.rst", "autoapi/datafusion/unparser/index.rst", "autoapi/datafusion/user_defined/index.rst", "autoapi/index.rst", "contributor-guide/ffi.rst", "contributor-guide/introduction.rst", "index.rst", "user-guide/basics.rst", "user-guide/common-operations/aggregations.rst", "user-guide/common-operations/basic-info.rst", "user-guide/common-operations/expressions.rst", "user-guide/common-operations/functions.rst", "user-guide/common-operations/index.rst", "user-guide/common-operations/joins.rst", "user-guide/common-operations/select-and-filter.rst", "user-guide/common-operations/udf-and-udfa.rst", "user-guide/common-operations/views.rst", "user-guide/common-operations/windows.rst", "user-guide/configuration.rst", "user-guide/data-sources.rst", "user-guide/dataframe/index.rst", "user-guide/dataframe/rendering.rst", "user-guide/introduction.rst", "user-guide/io/arrow.rst", "user-guide/io/avro.rst", "user-guide/io/csv.rst", "user-guide/io/index.rst", "user-guide/io/json.rst", "user-guide/io/parquet.rst", "user-guide/io/table_provider.rst", "user-guide/sql.rst"], "indexentries": {"__add__() (datafusion.expr method)": [[7, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__aiter__", false]], "__aiter__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__aiter__", false]], "__and__() (datafusion.expr method)": [[7, "datafusion.Expr.__and__", false]], "__and__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__and__", false]], "__anext__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__anext__", false]], "__anext__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__anext__", false]], "__arrow_c_array__() (datafusion.context.arrowarrayexportable method)": [[1, "datafusion.context.ArrowArrayExportable.__arrow_c_array__", false]], "__arrow_c_stream__() (datafusion.context.arrowstreamexportable method)": [[1, "datafusion.context.ArrowStreamExportable.__arrow_c_stream__", false]], "__arrow_c_stream__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__arrow_c_stream__", false]], "__call__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__call__", false]], "__call__() (datafusion.dataframe_formatter.cellformatter method)": [[3, "datafusion.dataframe_formatter.CellFormatter.__call__", false]], "__call__() (datafusion.scalarudf method)": [[7, "datafusion.ScalarUDF.__call__", false]], "__call__() (datafusion.tablefunction method)": [[7, "datafusion.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.aggregateudf method)": [[17, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[17, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[17, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[17, "datafusion.user_defined.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__call__", false]], "__datafusion_aggregate_udf__() (datafusion.user_defined.aggregateudfexportable method)": [[17, "datafusion.user_defined.AggregateUDFExportable.__datafusion_aggregate_udf__", false]], "__datafusion_catalog_provider__() (datafusion.context.catalogproviderexportable method)": [[1, "datafusion.context.CatalogProviderExportable.__datafusion_catalog_provider__", false]], "__datafusion_scalar_udf__() (datafusion.user_defined.scalarudfexportable method)": [[17, "datafusion.user_defined.ScalarUDFExportable.__datafusion_scalar_udf__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__datafusion_window_udf__() (datafusion.user_defined.windowudfexportable method)": [[17, "datafusion.user_defined.WindowUDFExportable.__datafusion_window_udf__", false]], "__eq__() (datafusion.expr method)": [[7, "datafusion.Expr.__eq__", false]], "__eq__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__eq__", false]], "__ge__() (datafusion.expr method)": [[7, "datafusion.Expr.__ge__", false]], "__ge__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__ge__", false]], "__getitem__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__getitem__", false]], "__getitem__() (datafusion.expr method)": [[7, "datafusion.Expr.__getitem__", false]], "__getitem__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__getitem__", false]], "__gt__() (datafusion.expr method)": [[7, "datafusion.Expr.__gt__", false]], "__gt__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__gt__", false]], "__invert__() (datafusion.expr method)": [[7, "datafusion.Expr.__invert__", false]], "__invert__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__invert__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__iter__", false]], "__iter__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__iter__", false]], "__le__() (datafusion.expr method)": [[7, "datafusion.Expr.__le__", false]], "__le__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__le__", false]], "__lt__() (datafusion.expr method)": [[7, "datafusion.Expr.__lt__", false]], "__lt__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__lt__", false]], "__mod__() (datafusion.expr method)": [[7, "datafusion.Expr.__mod__", false]], "__mod__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__mod__", false]], "__mul__() (datafusion.expr method)": [[7, "datafusion.Expr.__mul__", false]], "__mul__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__mul__", false]], "__ne__() (datafusion.expr method)": [[7, "datafusion.Expr.__ne__", false]], "__ne__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__ne__", false]], "__next__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__next__", false]], "__next__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__next__", false]], "__or__() (datafusion.expr method)": [[7, "datafusion.Expr.__or__", false]], "__or__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__or__", false]], "__radd__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__radd__", false]], "__radd__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__radd__", false]], "__rand__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rand__", false]], "__rand__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rand__", false]], "__repr__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__repr__", false]], "__repr__() (datafusion.catalog method)": [[7, "datafusion.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.__repr__", false]], "__repr__() (datafusion.catalog.table method)": [[0, "datafusion.catalog.Table.__repr__", false]], "__repr__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__repr__", false]], "__repr__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__repr__", false]], "__repr__() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.expr method)": [[7, "datafusion.Expr.__repr__", false]], "__repr__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__repr__", false]], "__repr__() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.__repr__", false]], "__repr__() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.__repr__", false]], "__repr__() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.__repr__", false]], "__repr__() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.__repr__", false]], "__repr__() (datafusion.scalarudf method)": [[7, "datafusion.ScalarUDF.__repr__", false]], "__repr__() (datafusion.table method)": [[7, "datafusion.Table.__repr__", false]], "__repr__() (datafusion.tablefunction method)": [[7, "datafusion.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.aggregateudf method)": [[17, "datafusion.user_defined.AggregateUDF.__repr__", false]], "__repr__() (datafusion.user_defined.scalarudf method)": [[17, "datafusion.user_defined.ScalarUDF.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[17, "datafusion.user_defined.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.windowudf method)": [[17, "datafusion.user_defined.WindowUDF.__repr__", false]], "__repr__() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.__repr__", false]], "__repr__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__repr__", false]], "__richcmp__() (datafusion.expr method)": [[7, "datafusion.Expr.__richcmp__", false]], "__richcmp__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__richcmp__", false]], "__rmod__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rmod__", false]], "__rmod__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rmod__", false]], "__rmul__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rmul__", false]], "__rmul__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rmul__", false]], "__ror__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__ror__", false]], "__ror__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__ror__", false]], "__rsub__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rsub__", false]], "__rsub__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rsub__", false]], "__rtruediv__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rtruediv__", false]], "__rtruediv__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rtruediv__", false]], "__str__() (datafusion.user_defined.volatility method)": [[17, "datafusion.user_defined.Volatility.__str__", false]], "__sub__() (datafusion.expr method)": [[7, "datafusion.Expr.__sub__", false]], "__sub__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__sub__", false]], "__truediv__() (datafusion.expr method)": [[7, "datafusion.Expr.__truediv__", false]], "__truediv__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__truediv__", false]], "_build_expandable_cell() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_expandable_cell", false]], "_build_html_footer() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_html_footer", false]], "_build_html_header() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_html_header", false]], "_build_regular_cell() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_regular_cell", false]], "_build_table_body() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_body", false]], "_build_table_container_start() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_container_start", false]], "_build_table_header() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_header", false]], "_convert_table_partition_cols() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_table_partition_cols", false]], "_create_table_udf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction._create_table_udf", false]], "_create_table_udf_decorator() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf_decorator", false]], "_create_table_udf_decorator() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._create_window_udf", false]], "_create_window_udf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._create_window_udf", false]], "_create_window_udf_decorator() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._create_window_udf_decorator", false]], "_create_window_udf_decorator() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._create_window_udf_decorator", false]], "_custom_cell_builder (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._custom_cell_builder", false]], "_custom_header_builder (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._custom_header_builder", false]], "_default_formatter (datafusion.dataframe_formatter.formattermanager attribute)": [[3, "datafusion.dataframe_formatter.FormatterManager._default_formatter", false]], "_format_cell_value() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._format_cell_value", false]], "_get_cell_value() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_cell_value", false]], "_get_default_css() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_default_css", false]], "_get_default_name() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._get_default_name", false]], "_get_default_name() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._get_default_name", false]], "_get_javascript() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._normalize_input_types", false]], "_normalize_input_types() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._normalize_input_types", false]], "_null_treatment (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._null_treatment", false]], "_order_by (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._order_by", false]], "_partition_by (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._partition_by", false]], "_r (in module datafusion.user_defined)": [[17, "datafusion.user_defined._R", false]], "_raw_plan (datafusion.executionplan attribute)": [[7, "datafusion.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.logicalplan attribute)": [[7, "datafusion.LogicalPlan._raw_plan", false]], "_raw_plan (datafusion.plan.executionplan attribute)": [[13, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[13, "datafusion.plan.LogicalPlan._raw_plan", false]], "_raw_schema (datafusion.catalog.schema attribute)": [[0, "datafusion.catalog.Schema._raw_schema", false]], "_refresh_formatter_reference() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._refresh_formatter_reference", false]], "_repr_html_() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame._repr_html_", false]], "_to_pyarrow_types (datafusion.expr attribute)": [[7, "datafusion.Expr._to_pyarrow_types", false]], "_to_pyarrow_types (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr._to_pyarrow_types", false]], "_type_formatters (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._type_formatters", false]], "_udaf (datafusion.aggregateudf attribute)": [[7, "datafusion.AggregateUDF._udaf", false]], "_udaf (datafusion.user_defined.aggregateudf attribute)": [[17, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[7, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[17, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.tablefunction attribute)": [[7, "datafusion.TableFunction._udtf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[17, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[17, "datafusion.user_defined.WindowUDF._udwf", false]], "_udwf (datafusion.windowudf attribute)": [[7, "datafusion.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_bool", false]], "_validate_positive_int() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_positive_int", false]], "_window_frame (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._window_frame", false]], "abs() (datafusion.expr method)": [[7, "datafusion.Expr.abs", false]], "abs() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.abs", false]], "abs() (in module datafusion.functions)": [[5, "datafusion.functions.abs", false]], "accumulator (class in datafusion)": [[7, "datafusion.Accumulator", false]], "accumulator (class in datafusion.user_defined)": [[17, "datafusion.user_defined.Accumulator", false]], "acos() (datafusion.expr method)": [[7, "datafusion.Expr.acos", false]], "acos() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.acos", false]], "acos() (in module datafusion.functions)": [[5, "datafusion.functions.acos", false]], "acosh() (datafusion.expr method)": [[7, "datafusion.Expr.acosh", false]], "acosh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.acosh", false]], "acosh() (in module datafusion.functions)": [[5, "datafusion.functions.acosh", false]], "aggregate (in module datafusion.expr)": [[4, "datafusion.expr.Aggregate", false]], "aggregate() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.aggregate", false]], "aggregatefunction (in module datafusion.expr)": [[4, "datafusion.expr.AggregateFunction", false]], "aggregateudf (class in datafusion)": [[7, "datafusion.AggregateUDF", false]], "aggregateudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.AggregateUDF", false]], "aggregateudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.AggregateUDFExportable", false]], "alias (in module datafusion.expr)": [[4, "datafusion.expr.Alias", false]], "alias() (datafusion.expr method)": [[7, "datafusion.Expr.alias", false]], "alias() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.alias", false]], "alias() (in module datafusion.functions)": [[5, "datafusion.functions.alias", false]], "allow_single_file_parallelism (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.allow_single_file_parallelism", false], [2, "id7", false]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false], [7, "id8", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "approx_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.approx_distinct", false]], "approx_median() (in module datafusion.functions)": [[5, "datafusion.functions.approx_median", false]], "approx_percentile_cont() (in module datafusion.functions)": [[5, "datafusion.functions.approx_percentile_cont", false]], "approx_percentile_cont_with_weight() (in module datafusion.functions)": [[5, "datafusion.functions.approx_percentile_cont_with_weight", false]], "array() (in module datafusion.functions)": [[5, "datafusion.functions.array", false]], "array_agg() (in module datafusion.functions)": [[5, "datafusion.functions.array_agg", false]], "array_append() (in module datafusion.functions)": [[5, "datafusion.functions.array_append", false]], "array_cat() (in module datafusion.functions)": [[5, "datafusion.functions.array_cat", false]], "array_concat() (in module datafusion.functions)": [[5, "datafusion.functions.array_concat", false]], "array_dims() (datafusion.expr method)": [[7, "datafusion.Expr.array_dims", false]], "array_dims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_dims", false]], "array_dims() (in module datafusion.functions)": [[5, "datafusion.functions.array_dims", false]], "array_distinct() (datafusion.expr method)": [[7, "datafusion.Expr.array_distinct", false]], "array_distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_distinct", false]], "array_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.array_distinct", false]], "array_element() (in module datafusion.functions)": [[5, "datafusion.functions.array_element", false]], "array_empty() (datafusion.expr method)": [[7, "datafusion.Expr.array_empty", false]], "array_empty() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_empty", false]], "array_empty() (in module datafusion.functions)": [[5, "datafusion.functions.array_empty", false]], "array_except() (in module datafusion.functions)": [[5, "datafusion.functions.array_except", false]], "array_extract() (in module datafusion.functions)": [[5, "datafusion.functions.array_extract", false]], "array_has() (in module datafusion.functions)": [[5, "datafusion.functions.array_has", false]], "array_has_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_has_all", false]], "array_has_any() (in module datafusion.functions)": [[5, "datafusion.functions.array_has_any", false]], "array_indexof() (in module datafusion.functions)": [[5, "datafusion.functions.array_indexof", false]], "array_intersect() (in module datafusion.functions)": [[5, "datafusion.functions.array_intersect", false]], "array_join() (in module datafusion.functions)": [[5, "datafusion.functions.array_join", false]], "array_length() (datafusion.expr method)": [[7, "datafusion.Expr.array_length", false]], "array_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_length", false]], "array_length() (in module datafusion.functions)": [[5, "datafusion.functions.array_length", false]], "array_ndims() (datafusion.expr method)": [[7, "datafusion.Expr.array_ndims", false]], "array_ndims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_ndims", false]], "array_ndims() (in module datafusion.functions)": [[5, "datafusion.functions.array_ndims", false]], "array_pop_back() (datafusion.expr method)": [[7, "datafusion.Expr.array_pop_back", false]], "array_pop_back() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_pop_back", false]], "array_pop_back() (in module datafusion.functions)": [[5, "datafusion.functions.array_pop_back", false]], "array_pop_front() (datafusion.expr method)": [[7, "datafusion.Expr.array_pop_front", false]], "array_pop_front() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_pop_front", false]], "array_pop_front() (in module datafusion.functions)": [[5, "datafusion.functions.array_pop_front", false]], "array_position() (in module datafusion.functions)": [[5, "datafusion.functions.array_position", false]], "array_positions() (in module datafusion.functions)": [[5, "datafusion.functions.array_positions", false]], "array_prepend() (in module datafusion.functions)": [[5, "datafusion.functions.array_prepend", false]], "array_push_back() (in module datafusion.functions)": [[5, "datafusion.functions.array_push_back", false]], "array_push_front() (in module datafusion.functions)": [[5, "datafusion.functions.array_push_front", false]], "array_remove() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove", false]], "array_remove_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove_all", false]], "array_remove_n() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove_n", false]], "array_repeat() (in module datafusion.functions)": [[5, "datafusion.functions.array_repeat", false]], "array_replace() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace", false]], "array_replace_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace_all", false]], "array_replace_n() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace_n", false]], "array_resize() (in module datafusion.functions)": [[5, "datafusion.functions.array_resize", false]], "array_slice() (in module datafusion.functions)": [[5, "datafusion.functions.array_slice", false]], "array_sort() (in module datafusion.functions)": [[5, "datafusion.functions.array_sort", false]], "array_to_string() (in module datafusion.functions)": [[5, "datafusion.functions.array_to_string", false]], "array_union() (in module datafusion.functions)": [[5, "datafusion.functions.array_union", false]], "arrow_cast() (in module datafusion.functions)": [[5, "datafusion.functions.arrow_cast", false]], "arrow_typeof() (datafusion.expr method)": [[7, "datafusion.Expr.arrow_typeof", false]], "arrow_typeof() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.arrow_typeof", false]], "arrow_typeof() (in module datafusion.functions)": [[5, "datafusion.functions.arrow_typeof", false]], "arrowarrayexportable (class in datafusion.context)": [[1, "datafusion.context.ArrowArrayExportable", false]], "arrowstreamexportable (class in datafusion.context)": [[1, "datafusion.context.ArrowStreamExportable", false]], "ascending() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.ascending", false]], "ascii() (datafusion.expr method)": [[7, "datafusion.Expr.ascii", false]], "ascii() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ascii", false]], "ascii() (in module datafusion.functions)": [[5, "datafusion.functions.ascii", false]], "asin() (datafusion.expr method)": [[7, "datafusion.Expr.asin", false]], "asin() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.asin", false]], "asin() (in module datafusion.functions)": [[5, "datafusion.functions.asin", false]], "asinh() (datafusion.expr method)": [[7, "datafusion.Expr.asinh", false]], "asinh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.asinh", false]], "asinh() (in module datafusion.functions)": [[5, "datafusion.functions.asinh", false]], "atan() (datafusion.expr method)": [[7, "datafusion.Expr.atan", false]], "atan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.atan", false]], "atan() (in module datafusion.functions)": [[5, "datafusion.functions.atan", false]], "atan2() (in module datafusion.functions)": [[5, "datafusion.functions.atan2", false]], "atanh() (datafusion.expr method)": [[7, "datafusion.Expr.atanh", false]], "atanh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.atanh", false]], "atanh() (in module datafusion.functions)": [[5, "datafusion.functions.atanh", false]], "avg() (in module datafusion.functions)": [[5, "datafusion.functions.avg", false]], "baseinputsource (class in datafusion.input.base)": [[8, "datafusion.input.base.BaseInputSource", false]], "between (in module datafusion.expr)": [[4, "datafusion.expr.Between", false]], "between() (datafusion.expr method)": [[7, "datafusion.Expr.between", false]], "between() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.between", false]], "binaryexpr (in module datafusion.expr)": [[4, "datafusion.expr.BinaryExpr", false]], "bit_and() (in module datafusion.functions)": [[5, "datafusion.functions.bit_and", false]], "bit_length() (datafusion.expr method)": [[7, "datafusion.Expr.bit_length", false]], "bit_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.bit_length", false]], "bit_length() (in module datafusion.functions)": [[5, "datafusion.functions.bit_length", false]], "bit_or() (in module datafusion.functions)": [[5, "datafusion.functions.bit_or", false]], "bit_xor() (in module datafusion.functions)": [[5, "datafusion.functions.bit_xor", false]], "bloom_filter_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_enabled", false], [2, "id0", false]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false], [7, "id0", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false], [2, "id1", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false], [2, "id8", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false], [7, "id2", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false], [7, "id9", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false], [2, "id2", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false], [2, "id9", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false], [7, "id3", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false], [7, "id10", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false], [2, "id10", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", false], [7, "id11", false]], "bool_and() (in module datafusion.functions)": [[5, "datafusion.functions.bool_and", false]], "bool_or() (in module datafusion.functions)": [[5, "datafusion.functions.bool_or", false]], "brotli (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.BROTLI", false]], "btrim() (datafusion.expr method)": [[7, "datafusion.Expr.btrim", false]], "btrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.btrim", false]], "btrim() (in module datafusion.functions)": [[5, "datafusion.functions.btrim", false]], "build_table() (datafusion.input.base.baseinputsource method)": [[8, "datafusion.input.base.BaseInputSource.build_table", false]], "build_table() (datafusion.input.location.locationinputplugin method)": [[10, "datafusion.input.location.LocationInputPlugin.build_table", false]], "build_table() (datafusion.input.locationinputplugin method)": [[9, "datafusion.input.LocationInputPlugin.build_table", false]], "cache() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cache", false]], "canonical_name() (datafusion.expr method)": [[7, "datafusion.Expr.canonical_name", false]], "canonical_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.canonical_name", false]], "cardinality() (datafusion.expr method)": [[7, "datafusion.Expr.cardinality", false]], "cardinality() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cardinality", false]], "cardinality() (in module datafusion.functions)": [[5, "datafusion.functions.cardinality", false]], "case (in module datafusion.expr)": [[4, "datafusion.expr.Case", false]], "case() (in module datafusion.functions)": [[5, "datafusion.functions.case", false]], "case_builder (datafusion.expr.casebuilder attribute)": [[4, "datafusion.expr.CaseBuilder.case_builder", false]], "casebuilder (class in datafusion.expr)": [[4, "datafusion.expr.CaseBuilder", false]], "cast (in module datafusion.expr)": [[4, "datafusion.expr.Cast", false]], "cast() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cast", false]], "cast() (datafusion.expr method)": [[7, "datafusion.Expr.cast", false]], "cast() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cast", false]], "catalog (class in datafusion)": [[7, "datafusion.Catalog", false]], "catalog (class in datafusion.catalog)": [[0, "datafusion.catalog.Catalog", false]], "catalog (datafusion.catalog attribute)": [[7, "datafusion.Catalog.catalog", false]], "catalog (datafusion.catalog.catalog attribute)": [[0, "datafusion.catalog.Catalog.catalog", false]], "catalog() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog", false]], "catalog_names() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog_names", false]], "catalogprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProvider", false]], "catalogproviderexportable (class in datafusion.context)": [[1, "datafusion.context.CatalogProviderExportable", false]], "cbrt() (datafusion.expr method)": [[7, "datafusion.Expr.cbrt", false]], "cbrt() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cbrt", false]], "cbrt() (in module datafusion.functions)": [[5, "datafusion.functions.cbrt", false]], "ceil() (datafusion.expr method)": [[7, "datafusion.Expr.ceil", false]], "ceil() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ceil", false]], "ceil() (in module datafusion.functions)": [[5, "datafusion.functions.ceil", false]], "cellformatter (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.CellFormatter", false]], "char_length() (datafusion.expr method)": [[7, "datafusion.Expr.char_length", false]], "char_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.char_length", false]], "char_length() (in module datafusion.functions)": [[5, "datafusion.functions.char_length", false]], "character_length() (datafusion.expr method)": [[7, "datafusion.Expr.character_length", false]], "character_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.character_length", false]], "character_length() (in module datafusion.functions)": [[5, "datafusion.functions.character_length", false]], "children() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.children", false]], "children() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.children", false]], "chr() (datafusion.expr method)": [[7, "datafusion.Expr.chr", false]], "chr() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.chr", false]], "chr() (in module datafusion.functions)": [[5, "datafusion.functions.chr", false]], "coalesce() (in module datafusion.functions)": [[5, "datafusion.functions.coalesce", false]], "col (in module datafusion)": [[7, "datafusion.col", false]], "col() (in module datafusion.functions)": [[5, "datafusion.functions.col", false]], "collect() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect", false]], "collect_partitioned() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_partitioned", false]], "column (in module datafusion)": [[7, "datafusion.column", false]], "column (in module datafusion.expr)": [[4, "datafusion.expr.Column", false]], "column() (datafusion.expr static method)": [[7, "datafusion.Expr.column", false]], "column() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.column", false]], "column_index_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.column_index_truncate_length", false], [2, "id11", false]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", false], [7, "id12", false]], "column_name() (datafusion.expr method)": [[7, "datafusion.Expr.column_name", false]], "column_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.column_name", false]], "column_specific_options (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.column_specific_options", false], [2, "id12", false]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false], [7, "id13", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false], [2, "id3", false]], "compression (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.compression", false], [7, "id4", false]], "compression (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.compression", false]], "concat() (in module datafusion.functions)": [[5, "datafusion.functions.concat", false]], "concat_ws() (in module datafusion.functions)": [[5, "datafusion.functions.concat_ws", false]], "config_internal (datafusion.context.runtimeenvbuilder attribute)": [[1, "datafusion.context.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.context.sessionconfig attribute)": [[1, "datafusion.context.SessionConfig.config_internal", false]], "config_internal (datafusion.runtimeenvbuilder attribute)": [[7, "datafusion.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.sessionconfig attribute)": [[7, "datafusion.SessionConfig.config_internal", false]], "configure_formatter() (in module datafusion)": [[7, "datafusion.configure_formatter", false]], "configure_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.configure_formatter", false]], "consumer (class in datafusion.substrait)": [[15, "datafusion.substrait.Consumer", false]], "copyto (in module datafusion.expr)": [[4, "datafusion.expr.CopyTo", false]], "corr() (in module datafusion.functions)": [[5, "datafusion.functions.corr", false]], "cos() (datafusion.expr method)": [[7, "datafusion.Expr.cos", false]], "cos() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cos", false]], "cos() (in module datafusion.functions)": [[5, "datafusion.functions.cos", false]], "cosh() (datafusion.expr method)": [[7, "datafusion.Expr.cosh", false]], "cosh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cosh", false]], "cosh() (in module datafusion.functions)": [[5, "datafusion.functions.cosh", false]], "cot() (datafusion.expr method)": [[7, "datafusion.Expr.cot", false]], "cot() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cot", false]], "cot() (in module datafusion.functions)": [[5, "datafusion.functions.cot", false]], "count() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.count", false]], "count() (in module datafusion.functions)": [[5, "datafusion.functions.count", false]], "count_star() (in module datafusion.functions)": [[5, "datafusion.functions.count_star", false]], "covar() (in module datafusion.functions)": [[5, "datafusion.functions.covar", false]], "covar_pop() (in module datafusion.functions)": [[5, "datafusion.functions.covar_pop", false]], "covar_samp() (in module datafusion.functions)": [[5, "datafusion.functions.covar_samp", false]], "create_dataframe() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.create_dataframe", false]], "create_dataframe_from_logical_plan() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.create_dataframe_from_logical_plan", false]], "createcatalog (in module datafusion.expr)": [[4, "datafusion.expr.CreateCatalog", false]], "createcatalogschema (in module datafusion.expr)": [[4, "datafusion.expr.CreateCatalogSchema", false]], "created_by (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.created_by", false], [2, "id13", false]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", false], [7, "id14", false]], "createexternaltable (in module datafusion.expr)": [[4, "datafusion.expr.CreateExternalTable", false]], "createfunction (in module datafusion.expr)": [[4, "datafusion.expr.CreateFunction", false]], "createfunctionbody (in module datafusion.expr)": [[4, "datafusion.expr.CreateFunctionBody", false]], "createindex (in module datafusion.expr)": [[4, "datafusion.expr.CreateIndex", false]], "creatememorytable (in module datafusion.expr)": [[4, "datafusion.expr.CreateMemoryTable", false]], "createview (in module datafusion.expr)": [[4, "datafusion.expr.CreateView", false]], "ctx (datafusion.context.sessioncontext attribute)": [[1, "datafusion.context.SessionContext.ctx", false]], "cume_dist() (in module datafusion.functions)": [[5, "datafusion.functions.cume_dist", false]], "current_date() (in module datafusion.functions)": [[5, "datafusion.functions.current_date", false]], "current_time() (in module datafusion.functions)": [[5, "datafusion.functions.current_time", false]], "custom_css (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.custom_css", false]], "data_page_row_count_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_page_row_count_limit", false], [2, "id14", false]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false], [7, "id15", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false], [2, "id15", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", false], [7, "id16", false]], "database (class in datafusion)": [[7, "datafusion.Database", false]], "database() (datafusion.catalog method)": [[7, "datafusion.Catalog.database", false]], "database() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.database", false]], "dataframe (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrame", false]], "dataframehtmlformatter (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter", false]], "datafusion": [[7, "module-datafusion", false]], "datafusion.catalog": [[0, "module-datafusion.catalog", false]], "datafusion.context": [[1, "module-datafusion.context", false]], "datafusion.dataframe": [[2, "module-datafusion.dataframe", false]], "datafusion.dataframe_formatter": [[3, "module-datafusion.dataframe_formatter", false]], "datafusion.expr": [[4, "module-datafusion.expr", false]], "datafusion.functions": [[5, "module-datafusion.functions", false]], "datafusion.html_formatter": [[6, "module-datafusion.html_formatter", false]], "datafusion.input": [[9, "module-datafusion.input", false]], "datafusion.input.base": [[8, "module-datafusion.input.base", false]], "datafusion.input.location": [[10, "module-datafusion.input.location", false]], "datafusion.io": [[11, "module-datafusion.io", false]], "datafusion.object_store": [[12, "module-datafusion.object_store", false]], "datafusion.plan": [[13, "module-datafusion.plan", false]], "datafusion.record_batch": [[14, "module-datafusion.record_batch", false]], "datafusion.substrait": [[15, "module-datafusion.substrait", false]], "datafusion.unparser": [[16, "module-datafusion.unparser", false]], "datafusion.user_defined": [[17, "module-datafusion.user_defined", false]], "date_bin() (in module datafusion.functions)": [[5, "datafusion.functions.date_bin", false]], "date_part() (in module datafusion.functions)": [[5, "datafusion.functions.date_part", false]], "date_trunc() (in module datafusion.functions)": [[5, "datafusion.functions.date_trunc", false]], "datepart() (in module datafusion.functions)": [[5, "datafusion.functions.datepart", false]], "datetrunc() (in module datafusion.functions)": [[5, "datafusion.functions.datetrunc", false]], "deallocate (in module datafusion.expr)": [[4, "datafusion.expr.Deallocate", false]], "decode() (in module datafusion.functions)": [[5, "datafusion.functions.decode", false]], "default() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.default", false]], "default_str_repr() (datafusion.dataframe.dataframe static method)": [[2, "datafusion.dataframe.DataFrame.default_str_repr", false]], "defaultstyleprovider (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider", false]], "degrees() (datafusion.expr method)": [[7, "datafusion.Expr.degrees", false]], "degrees() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.degrees", false]], "degrees() (in module datafusion.functions)": [[5, "datafusion.functions.degrees", false]], "dense_rank() (in module datafusion.functions)": [[5, "datafusion.functions.dense_rank", false]], "deregister_schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.deregister_schema", false]], "deregister_schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.deregister_schema", false]], "deregister_schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.deregister_schema", false]], "deregister_table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.deregister_table", false]], "deregister_table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.deregister_table", false]], "deregister_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.deregister_table", false]], "describe() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.describe", false]], "describetable (in module datafusion.expr)": [[4, "datafusion.expr.DescribeTable", false]], "deserialize() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.deserialize_bytes", false]], "df (datafusion.dataframe.dataframe attribute)": [[2, "datafusion.dataframe.DataFrame.df", false]], "dfschema (in module datafusion)": [[7, "datafusion.DFSchema", false]], "dialect (class in datafusion.unparser)": [[16, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[16, "datafusion.unparser.Dialect.dialect", false]], "dictionary_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.dictionary_enabled", false], [2, "id4", false]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false], [2, "id16", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false], [7, "id5", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false], [7, "id17", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false], [2, "id17", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", false], [7, "id18", false]], "digest() (in module datafusion.functions)": [[5, "datafusion.functions.digest", false]], "display() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.display", false]], "display() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display", false]], "display() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_graphviz", false]], "display_indent() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_indent", false]], "display_indent() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_indent", false]], "display_indent_schema() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_indent_schema", false]], "display_indent_schema() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_indent_schema", false]], "display_name() (datafusion.expr method)": [[7, "datafusion.Expr.display_name", false]], "display_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.display_name", false]], "distinct (in module datafusion.expr)": [[4, "datafusion.expr.Distinct", false]], "distinct() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.distinct", false]], "distinct() (datafusion.expr method)": [[7, "datafusion.Expr.distinct", false]], "distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.distinct", false]], "dmlstatement (in module datafusion.expr)": [[4, "datafusion.expr.DmlStatement", false]], "drop() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.drop", false]], "dropcatalogschema (in module datafusion.expr)": [[4, "datafusion.expr.DropCatalogSchema", false]], "dropfunction (in module datafusion.expr)": [[4, "datafusion.expr.DropFunction", false]], "droptable (in module datafusion.expr)": [[4, "datafusion.expr.DropTable", false]], "dropview (in module datafusion.expr)": [[4, "datafusion.expr.DropView", false]], "duckdb() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.duckdb", false]], "empty() (datafusion.expr method)": [[7, "datafusion.Expr.empty", false]], "empty() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.empty", false]], "empty() (in module datafusion.functions)": [[5, "datafusion.functions.empty", false]], "empty_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.empty_table", false]], "emptyrelation (in module datafusion.expr)": [[4, "datafusion.expr.EmptyRelation", false]], "enable_cell_expansion (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.enable_cell_expansion", false]], "enable_url_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.enable_url_table", false]], "encode() (datafusion.substrait.plan method)": [[15, "datafusion.substrait.Plan.encode", false]], "encode() (in module datafusion.functions)": [[5, "datafusion.functions.encode", false]], "encoding (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.encoding", false], [2, "id5", false]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false], [2, "id18", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false], [7, "id6", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false], [7, "id19", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "evaluate() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate_all_with_rank", false]], "except_all() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.except_all", false]], "execute (in module datafusion.expr)": [[4, "datafusion.expr.Execute", false]], "execute() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.execute", false]], "execute_stream() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execute_stream", false]], "execute_stream_partitioned() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execute_stream_partitioned", false]], "execution_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execution_plan", false]], "executionplan (class in datafusion)": [[7, "datafusion.ExecutionPlan", false]], "executionplan (class in datafusion.plan)": [[13, "datafusion.plan.ExecutionPlan", false]], "exists (in module datafusion.expr)": [[4, "datafusion.expr.Exists", false]], "exp() (datafusion.expr method)": [[7, "datafusion.Expr.exp", false]], "exp() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.exp", false]], "exp() (in module datafusion.functions)": [[5, "datafusion.functions.exp", false]], "explain (in module datafusion.expr)": [[4, "datafusion.expr.Explain", false]], "explain() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.explain", false]], "expr (class in datafusion)": [[7, "datafusion.Expr", false]], "expr (class in datafusion.expr)": [[4, "datafusion.expr.Expr", false]], "expr (datafusion.expr attribute)": [[7, "datafusion.Expr.expr", false]], "expr (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.expr", false]], "expr() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.expr", false]], "extension (in module datafusion.expr)": [[4, "datafusion.expr.Extension", false]], "extract() (in module datafusion.functions)": [[5, "datafusion.functions.extract", false]], "factorial() (datafusion.expr method)": [[7, "datafusion.Expr.factorial", false]], "factorial() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.factorial", false]], "factorial() (in module datafusion.functions)": [[5, "datafusion.functions.factorial", false]], "filetype (in module datafusion.expr)": [[4, "datafusion.expr.FileType", false]], "fill_nan() (datafusion.expr method)": [[7, "datafusion.Expr.fill_nan", false]], "fill_nan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.fill_nan", false]], "fill_null() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.fill_null", false]], "fill_null() (datafusion.expr method)": [[7, "datafusion.Expr.fill_null", false]], "fill_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.fill_null", false]], "filter (in module datafusion.expr)": [[4, "datafusion.expr.Filter", false]], "filter() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.filter", false]], "filter() (datafusion.expr method)": [[7, "datafusion.Expr.filter", false]], "filter() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.filter", false]], "find_in_set() (in module datafusion.functions)": [[5, "datafusion.functions.find_in_set", false]], "first_value() (in module datafusion.functions)": [[5, "datafusion.functions.first_value", false]], "flatten() (datafusion.expr method)": [[7, "datafusion.Expr.flatten", false]], "flatten() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.flatten", false]], "flatten() (in module datafusion.functions)": [[5, "datafusion.functions.flatten", false]], "floor() (datafusion.expr method)": [[7, "datafusion.Expr.floor", false]], "floor() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.floor", false]], "floor() (in module datafusion.functions)": [[5, "datafusion.functions.floor", false]], "format_html() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.format_html", false]], "format_str() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.format_str", false]], "formattermanager (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.FormatterManager", false]], "frame_bound (datafusion.expr.windowframebound attribute)": [[4, "datafusion.expr.WindowFrameBound.frame_bound", false]], "from_arrow() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_arrow", false]], "from_arrow_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_arrow_table", false]], "from_dataset() (datafusion.catalog.table static method)": [[0, "datafusion.catalog.Table.from_dataset", false]], "from_dataset() (datafusion.table static method)": [[7, "datafusion.Table.from_dataset", false]], "from_pandas() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pandas", false]], "from_polars() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_polars", false]], "from_proto() (datafusion.executionplan static method)": [[7, "datafusion.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.logicalplan static method)": [[7, "datafusion.LogicalPlan.from_proto", false]], "from_proto() (datafusion.plan.executionplan static method)": [[13, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[13, "datafusion.plan.LogicalPlan.from_proto", false]], "from_pycapsule() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.aggregateudf static method)": [[17, "datafusion.user_defined.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.scalarudf static method)": [[17, "datafusion.user_defined.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.from_pycapsule", false]], "from_pydict() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pydict", false]], "from_pylist() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pylist", false]], "from_str() (datafusion.dataframe.compression class method)": [[2, "datafusion.dataframe.Compression.from_str", false]], "from_substrait_plan() (datafusion.substrait.consumer static method)": [[15, "datafusion.substrait.Consumer.from_substrait_plan", false]], "from_unixtime() (datafusion.expr method)": [[7, "datafusion.Expr.from_unixtime", false]], "from_unixtime() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.from_unixtime", false]], "from_unixtime() (in module datafusion.functions)": [[5, "datafusion.functions.from_unixtime", false]], "gcd() (in module datafusion.functions)": [[5, "datafusion.functions.gcd", false]], "get_cell_style() (datafusion.dataframe_formatter.defaultstyleprovider method)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider.get_cell_style", false]], "get_cell_style() (datafusion.dataframe_formatter.styleprovider method)": [[3, "datafusion.dataframe_formatter.StyleProvider.get_cell_style", false]], "get_default_level() (datafusion.dataframe.compression method)": [[2, "datafusion.dataframe.Compression.get_default_level", false]], "get_formatter() (datafusion.dataframe_formatter.formattermanager class method)": [[3, "datafusion.dataframe_formatter.FormatterManager.get_formatter", false]], "get_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.get_formatter", false]], "get_frame_units() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_frame_units", false]], "get_frame_units() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_frame_units", false]], "get_header_style() (datafusion.dataframe_formatter.defaultstyleprovider method)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider.get_header_style", false]], "get_header_style() (datafusion.dataframe_formatter.styleprovider method)": [[3, "datafusion.dataframe_formatter.StyleProvider.get_header_style", false]], "get_lower_bound() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_lower_bound", false]], "get_lower_bound() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_lower_bound", false]], "get_offset() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.get_offset", false]], "get_range() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.get_range", false]], "get_upper_bound() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_upper_bound", false]], "get_upper_bound() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_upper_bound", false]], "global_ctx() (datafusion.context.sessioncontext class method)": [[1, "datafusion.context.SessionContext.global_ctx", false]], "googlecloud (in module datafusion.object_store)": [[12, "datafusion.object_store.GoogleCloud", false]], "groupingset (in module datafusion.expr)": [[4, "datafusion.expr.GroupingSet", false]], "gzip (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.GZIP", false]], "head() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.head", false]], "http (in module datafusion.object_store)": [[12, "datafusion.object_store.Http", false]], "ilike (in module datafusion.expr)": [[4, "datafusion.expr.ILike", false]], "immutable (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Immutable", false]], "in_list() (in module datafusion.functions)": [[5, "datafusion.functions.in_list", false]], "include_rank() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.include_rank", false]], "initcap() (datafusion.expr method)": [[7, "datafusion.Expr.initcap", false]], "initcap() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.initcap", false]], "initcap() (in module datafusion.functions)": [[5, "datafusion.functions.initcap", false]], "inlist (in module datafusion.expr)": [[4, "datafusion.expr.InList", false]], "inputs() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.inputs", false]], "inputs() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.inputs", false]], "insubquery (in module datafusion.expr)": [[4, "datafusion.expr.InSubquery", false]], "intersect() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.intersect", false]], "into_view() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.into_view", false]], "is_causal() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.is_causal", false]], "is_correct_input() (datafusion.input.base.baseinputsource method)": [[8, "datafusion.input.base.BaseInputSource.is_correct_input", false]], "is_correct_input() (datafusion.input.location.locationinputplugin method)": [[10, "datafusion.input.location.LocationInputPlugin.is_correct_input", false]], "is_correct_input() (datafusion.input.locationinputplugin method)": [[9, "datafusion.input.LocationInputPlugin.is_correct_input", false]], "is_current_row() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_current_row", false]], "is_following() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_following", false]], "is_not_null() (datafusion.expr method)": [[7, "datafusion.Expr.is_not_null", false]], "is_not_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.is_not_null", false]], "is_null() (datafusion.expr method)": [[7, "datafusion.Expr.is_null", false]], "is_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.is_null", false]], "is_preceding() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_preceding", false]], "is_unbounded() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_unbounded", false]], "isfalse (in module datafusion.expr)": [[4, "datafusion.expr.IsFalse", false]], "isnan() (datafusion.expr method)": [[7, "datafusion.Expr.isnan", false]], "isnan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.isnan", false]], "isnan() (in module datafusion.functions)": [[5, "datafusion.functions.isnan", false]], "isnotfalse (in module datafusion.expr)": [[4, "datafusion.expr.IsNotFalse", false]], "isnotnull (in module datafusion.expr)": [[4, "datafusion.expr.IsNotNull", false]], "isnottrue (in module datafusion.expr)": [[4, "datafusion.expr.IsNotTrue", false]], "isnotunknown (in module datafusion.expr)": [[4, "datafusion.expr.IsNotUnknown", false]], "isnull (in module datafusion.expr)": [[4, "datafusion.expr.IsNull", false]], "istrue (in module datafusion.expr)": [[4, "datafusion.expr.IsTrue", false]], "isunknown (in module datafusion.expr)": [[4, "datafusion.expr.IsUnknown", false]], "iszero() (datafusion.expr method)": [[7, "datafusion.Expr.iszero", false]], "iszero() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.iszero", false]], "iszero() (in module datafusion.functions)": [[5, "datafusion.functions.iszero", false]], "join (in module datafusion.expr)": [[4, "datafusion.expr.Join", false]], "join() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.join", false]], "join_on() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.join_on", false]], "joinconstraint (in module datafusion.expr)": [[4, "datafusion.expr.JoinConstraint", false]], "jointype (in module datafusion.expr)": [[4, "datafusion.expr.JoinType", false]], "kind (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.kind", false]], "kind (datafusion.table property)": [[7, "datafusion.Table.kind", false]], "lag() (in module datafusion.functions)": [[5, "datafusion.functions.lag", false]], "last_value() (in module datafusion.functions)": [[5, "datafusion.functions.last_value", false]], "lcm() (in module datafusion.functions)": [[5, "datafusion.functions.lcm", false]], "lead() (in module datafusion.functions)": [[5, "datafusion.functions.lead", false]], "left() (in module datafusion.functions)": [[5, "datafusion.functions.left", false]], "length() (datafusion.expr method)": [[7, "datafusion.Expr.length", false]], "length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.length", false]], "length() (in module datafusion.functions)": [[5, "datafusion.functions.length", false]], "levenshtein() (in module datafusion.functions)": [[5, "datafusion.functions.levenshtein", false]], "like (in module datafusion.expr)": [[4, "datafusion.expr.Like", false]], "limit (in module datafusion.expr)": [[4, "datafusion.expr.Limit", false]], "limit() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.limit", false]], "list_append() (in module datafusion.functions)": [[5, "datafusion.functions.list_append", false]], "list_cat() (in module datafusion.functions)": [[5, "datafusion.functions.list_cat", false]], "list_concat() (in module datafusion.functions)": [[5, "datafusion.functions.list_concat", false]], "list_dims() (datafusion.expr method)": [[7, "datafusion.Expr.list_dims", false]], "list_dims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_dims", false]], "list_dims() (in module datafusion.functions)": [[5, "datafusion.functions.list_dims", false]], "list_distinct() (datafusion.expr method)": [[7, "datafusion.Expr.list_distinct", false]], "list_distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_distinct", false]], "list_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.list_distinct", false]], "list_element() (in module datafusion.functions)": [[5, "datafusion.functions.list_element", false]], "list_except() (in module datafusion.functions)": [[5, "datafusion.functions.list_except", false]], "list_extract() (in module datafusion.functions)": [[5, "datafusion.functions.list_extract", false]], "list_indexof() (in module datafusion.functions)": [[5, "datafusion.functions.list_indexof", false]], "list_intersect() (in module datafusion.functions)": [[5, "datafusion.functions.list_intersect", false]], "list_join() (in module datafusion.functions)": [[5, "datafusion.functions.list_join", false]], "list_length() (datafusion.expr method)": [[7, "datafusion.Expr.list_length", false]], "list_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_length", false]], "list_length() (in module datafusion.functions)": [[5, "datafusion.functions.list_length", false]], "list_ndims() (datafusion.expr method)": [[7, "datafusion.Expr.list_ndims", false]], "list_ndims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_ndims", false]], "list_ndims() (in module datafusion.functions)": [[5, "datafusion.functions.list_ndims", false]], "list_position() (in module datafusion.functions)": [[5, "datafusion.functions.list_position", false]], "list_positions() (in module datafusion.functions)": [[5, "datafusion.functions.list_positions", false]], "list_prepend() (in module datafusion.functions)": [[5, "datafusion.functions.list_prepend", false]], "list_push_back() (in module datafusion.functions)": [[5, "datafusion.functions.list_push_back", false]], "list_push_front() (in module datafusion.functions)": [[5, "datafusion.functions.list_push_front", false]], "list_remove() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove", false]], "list_remove_all() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove_all", false]], "list_remove_n() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove_n", false]], "list_repeat() (in module datafusion.functions)": [[5, "datafusion.functions.list_repeat", false]], "list_replace() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace", false]], "list_replace_all() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace_all", false]], "list_replace_n() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace_n", false]], "list_resize() (in module datafusion.functions)": [[5, "datafusion.functions.list_resize", false]], "list_slice() (in module datafusion.functions)": [[5, "datafusion.functions.list_slice", false]], "list_sort() (in module datafusion.functions)": [[5, "datafusion.functions.list_sort", false]], "list_to_string() (in module datafusion.functions)": [[5, "datafusion.functions.list_to_string", false]], "list_union() (in module datafusion.functions)": [[5, "datafusion.functions.list_union", false]], "lit() (in module datafusion)": [[7, "datafusion.lit", false]], "literal (in module datafusion.expr)": [[4, "datafusion.expr.Literal", false]], "literal() (datafusion.expr static method)": [[7, "datafusion.Expr.literal", false]], "literal() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.literal", false]], "literal() (in module datafusion)": [[7, "datafusion.literal", false]], "literal_with_metadata() (datafusion.expr static method)": [[7, "datafusion.Expr.literal_with_metadata", false]], "literal_with_metadata() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.literal_with_metadata", false]], "ln() (datafusion.expr method)": [[7, "datafusion.Expr.ln", false]], "ln() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ln", false]], "ln() (in module datafusion.functions)": [[5, "datafusion.functions.ln", false]], "localfilesystem (in module datafusion.object_store)": [[12, "datafusion.object_store.LocalFileSystem", false]], "locationinputplugin (class in datafusion.input)": [[9, "datafusion.input.LocationInputPlugin", false]], "locationinputplugin (class in datafusion.input.location)": [[10, "datafusion.input.location.LocationInputPlugin", false]], "log() (in module datafusion.functions)": [[5, "datafusion.functions.log", false]], "log10() (datafusion.expr method)": [[7, "datafusion.Expr.log10", false]], "log10() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.log10", false]], "log10() (in module datafusion.functions)": [[5, "datafusion.functions.log10", false]], "log2() (datafusion.expr method)": [[7, "datafusion.Expr.log2", false]], "log2() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.log2", false]], "log2() (in module datafusion.functions)": [[5, "datafusion.functions.log2", false]], "logical_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.logical_plan", false]], "logicalplan (class in datafusion)": [[7, "datafusion.LogicalPlan", false]], "logicalplan (class in datafusion.plan)": [[13, "datafusion.plan.LogicalPlan", false]], "lower() (datafusion.expr method)": [[7, "datafusion.Expr.lower", false]], "lower() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.lower", false]], "lower() (in module datafusion.functions)": [[5, "datafusion.functions.lower", false]], "lpad() (in module datafusion.functions)": [[5, "datafusion.functions.lpad", false]], "ltrim() (datafusion.expr method)": [[7, "datafusion.Expr.ltrim", false]], "ltrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ltrim", false]], "ltrim() (in module datafusion.functions)": [[5, "datafusion.functions.ltrim", false]], "lz4 (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.LZ4", false]], "lz4_raw (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.LZ4_RAW", false]], "make_array() (in module datafusion.functions)": [[5, "datafusion.functions.make_array", false]], "make_date() (in module datafusion.functions)": [[5, "datafusion.functions.make_date", false]], "make_list() (in module datafusion.functions)": [[5, "datafusion.functions.make_list", false]], "max() (in module datafusion.functions)": [[5, "datafusion.functions.max", false]], "max_cell_length (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_cell_length", false]], "max_height (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_height", false]], "max_memory_bytes (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_memory_bytes", false]], "max_row_group_size (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.max_row_group_size", false], [2, "id19", false]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", false], [7, "id20", false]], "max_width (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_width", false]], "maximum_buffered_record_batches_per_stream (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false], [2, "id20", false]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false], [7, "id21", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false], [2, "id21", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", false], [7, "id22", false]], "md5() (datafusion.expr method)": [[7, "datafusion.Expr.md5", false]], "md5() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.md5", false]], "md5() (in module datafusion.functions)": [[5, "datafusion.functions.md5", false]], "mean() (in module datafusion.functions)": [[5, "datafusion.functions.mean", false]], "median() (in module datafusion.functions)": [[5, "datafusion.functions.median", false]], "memoize() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.memoize", false]], "memory_catalog() (datafusion.catalog static method)": [[7, "datafusion.Catalog.memory_catalog", false]], "memory_catalog() (datafusion.catalog.catalog static method)": [[0, "datafusion.catalog.Catalog.memory_catalog", false]], "memory_schema() (datafusion.catalog.schema static method)": [[0, "datafusion.catalog.Schema.memory_schema", false]], "merge() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.merge", false]], "merge() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.merge", false]], "microsoftazure (in module datafusion.object_store)": [[12, "datafusion.object_store.MicrosoftAzure", false]], "min() (in module datafusion.functions)": [[5, "datafusion.functions.min", false]], "min_rows_display (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.min_rows_display", false]], "module": [[0, "module-datafusion.catalog", false], [1, "module-datafusion.context", false], [2, "module-datafusion.dataframe", false], [3, "module-datafusion.dataframe_formatter", false], [4, "module-datafusion.expr", false], [5, "module-datafusion.functions", false], [6, "module-datafusion.html_formatter", false], [7, "module-datafusion", false], [8, "module-datafusion.input.base", false], [9, "module-datafusion.input", false], [10, "module-datafusion.input.location", false], [11, "module-datafusion.io", false], [12, "module-datafusion.object_store", false], [13, "module-datafusion.plan", false], [14, "module-datafusion.record_batch", false], [15, "module-datafusion.substrait", false], [16, "module-datafusion.unparser", false], [17, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.mysql", false]], "named_struct() (in module datafusion.functions)": [[5, "datafusion.functions.named_struct", false]], "names() (datafusion.catalog method)": [[7, "datafusion.Catalog.names", false]], "names() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.names", false]], "names() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.names", false]], "nanvl() (in module datafusion.functions)": [[5, "datafusion.functions.nanvl", false]], "negative (in module datafusion.expr)": [[4, "datafusion.expr.Negative", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.next", false]], "next() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.next", false]], "not (in module datafusion.expr)": [[4, "datafusion.expr.Not", false]], "now() (in module datafusion.functions)": [[5, "datafusion.functions.now", false]], "nth_value() (in module datafusion.functions)": [[5, "datafusion.functions.nth_value", false]], "ntile() (in module datafusion.functions)": [[5, "datafusion.functions.ntile", false]], "null_treatment() (datafusion.expr method)": [[7, "datafusion.Expr.null_treatment", false]], "null_treatment() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.null_treatment", false]], "nullif() (in module datafusion.functions)": [[5, "datafusion.functions.nullif", false]], "nulls_first() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.nulls_first", false]], "nvl() (in module datafusion.functions)": [[5, "datafusion.functions.nvl", false]], "octet_length() (datafusion.expr method)": [[7, "datafusion.Expr.octet_length", false]], "octet_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.octet_length", false]], "octet_length() (in module datafusion.functions)": [[5, "datafusion.functions.octet_length", false]], "operatefunctionarg (in module datafusion.expr)": [[4, "datafusion.expr.OperateFunctionArg", false]], "optimized_logical_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.optimized_logical_plan", false]], "options_internal (datafusion.context.sqloptions attribute)": [[1, "datafusion.context.SQLOptions.options_internal", false]], "options_internal (datafusion.sqloptions attribute)": [[7, "datafusion.SQLOptions.options_internal", false]], "order_by() (datafusion.expr method)": [[7, "datafusion.Expr.order_by", false]], "order_by() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.order_by", false]], "order_by() (in module datafusion.functions)": [[5, "datafusion.functions.order_by", false]], "otherwise() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.otherwise", false]], "over() (datafusion.expr method)": [[7, "datafusion.Expr.over", false]], "over() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.over", false]], "overlay() (in module datafusion.functions)": [[5, "datafusion.functions.overlay", false]], "owner_name() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.owner_name", false]], "parquetcolumnoptions (class in datafusion)": [[7, "datafusion.ParquetColumnOptions", false]], "parquetcolumnoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.ParquetColumnOptions", false]], "parquetwriteroptions (class in datafusion)": [[7, "datafusion.ParquetWriterOptions", false]], "parquetwriteroptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.ParquetWriterOptions", false]], "partition_by() (datafusion.expr method)": [[7, "datafusion.Expr.partition_by", false]], "partition_by() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.partition_by", false]], "partition_count (datafusion.executionplan property)": [[7, "datafusion.ExecutionPlan.partition_count", false]], "partition_count (datafusion.plan.executionplan property)": [[13, "datafusion.plan.ExecutionPlan.partition_count", false]], "partitioning (in module datafusion.expr)": [[4, "datafusion.expr.Partitioning", false]], "percent_rank() (in module datafusion.functions)": [[5, "datafusion.functions.percent_rank", false]], "pi() (in module datafusion.functions)": [[5, "datafusion.functions.pi", false]], "placeholder (in module datafusion.expr)": [[4, "datafusion.expr.Placeholder", false]], "plan (class in datafusion.substrait)": [[15, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[15, "datafusion.substrait.Plan.plan_internal", false]], "plan_to_sql() (datafusion.unparser.unparser method)": [[16, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.postgres", false]], "pow() (in module datafusion.functions)": [[5, "datafusion.functions.pow", false]], "power() (in module datafusion.functions)": [[5, "datafusion.functions.power", false]], "prepare (in module datafusion.expr)": [[4, "datafusion.expr.Prepare", false]], "producer (class in datafusion.substrait)": [[15, "datafusion.substrait.Producer", false]], "projection (in module datafusion.expr)": [[4, "datafusion.expr.Projection", false]], "python_value() (datafusion.expr method)": [[7, "datafusion.Expr.python_value", false]], "python_value() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.python_value", false]], "radians() (datafusion.expr method)": [[7, "datafusion.Expr.radians", false]], "radians() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.radians", false]], "radians() (in module datafusion.functions)": [[5, "datafusion.functions.radians", false]], "random() (in module datafusion.functions)": [[5, "datafusion.functions.random", false]], "range() (in module datafusion.functions)": [[5, "datafusion.functions.range", false]], "rank() (in module datafusion.functions)": [[5, "datafusion.functions.rank", false]], "raw_sort (datafusion.expr.sortexpr attribute)": [[4, "datafusion.expr.SortExpr.raw_sort", false]], "rbs (datafusion.record_batch.recordbatchstream attribute)": [[14, "datafusion.record_batch.RecordBatchStream.rbs", false]], "rbs (datafusion.recordbatchstream attribute)": [[7, "datafusion.RecordBatchStream.rbs", false]], "read_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_avro", false]], "read_avro() (in module datafusion)": [[7, "datafusion.read_avro", false]], "read_avro() (in module datafusion.io)": [[11, "datafusion.io.read_avro", false]], "read_csv() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_csv", false]], "read_csv() (in module datafusion)": [[7, "datafusion.read_csv", false]], "read_csv() (in module datafusion.io)": [[11, "datafusion.io.read_csv", false]], "read_json() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_json", false]], "read_json() (in module datafusion)": [[7, "datafusion.read_json", false]], "read_json() (in module datafusion.io)": [[11, "datafusion.io.read_json", false]], "read_parquet() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_parquet", false]], "read_parquet() (in module datafusion)": [[7, "datafusion.read_parquet", false]], "read_parquet() (in module datafusion.io)": [[11, "datafusion.io.read_parquet", false]], "read_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_table", false]], "record_batch (datafusion.record_batch.recordbatch attribute)": [[14, "datafusion.record_batch.RecordBatch.record_batch", false]], "record_batch (datafusion.recordbatch attribute)": [[7, "datafusion.RecordBatch.record_batch", false]], "recordbatch (class in datafusion)": [[7, "datafusion.RecordBatch", false]], "recordbatch (class in datafusion.record_batch)": [[14, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[7, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[14, "datafusion.record_batch.RecordBatchStream", false]], "recursivequery (in module datafusion.expr)": [[4, "datafusion.expr.RecursiveQuery", false]], "regexp_count() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_count", false]], "regexp_like() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_like", false]], "regexp_match() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_match", false]], "regexp_replace() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_replace", false]], "register_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_avro", false]], "register_catalog_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider", false]], "register_csv() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_csv", false]], "register_dataset() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_dataset", false]], "register_formatter() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.register_formatter", false]], "register_json() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_json", false]], "register_listing_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_listing_table", false]], "register_object_store() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_object_store", false]], "register_parquet() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_parquet", false]], "register_record_batches() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_record_batches", false]], "register_schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.register_schema", false]], "register_schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.register_schema", false]], "register_schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.register_schema", false]], "register_table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.register_table", false]], "register_table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.register_table", false]], "register_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_table", false]], "register_table_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_table_provider", false]], "register_udaf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udaf", false]], "register_udf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udf", false]], "register_udtf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udtf", false]], "register_udwf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udwf", false]], "register_view() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_view", false]], "regr_avgx() (in module datafusion.functions)": [[5, "datafusion.functions.regr_avgx", false]], "regr_avgy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_avgy", false]], "regr_count() (in module datafusion.functions)": [[5, "datafusion.functions.regr_count", false]], "regr_intercept() (in module datafusion.functions)": [[5, "datafusion.functions.regr_intercept", false]], "regr_r2() (in module datafusion.functions)": [[5, "datafusion.functions.regr_r2", false]], "regr_slope() (in module datafusion.functions)": [[5, "datafusion.functions.regr_slope", false]], "regr_sxx() (in module datafusion.functions)": [[5, "datafusion.functions.regr_sxx", false]], "regr_sxy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_sxy", false]], "regr_syy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_syy", false]], "repartition (in module datafusion.expr)": [[4, "datafusion.expr.Repartition", false]], "repartition() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.repartition", false]], "repartition_by_hash() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.repartition_by_hash", false]], "repeat() (in module datafusion.functions)": [[5, "datafusion.functions.repeat", false]], "replace() (in module datafusion.functions)": [[5, "datafusion.functions.replace", false]], "repr_rows (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.repr_rows", false]], "reset_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.reset_formatter", false]], "reverse() (datafusion.expr method)": [[7, "datafusion.Expr.reverse", false]], "reverse() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.reverse", false]], "reverse() (in module datafusion.functions)": [[5, "datafusion.functions.reverse", false]], "rex_call_operands() (datafusion.expr method)": [[7, "datafusion.Expr.rex_call_operands", false]], "rex_call_operands() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_call_operands", false]], "rex_call_operator() (datafusion.expr method)": [[7, "datafusion.Expr.rex_call_operator", false]], "rex_call_operator() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_call_operator", false]], "rex_type() (datafusion.expr method)": [[7, "datafusion.Expr.rex_type", false]], "rex_type() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_type", false]], "right() (in module datafusion.functions)": [[5, "datafusion.functions.right", false]], "round() (in module datafusion.functions)": [[5, "datafusion.functions.round", false]], "row_number() (in module datafusion.functions)": [[5, "datafusion.functions.row_number", false]], "rpad() (in module datafusion.functions)": [[5, "datafusion.functions.rpad", false]], "rtrim() (datafusion.expr method)": [[7, "datafusion.Expr.rtrim", false]], "rtrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rtrim", false]], "rtrim() (in module datafusion.functions)": [[5, "datafusion.functions.rtrim", false]], "runtimeconfig (class in datafusion.context)": [[1, "datafusion.context.RuntimeConfig", false]], "runtimeenvbuilder (class in datafusion)": [[7, "datafusion.RuntimeEnvBuilder", false]], "runtimeenvbuilder (class in datafusion.context)": [[1, "datafusion.context.RuntimeEnvBuilder", false]], "scalarsubquery (in module datafusion.expr)": [[4, "datafusion.expr.ScalarSubquery", false]], "scalarudf (class in datafusion)": [[7, "datafusion.ScalarUDF", false]], "scalarudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.ScalarUDF", false]], "scalarudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.ScalarUDFExportable", false]], "scalarvariable (in module datafusion.expr)": [[4, "datafusion.expr.ScalarVariable", false]], "schema (class in datafusion.catalog)": [[0, "datafusion.catalog.Schema", false]], "schema (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.schema", false]], "schema (datafusion.table property)": [[7, "datafusion.Table.schema", false]], "schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.schema", false]], "schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.schema", false]], "schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.schema", false]], "schema() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.schema", false]], "schema_name() (datafusion.expr method)": [[7, "datafusion.Expr.schema_name", false]], "schema_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.schema_name", false]], "schema_names() (datafusion.catalog method)": [[7, "datafusion.Catalog.schema_names", false]], "schema_names() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.schema_names", false]], "schema_names() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.schema_names", false]], "schemaprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.SchemaProvider", false]], "select() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select", false]], "select_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_columns", false]], "serde (class in datafusion.substrait)": [[15, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize_to_plan", false]], "session_id() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.session_id", false]], "sessionconfig (class in datafusion)": [[7, "datafusion.SessionConfig", false]], "sessionconfig (class in datafusion.context)": [[1, "datafusion.context.SessionConfig", false]], "sessioncontext (class in datafusion.context)": [[1, "datafusion.context.SessionContext", false]], "set() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.set", false]], "set() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.set", false]], "set_custom_cell_builder() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.set_custom_cell_builder", false]], "set_custom_header_builder() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.set_custom_header_builder", false]], "set_formatter() (datafusion.dataframe_formatter.formattermanager class method)": [[3, "datafusion.dataframe_formatter.FormatterManager.set_formatter", false]], "set_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.set_formatter", false]], "setvariable (in module datafusion.expr)": [[4, "datafusion.expr.SetVariable", false]], "sha224() (datafusion.expr method)": [[7, "datafusion.Expr.sha224", false]], "sha224() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha224", false]], "sha224() (in module datafusion.functions)": [[5, "datafusion.functions.sha224", false]], "sha256() (datafusion.expr method)": [[7, "datafusion.Expr.sha256", false]], "sha256() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha256", false]], "sha256() (in module datafusion.functions)": [[5, "datafusion.functions.sha256", false]], "sha384() (datafusion.expr method)": [[7, "datafusion.Expr.sha384", false]], "sha384() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha384", false]], "sha384() (in module datafusion.functions)": [[5, "datafusion.functions.sha384", false]], "sha512() (datafusion.expr method)": [[7, "datafusion.Expr.sha512", false]], "sha512() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha512", false]], "sha512() (in module datafusion.functions)": [[5, "datafusion.functions.sha512", false]], "show() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.show", false]], "show_truncation_message (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.show_truncation_message", false]], "signum() (datafusion.expr method)": [[7, "datafusion.Expr.signum", false]], "signum() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.signum", false]], "signum() (in module datafusion.functions)": [[5, "datafusion.functions.signum", false]], "similarto (in module datafusion.expr)": [[4, "datafusion.expr.SimilarTo", false]], "sin() (datafusion.expr method)": [[7, "datafusion.Expr.sin", false]], "sin() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sin", false]], "sin() (in module datafusion.functions)": [[5, "datafusion.functions.sin", false]], "sinh() (datafusion.expr method)": [[7, "datafusion.Expr.sinh", false]], "sinh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sinh", false]], "sinh() (in module datafusion.functions)": [[5, "datafusion.functions.sinh", false]], "skip_arrow_metadata (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.skip_arrow_metadata", false], [2, "id22", false]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", false], [7, "id23", false]], "snappy (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.SNAPPY", false]], "sort (in module datafusion.expr)": [[4, "datafusion.expr.Sort", false]], "sort() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.sort", false]], "sort() (datafusion.expr method)": [[7, "datafusion.Expr.sort", false]], "sort() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sort", false]], "sortexpr (class in datafusion.expr)": [[4, "datafusion.expr.SortExpr", false]], "split_part() (in module datafusion.functions)": [[5, "datafusion.functions.split_part", false]], "sql() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.sql", false]], "sql_with_options() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.sql_with_options", false]], "sqlite() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.sqlite", false]], "sqloptions (class in datafusion)": [[7, "datafusion.SQLOptions", false]], "sqloptions (class in datafusion.context)": [[1, "datafusion.context.SQLOptions", false]], "sqrt() (datafusion.expr method)": [[7, "datafusion.Expr.sqrt", false]], "sqrt() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sqrt", false]], "sqrt() (in module datafusion.functions)": [[5, "datafusion.functions.sqrt", false]], "stable (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Stable", false]], "starts_with() (in module datafusion.functions)": [[5, "datafusion.functions.starts_with", false]], "state() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.state", false]], "state() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.state", false]], "statistics_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.statistics_enabled", false], [2, "id6", false]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false], [2, "id23", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false], [7, "id7", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false], [7, "id24", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false], [2, "id24", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", false], [7, "id25", false]], "stddev() (in module datafusion.functions)": [[5, "datafusion.functions.stddev", false]], "stddev_pop() (in module datafusion.functions)": [[5, "datafusion.functions.stddev_pop", false]], "stddev_samp() (in module datafusion.functions)": [[5, "datafusion.functions.stddev_samp", false]], "string_agg() (in module datafusion.functions)": [[5, "datafusion.functions.string_agg", false]], "string_literal() (datafusion.expr static method)": [[7, "datafusion.Expr.string_literal", false]], "string_literal() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.string_literal", false]], "strpos() (in module datafusion.functions)": [[5, "datafusion.functions.strpos", false]], "struct() (in module datafusion.functions)": [[5, "datafusion.functions.struct", false]], "style_provider (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.style_provider", false]], "styleprovider (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.StyleProvider", false]], "subquery (in module datafusion.expr)": [[4, "datafusion.expr.Subquery", false]], "subqueryalias (in module datafusion.expr)": [[4, "datafusion.expr.SubqueryAlias", false]], "substr() (in module datafusion.functions)": [[5, "datafusion.functions.substr", false]], "substr_index() (in module datafusion.functions)": [[5, "datafusion.functions.substr_index", false]], "substring() (in module datafusion.functions)": [[5, "datafusion.functions.substring", false]], "sum() (in module datafusion.functions)": [[5, "datafusion.functions.sum", false]], "supports_bounded_execution() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.supports_bounded_execution", false]], "table (class in datafusion)": [[7, "datafusion.Table", false]], "table (class in datafusion.catalog)": [[0, "datafusion.catalog.Table", false]], "table (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.table", false]], "table (datafusion.table attribute)": [[7, "datafusion.Table.table", false]], "table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.table", false]], "table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table", false]], "table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table", false]], "table_exist() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table_exist", false]], "table_exist() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table_exist", false]], "table_names() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.table_names", false]], "table_names() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table_names", false]], "tablefunction (class in datafusion)": [[7, "datafusion.TableFunction", false]], "tablefunction (class in datafusion.user_defined)": [[17, "datafusion.user_defined.TableFunction", false]], "tableproviderexportable (class in datafusion.context)": [[1, "datafusion.context.TableProviderExportable", false]], "tablescan (in module datafusion.expr)": [[4, "datafusion.expr.TableScan", false]], "tail() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.tail", false]], "tan() (datafusion.expr method)": [[7, "datafusion.Expr.tan", false]], "tan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.tan", false]], "tan() (in module datafusion.functions)": [[5, "datafusion.functions.tan", false]], "tanh() (datafusion.expr method)": [[7, "datafusion.Expr.tanh", false]], "tanh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.tanh", false]], "tanh() (in module datafusion.functions)": [[5, "datafusion.functions.tanh", false]], "to_arrow_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_arrow_table", false]], "to_hex() (datafusion.expr method)": [[7, "datafusion.Expr.to_hex", false]], "to_hex() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.to_hex", false]], "to_hex() (in module datafusion.functions)": [[5, "datafusion.functions.to_hex", false]], "to_pandas() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pandas", false]], "to_polars() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_polars", false]], "to_proto() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.to_proto", false]], "to_proto() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[14, "datafusion.record_batch.RecordBatch.to_pyarrow", false]], "to_pyarrow() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.to_pyarrow", false]], "to_pydict() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pydict", false]], "to_pylist() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pylist", false]], "to_substrait_plan() (datafusion.substrait.producer static method)": [[15, "datafusion.substrait.Producer.to_substrait_plan", false]], "to_timestamp() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp", false]], "to_timestamp_micros() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_micros", false]], "to_timestamp_millis() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_millis", false]], "to_timestamp_nanos() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_nanos", false]], "to_timestamp_seconds() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_seconds", false]], "to_unixtime() (in module datafusion.functions)": [[5, "datafusion.functions.to_unixtime", false]], "to_variant() (datafusion.expr method)": [[7, "datafusion.Expr.to_variant", false]], "to_variant() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.to_variant", false]], "to_variant() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.to_variant", false]], "to_variant() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.to_variant", false]], "transactionaccessmode (in module datafusion.expr)": [[4, "datafusion.expr.TransactionAccessMode", false]], "transactionconclusion (in module datafusion.expr)": [[4, "datafusion.expr.TransactionConclusion", false]], "transactionend (in module datafusion.expr)": [[4, "datafusion.expr.TransactionEnd", false]], "transactionisolationlevel (in module datafusion.expr)": [[4, "datafusion.expr.TransactionIsolationLevel", false]], "transactionstart (in module datafusion.expr)": [[4, "datafusion.expr.TransactionStart", false]], "transform() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.transform", false]], "translate() (in module datafusion.functions)": [[5, "datafusion.functions.translate", false]], "trim() (datafusion.expr method)": [[7, "datafusion.Expr.trim", false]], "trim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.trim", false]], "trim() (in module datafusion.functions)": [[5, "datafusion.functions.trim", false]], "trunc() (in module datafusion.functions)": [[5, "datafusion.functions.trunc", false]], "trycast (in module datafusion.expr)": [[4, "datafusion.expr.TryCast", false]], "types() (datafusion.expr method)": [[7, "datafusion.Expr.types", false]], "types() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.types", false]], "udaf (in module datafusion)": [[7, "datafusion.udaf", false]], "udaf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[17, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[7, "datafusion.udf", false]], "udf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udf", false]], "udf() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[17, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion)": [[7, "datafusion.udtf", false]], "udtf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion)": [[7, "datafusion.udwf", false]], "udwf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF.udwf", false]], "udwf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.udwf", false]], "uncompressed (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.UNCOMPRESSED", false]], "union (in module datafusion.expr)": [[4, "datafusion.expr.Union", false]], "union() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.union", false]], "union_distinct() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.union_distinct", false]], "unnest (in module datafusion.expr)": [[4, "datafusion.expr.Unnest", false]], "unnest_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.unnest_columns", false]], "unnestexpr (in module datafusion.expr)": [[4, "datafusion.expr.UnnestExpr", false]], "unparser (class in datafusion.unparser)": [[16, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[16, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.update", false]], "update() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.update", false]], "upper() (datafusion.expr method)": [[7, "datafusion.Expr.upper", false]], "upper() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.upper", false]], "upper() (in module datafusion.functions)": [[5, "datafusion.functions.upper", false]], "use_shared_styles (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.use_shared_styles", false]], "uses_window_frame() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.uses_window_frame", false]], "uuid() (in module datafusion.functions)": [[5, "datafusion.functions.uuid", false]], "values (in module datafusion.expr)": [[4, "datafusion.expr.Values", false]], "var() (in module datafusion.functions)": [[5, "datafusion.functions.var", false]], "var_pop() (in module datafusion.functions)": [[5, "datafusion.functions.var_pop", false]], "var_samp() (in module datafusion.functions)": [[5, "datafusion.functions.var_samp", false]], "var_sample() (in module datafusion.functions)": [[5, "datafusion.functions.var_sample", false]], "variant_name() (datafusion.expr method)": [[7, "datafusion.Expr.variant_name", false]], "variant_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.variant_name", false]], "volatile (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[17, "datafusion.user_defined.Volatility", false]], "when() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.when", false]], "when() (in module datafusion.functions)": [[5, "datafusion.functions.when", false]], "window (class in datafusion.expr)": [[4, "datafusion.expr.Window", false]], "window() (in module datafusion.functions)": [[5, "datafusion.functions.window", false]], "window_frame (datafusion.expr.windowframe attribute)": [[4, "datafusion.expr.WindowFrame.window_frame", false]], "window_frame (datafusion.windowframe attribute)": [[7, "datafusion.WindowFrame.window_frame", false]], "window_frame() (datafusion.expr method)": [[7, "datafusion.Expr.window_frame", false]], "window_frame() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.window_frame", false]], "windowevaluator (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowEvaluator", false]], "windowexpr (in module datafusion.expr)": [[4, "datafusion.expr.WindowExpr", false]], "windowframe (class in datafusion)": [[7, "datafusion.WindowFrame", false]], "windowframe (class in datafusion.expr)": [[4, "datafusion.expr.WindowFrame", false]], "windowframebound (class in datafusion.expr)": [[4, "datafusion.expr.WindowFrameBound", false]], "windowudf (class in datafusion)": [[7, "datafusion.WindowUDF", false]], "windowudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowUDF", false]], "windowudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowUDFExportable", false]], "with_allow_ddl() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_ddl", false]], "with_allow_ddl() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_ddl", false]], "with_allow_dml() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_dml", false]], "with_allow_dml() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_dml", false]], "with_allow_statements() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_statements", false]], "with_allow_statements() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_statements", false]], "with_batch_size() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_batch_size", false]], "with_batch_size() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_batch_size", false]], "with_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_column", false]], "with_column_renamed() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_column_renamed", false]], "with_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_columns", false]], "with_create_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_create_default_catalog_and_schema", false]], "with_create_default_catalog_and_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_create_default_catalog_and_schema", false]], "with_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_default_catalog_and_schema", false]], "with_default_catalog_and_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_default_catalog_and_schema", false]], "with_disk_manager_disabled() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_disabled", false]], "with_disk_manager_disabled() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_disabled", false]], "with_disk_manager_os() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_os", false]], "with_disk_manager_os() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_os", false]], "with_disk_manager_specified() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_specified", false]], "with_disk_manager_specified() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_specified", false]], "with_fair_spill_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_fair_spill_pool", false]], "with_fair_spill_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_fair_spill_pool", false]], "with_greedy_memory_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_greedy_memory_pool", false]], "with_greedy_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_greedy_memory_pool", false]], "with_information_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_information_schema", false]], "with_information_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_information_schema", false]], "with_parquet_pruning() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_parquet_pruning", false]], "with_parquet_pruning() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_parquet_pruning", false]], "with_pretty() (datafusion.unparser.unparser method)": [[16, "datafusion.unparser.Unparser.with_pretty", false]], "with_repartition_aggregations() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_aggregations", false]], "with_repartition_aggregations() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_aggregations", false]], "with_repartition_file_min_size() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_file_min_size", false]], "with_repartition_file_min_size() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_file_min_size", false]], "with_repartition_file_scans() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_file_scans", false]], "with_repartition_file_scans() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_file_scans", false]], "with_repartition_joins() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_joins", false]], "with_repartition_joins() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_joins", false]], "with_repartition_sorts() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_sorts", false]], "with_repartition_sorts() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_sorts", false]], "with_repartition_windows() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_windows", false]], "with_repartition_windows() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_windows", false]], "with_target_partitions() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_target_partitions", false]], "with_target_partitions() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_target_partitions", false]], "with_temp_file_path() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_temp_file_path", false]], "with_temp_file_path() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_temp_file_path", false]], "with_unbounded_memory_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "with_unbounded_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "write_batch_size (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.write_batch_size", false], [2, "id25", false]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", false], [7, "id26", false]], "write_csv() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_csv", false]], "write_json() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_json", false]], "write_parquet() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_parquet", false]], "write_parquet_with_options() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_parquet_with_options", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false], [2, "id26", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", false], [7, "id27", false]], "zstd (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.ZSTD", false]]}, "objects": {"": [[7, 0, 0, "-", "datafusion"]], "datafusion": [[7, 1, 1, "", "Accumulator"], [7, 1, 1, "", "AggregateUDF"], [7, 1, 1, "", "Catalog"], [7, 4, 1, "", "DFSchema"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "LogicalPlan"], [7, 1, 1, "", "ParquetColumnOptions"], [7, 1, 1, "", "ParquetWriterOptions"], [7, 1, 1, "", "RecordBatch"], [7, 1, 1, "", "RecordBatchStream"], [7, 1, 1, "", "RuntimeEnvBuilder"], [7, 1, 1, "", "SQLOptions"], [7, 1, 1, "", "ScalarUDF"], [7, 1, 1, "", "SessionConfig"], [7, 1, 1, "", "Table"], [7, 1, 1, "", "TableFunction"], [7, 1, 1, "", "WindowFrame"], [7, 1, 1, "", "WindowUDF"], [0, 0, 0, "-", "catalog"], [7, 4, 1, "", "col"], [7, 4, 1, "", "column"], [7, 6, 1, "", "configure_formatter"], [1, 0, 0, "-", "context"], [2, 0, 0, "-", "dataframe"], [3, 0, 0, "-", "dataframe_formatter"], [4, 0, 0, "-", "expr"], [5, 0, 0, "-", "functions"], [6, 0, 0, "-", "html_formatter"], [9, 0, 0, "-", "input"], [11, 0, 0, "-", "io"], [7, 6, 1, "", "lit"], [7, 6, 1, "", "literal"], [12, 0, 0, "-", "object_store"], [13, 0, 0, "-", "plan"], [7, 6, 1, "", "read_avro"], [7, 6, 1, "", "read_csv"], [7, 6, 1, "", "read_json"], [7, 6, 1, "", "read_parquet"], [14, 0, 0, "-", "record_batch"], [15, 0, 0, "-", "substrait"], [7, 4, 1, "", "udaf"], [7, 4, 1, "", "udf"], [7, 4, 1, "", "udtf"], [7, 4, 1, "", "udwf"], [16, 0, 0, "-", "unparser"], [17, 0, 0, "-", "user_defined"]], "datafusion.Accumulator": [[7, 2, 1, "", "evaluate"], [7, 2, 1, "", "merge"], [7, 2, 1, "", "state"], [7, 2, 1, "", "update"]], "datafusion.AggregateUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_udaf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udaf"]], "datafusion.Catalog": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "catalog"], [7, 2, 1, "", "database"], [7, 2, 1, "", "deregister_schema"], [7, 2, 1, "", "memory_catalog"], [7, 2, 1, "", "names"], [7, 2, 1, "", "register_schema"], [7, 2, 1, "", "schema"], [7, 2, 1, "", "schema_names"]], "datafusion.ExecutionPlan": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_raw_plan"], [7, 2, 1, "", "children"], [7, 2, 1, "", "display"], [7, 2, 1, "", "display_indent"], [7, 2, 1, "", "from_proto"], [7, 5, 1, "", "partition_count"], [7, 2, 1, "", "to_proto"]], "datafusion.Expr": [[7, 2, 1, "", "__add__"], [7, 2, 1, "", "__and__"], [7, 2, 1, "", "__eq__"], [7, 2, 1, "", "__ge__"], [7, 2, 1, "", "__getitem__"], [7, 2, 1, "", "__gt__"], [7, 2, 1, "", "__invert__"], [7, 2, 1, "", "__le__"], [7, 2, 1, "", "__lt__"], [7, 2, 1, "", "__mod__"], [7, 2, 1, "", "__mul__"], [7, 2, 1, "", "__ne__"], [7, 2, 1, "", "__or__"], [7, 3, 1, "", "__radd__"], [7, 3, 1, "", "__rand__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "__richcmp__"], [7, 3, 1, "", "__rmod__"], [7, 3, 1, "", "__rmul__"], [7, 3, 1, "", "__ror__"], [7, 3, 1, "", "__rsub__"], [7, 3, 1, "", "__rtruediv__"], [7, 2, 1, "", "__sub__"], [7, 2, 1, "", "__truediv__"], [7, 3, 1, "", "_to_pyarrow_types"], [7, 2, 1, "", "abs"], [7, 2, 1, "", "acos"], [7, 2, 1, "", "acosh"], [7, 2, 1, "", "alias"], [7, 2, 1, "", "array_dims"], [7, 2, 1, "", "array_distinct"], [7, 2, 1, "", "array_empty"], [7, 2, 1, "", "array_length"], [7, 2, 1, "", "array_ndims"], [7, 2, 1, "", "array_pop_back"], [7, 2, 1, "", "array_pop_front"], [7, 2, 1, "", "arrow_typeof"], [7, 2, 1, "", "ascii"], [7, 2, 1, "", "asin"], [7, 2, 1, "", "asinh"], [7, 2, 1, "", "atan"], [7, 2, 1, "", "atanh"], [7, 2, 1, "", "between"], [7, 2, 1, "", "bit_length"], [7, 2, 1, "", "btrim"], [7, 2, 1, "", "canonical_name"], [7, 2, 1, "", "cardinality"], [7, 2, 1, "", "cast"], [7, 2, 1, "", "cbrt"], [7, 2, 1, "", "ceil"], [7, 2, 1, "", "char_length"], [7, 2, 1, "", "character_length"], [7, 2, 1, "", "chr"], [7, 2, 1, "", "column"], [7, 2, 1, "", "column_name"], [7, 2, 1, "", "cos"], [7, 2, 1, "", "cosh"], [7, 2, 1, "", "cot"], [7, 2, 1, "", "degrees"], [7, 2, 1, "", "display_name"], [7, 2, 1, "", "distinct"], [7, 2, 1, "", "empty"], [7, 2, 1, "", "exp"], [7, 3, 1, "", "expr"], [7, 2, 1, "", "factorial"], [7, 2, 1, "", "fill_nan"], [7, 2, 1, "", "fill_null"], [7, 2, 1, "", "filter"], [7, 2, 1, "", "flatten"], [7, 2, 1, "", "floor"], [7, 2, 1, "", "from_unixtime"], [7, 2, 1, "", "initcap"], [7, 2, 1, "", "is_not_null"], [7, 2, 1, "", "is_null"], [7, 2, 1, "", "isnan"], [7, 2, 1, "", "iszero"], [7, 2, 1, "", "length"], [7, 2, 1, "", "list_dims"], [7, 2, 1, "", "list_distinct"], [7, 2, 1, "", "list_length"], [7, 2, 1, "", "list_ndims"], [7, 2, 1, "", "literal"], [7, 2, 1, "", "literal_with_metadata"], [7, 2, 1, "", "ln"], [7, 2, 1, "", "log10"], [7, 2, 1, "", "log2"], [7, 2, 1, "", "lower"], [7, 2, 1, "", "ltrim"], [7, 2, 1, "", "md5"], [7, 2, 1, "", "null_treatment"], [7, 2, 1, "", "octet_length"], [7, 2, 1, "", "order_by"], [7, 2, 1, "", "over"], [7, 2, 1, "", "partition_by"], [7, 2, 1, "", "python_value"], [7, 2, 1, "", "radians"], [7, 2, 1, "", "reverse"], [7, 2, 1, "", "rex_call_operands"], [7, 2, 1, "", "rex_call_operator"], [7, 2, 1, "", "rex_type"], [7, 2, 1, "", "rtrim"], [7, 2, 1, "", "schema_name"], [7, 2, 1, "", "sha224"], [7, 2, 1, "", "sha256"], [7, 2, 1, "", "sha384"], [7, 2, 1, "", "sha512"], [7, 2, 1, "", "signum"], [7, 2, 1, "", "sin"], [7, 2, 1, "", "sinh"], [7, 2, 1, "", "sort"], [7, 2, 1, "", "sqrt"], [7, 2, 1, "", "string_literal"], [7, 2, 1, "", "tan"], [7, 2, 1, "", "tanh"], [7, 2, 1, "", "to_hex"], [7, 2, 1, "", "to_variant"], [7, 2, 1, "", "trim"], [7, 2, 1, "", "types"], [7, 2, 1, "", "upper"], [7, 2, 1, "", "variant_name"], [7, 2, 1, "", "window_frame"]], "datafusion.LogicalPlan": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_raw_plan"], [7, 2, 1, "", "display"], [7, 2, 1, "", "display_graphviz"], [7, 2, 1, "", "display_indent"], [7, 2, 1, "", "display_indent_schema"], [7, 2, 1, "", "from_proto"], [7, 2, 1, "", "inputs"], [7, 2, 1, "", "to_proto"], [7, 2, 1, "", "to_variant"]], "datafusion.ParquetColumnOptions": [[7, 3, 1, "id0", "bloom_filter_enabled"], [7, 3, 1, "id2", "bloom_filter_fpp"], [7, 3, 1, "id3", "bloom_filter_ndv"], [7, 3, 1, "id4", "compression"], [7, 3, 1, "id5", "dictionary_enabled"], [7, 3, 1, "id6", "encoding"], [7, 3, 1, "id7", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "id8", "allow_single_file_parallelism"], [7, 3, 1, "id9", "bloom_filter_fpp"], [7, 3, 1, "id10", "bloom_filter_ndv"], [7, 3, 1, "id11", "bloom_filter_on_write"], [7, 3, 1, "id12", "column_index_truncate_length"], [7, 3, 1, "id13", "column_specific_options"], [7, 3, 1, "", "compression"], [7, 3, 1, "id14", "created_by"], [7, 3, 1, "id15", "data_page_row_count_limit"], [7, 3, 1, "id16", "data_pagesize_limit"], [7, 3, 1, "id17", "dictionary_enabled"], [7, 3, 1, "id18", "dictionary_page_size_limit"], [7, 3, 1, "id19", "encoding"], [7, 3, 1, "id20", "max_row_group_size"], [7, 3, 1, "id21", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "id22", "maximum_parallel_row_group_writers"], [7, 3, 1, "id23", "skip_arrow_metadata"], [7, 3, 1, "id24", "statistics_enabled"], [7, 3, 1, "id25", "statistics_truncate_length"], [7, 3, 1, "id26", "write_batch_size"], [7, 3, 1, "id27", "writer_version"]], "datafusion.RecordBatch": [[7, 3, 1, "", "record_batch"], [7, 2, 1, "", "to_pyarrow"]], "datafusion.RecordBatchStream": [[7, 2, 1, "", "__aiter__"], [7, 2, 1, "", "__anext__"], [7, 2, 1, "", "__iter__"], [7, 2, 1, "", "__next__"], [7, 2, 1, "", "next"], [7, 3, 1, "", "rbs"]], "datafusion.RuntimeEnvBuilder": [[7, 3, 1, "", "config_internal"], [7, 2, 1, "", "with_disk_manager_disabled"], [7, 2, 1, "", "with_disk_manager_os"], [7, 2, 1, "", "with_disk_manager_specified"], [7, 2, 1, "", "with_fair_spill_pool"], [7, 2, 1, "", "with_greedy_memory_pool"], [7, 2, 1, "", "with_temp_file_path"], [7, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.SQLOptions": [[7, 3, 1, "", "options_internal"], [7, 2, 1, "", "with_allow_ddl"], [7, 2, 1, "", "with_allow_dml"], [7, 2, 1, "", "with_allow_statements"]], "datafusion.ScalarUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_udf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udf"]], "datafusion.SessionConfig": [[7, 3, 1, "", "config_internal"], [7, 2, 1, "", "set"], [7, 2, 1, "", "with_batch_size"], [7, 2, 1, "", "with_create_default_catalog_and_schema"], [7, 2, 1, "", "with_default_catalog_and_schema"], [7, 2, 1, "", "with_information_schema"], [7, 2, 1, "", "with_parquet_pruning"], [7, 2, 1, "", "with_repartition_aggregations"], [7, 2, 1, "", "with_repartition_file_min_size"], [7, 2, 1, "", "with_repartition_file_scans"], [7, 2, 1, "", "with_repartition_joins"], [7, 2, 1, "", "with_repartition_sorts"], [7, 2, 1, "", "with_repartition_windows"], [7, 2, 1, "", "with_target_partitions"]], "datafusion.Table": [[7, 2, 1, "", "__repr__"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"], [7, 3, 1, "", "table"]], "datafusion.TableFunction": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "_create_table_udf"], [7, 2, 1, "", "_create_table_udf_decorator"], [7, 3, 1, "", "_udtf"], [7, 2, 1, "", "udtf"]], "datafusion.WindowFrame": [[7, 2, 1, "", "__repr__"], [7, 2, 1, "", "get_frame_units"], [7, 2, 1, "", "get_lower_bound"], [7, 2, 1, "", "get_upper_bound"], [7, 3, 1, "", "window_frame"]], "datafusion.WindowUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "_create_window_udf"], [7, 2, 1, "", "_create_window_udf_decorator"], [7, 2, 1, "", "_get_default_name"], [7, 2, 1, "", "_normalize_input_types"], [7, 3, 1, "", "_udwf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udwf"]], "datafusion.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "CatalogProvider"], [0, 1, 1, "", "Schema"], [0, 1, 1, "", "SchemaProvider"], [0, 1, 1, "", "Table"]], "datafusion.catalog.Catalog": [[0, 2, 1, "", "__repr__"], [0, 3, 1, "", "catalog"], [0, 2, 1, "", "database"], [0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "memory_catalog"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.CatalogProvider": [[0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.Schema": [[0, 2, 1, "", "__repr__"], [0, 3, 1, "", "_raw_schema"], [0, 2, 1, "", "deregister_table"], [0, 2, 1, "", "memory_schema"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_table"], [0, 2, 1, "", "table"], [0, 2, 1, "", "table_names"]], "datafusion.catalog.SchemaProvider": [[0, 2, 1, "", "deregister_table"], [0, 2, 1, "", "owner_name"], [0, 2, 1, "", "register_table"], [0, 2, 1, "", "table"], [0, 2, 1, "", "table_exist"], [0, 2, 1, "", "table_names"]], "datafusion.catalog.Table": [[0, 2, 1, "", "__repr__"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"], [0, 3, 1, "", "table"]], "datafusion.context": [[1, 1, 1, "", "ArrowArrayExportable"], [1, 1, 1, "", "ArrowStreamExportable"], [1, 1, 1, "", "CatalogProviderExportable"], [1, 1, 1, "", "RuntimeConfig"], [1, 1, 1, "", "RuntimeEnvBuilder"], [1, 1, 1, "", "SQLOptions"], [1, 1, 1, "", "SessionConfig"], [1, 1, 1, "", "SessionContext"], [1, 1, 1, "", "TableProviderExportable"]], "datafusion.context.ArrowArrayExportable": [[1, 2, 1, "", "__arrow_c_array__"]], "datafusion.context.ArrowStreamExportable": [[1, 2, 1, "", "__arrow_c_stream__"]], "datafusion.context.CatalogProviderExportable": [[1, 2, 1, "", "__datafusion_catalog_provider__"]], "datafusion.context.RuntimeEnvBuilder": [[1, 3, 1, "", "config_internal"], [1, 2, 1, "", "with_disk_manager_disabled"], [1, 2, 1, "", "with_disk_manager_os"], [1, 2, 1, "", "with_disk_manager_specified"], [1, 2, 1, "", "with_fair_spill_pool"], [1, 2, 1, "", "with_greedy_memory_pool"], [1, 2, 1, "", "with_temp_file_path"], [1, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.context.SQLOptions": [[1, 3, 1, "", "options_internal"], [1, 2, 1, "", "with_allow_ddl"], [1, 2, 1, "", "with_allow_dml"], [1, 2, 1, "", "with_allow_statements"]], "datafusion.context.SessionConfig": [[1, 3, 1, "", "config_internal"], [1, 2, 1, "", "set"], [1, 2, 1, "", "with_batch_size"], [1, 2, 1, "", "with_create_default_catalog_and_schema"], [1, 2, 1, "", "with_default_catalog_and_schema"], [1, 2, 1, "", "with_information_schema"], [1, 2, 1, "", "with_parquet_pruning"], [1, 2, 1, "", "with_repartition_aggregations"], [1, 2, 1, "", "with_repartition_file_min_size"], [1, 2, 1, "", "with_repartition_file_scans"], [1, 2, 1, "", "with_repartition_joins"], [1, 2, 1, "", "with_repartition_sorts"], [1, 2, 1, "", "with_repartition_windows"], [1, 2, 1, "", "with_target_partitions"]], "datafusion.context.SessionContext": [[1, 2, 1, "", "__repr__"], [1, 2, 1, "", "_convert_table_partition_cols"], [1, 2, 1, "", "catalog"], [1, 2, 1, "", "catalog_names"], [1, 2, 1, "", "create_dataframe"], [1, 2, 1, "", "create_dataframe_from_logical_plan"], [1, 3, 1, "", "ctx"], [1, 2, 1, "", "deregister_table"], [1, 2, 1, "", "empty_table"], [1, 2, 1, "", "enable_url_table"], [1, 2, 1, "", "execute"], [1, 2, 1, "", "from_arrow"], [1, 2, 1, "", "from_arrow_table"], [1, 2, 1, "", "from_pandas"], [1, 2, 1, "", "from_polars"], [1, 2, 1, "", "from_pydict"], [1, 2, 1, "", "from_pylist"], [1, 2, 1, "", "global_ctx"], [1, 2, 1, "", "read_avro"], [1, 2, 1, "", "read_csv"], [1, 2, 1, "", "read_json"], [1, 2, 1, "", "read_parquet"], [1, 2, 1, "", "read_table"], [1, 2, 1, "", "register_avro"], [1, 2, 1, "", "register_catalog_provider"], [1, 2, 1, "", "register_csv"], [1, 2, 1, "", "register_dataset"], [1, 2, 1, "", "register_json"], [1, 2, 1, "", "register_listing_table"], [1, 2, 1, "", "register_object_store"], [1, 2, 1, "", "register_parquet"], [1, 2, 1, "", "register_record_batches"], [1, 2, 1, "", "register_table"], [1, 2, 1, "", "register_table_provider"], [1, 2, 1, "", "register_udaf"], [1, 2, 1, "", "register_udf"], [1, 2, 1, "", "register_udtf"], [1, 2, 1, "", "register_udwf"], [1, 2, 1, "", "register_view"], [1, 2, 1, "", "session_id"], [1, 2, 1, "", "sql"], [1, 2, 1, "", "sql_with_options"], [1, 2, 1, "", "table"], [1, 2, 1, "", "table_exist"]], "datafusion.context.TableProviderExportable": [[1, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[2, 1, 1, "", "Compression"], [2, 1, 1, "", "DataFrame"], [2, 1, 1, "", "ParquetColumnOptions"], [2, 1, 1, "", "ParquetWriterOptions"]], "datafusion.dataframe.Compression": [[2, 3, 1, "", "BROTLI"], [2, 3, 1, "", "GZIP"], [2, 3, 1, "", "LZ4"], [2, 3, 1, "", "LZ4_RAW"], [2, 3, 1, "", "SNAPPY"], [2, 3, 1, "", "UNCOMPRESSED"], [2, 3, 1, "", "ZSTD"], [2, 2, 1, "", "from_str"], [2, 2, 1, "", "get_default_level"]], "datafusion.dataframe.DataFrame": [[2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__repr__"], [2, 2, 1, "", "_repr_html_"], [2, 2, 1, "", "aggregate"], [2, 2, 1, "", "cache"], [2, 2, 1, "", "cast"], [2, 2, 1, "", "collect"], [2, 2, 1, "", "collect_partitioned"], [2, 2, 1, "", "count"], [2, 2, 1, "", "default_str_repr"], [2, 2, 1, "", "describe"], [2, 3, 1, "", "df"], [2, 2, 1, "", "distinct"], [2, 2, 1, "", "drop"], [2, 2, 1, "", "except_all"], [2, 2, 1, "", "execute_stream"], [2, 2, 1, "", "execute_stream_partitioned"], [2, 2, 1, "", "execution_plan"], [2, 2, 1, "", "explain"], [2, 2, 1, "", "fill_null"], [2, 2, 1, "", "filter"], [2, 2, 1, "", "head"], [2, 2, 1, "", "intersect"], [2, 2, 1, "", "into_view"], [2, 2, 1, "", "join"], [2, 2, 1, "", "join_on"], [2, 2, 1, "", "limit"], [2, 2, 1, "", "logical_plan"], [2, 2, 1, "", "optimized_logical_plan"], [2, 2, 1, "", "repartition"], [2, 2, 1, "", "repartition_by_hash"], [2, 2, 1, "", "schema"], [2, 2, 1, "", "select"], [2, 2, 1, "", "select_columns"], [2, 2, 1, "", "show"], [2, 2, 1, "", "sort"], [2, 2, 1, "", "tail"], [2, 2, 1, "", "to_arrow_table"], [2, 2, 1, "", "to_pandas"], [2, 2, 1, "", "to_polars"], [2, 2, 1, "", "to_pydict"], [2, 2, 1, "", "to_pylist"], [2, 2, 1, "", "transform"], [2, 2, 1, "", "union"], [2, 2, 1, "", "union_distinct"], [2, 2, 1, "", "unnest_columns"], [2, 2, 1, "", "with_column"], [2, 2, 1, "", "with_column_renamed"], [2, 2, 1, "", "with_columns"], [2, 2, 1, "", "write_csv"], [2, 2, 1, "", "write_json"], [2, 2, 1, "", "write_parquet"], [2, 2, 1, "", "write_parquet_with_options"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "id0", "bloom_filter_enabled"], [2, 3, 1, "id1", "bloom_filter_fpp"], [2, 3, 1, "id2", "bloom_filter_ndv"], [2, 3, 1, "id3", "compression"], [2, 3, 1, "id4", "dictionary_enabled"], [2, 3, 1, "id5", "encoding"], [2, 3, 1, "id6", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "id7", "allow_single_file_parallelism"], [2, 3, 1, "id8", "bloom_filter_fpp"], [2, 3, 1, "id9", "bloom_filter_ndv"], [2, 3, 1, "id10", "bloom_filter_on_write"], [2, 3, 1, "id11", "column_index_truncate_length"], [2, 3, 1, "id12", "column_specific_options"], [2, 3, 1, "", "compression"], [2, 3, 1, "id13", "created_by"], [2, 3, 1, "id14", "data_page_row_count_limit"], [2, 3, 1, "id15", "data_pagesize_limit"], [2, 3, 1, "id16", "dictionary_enabled"], [2, 3, 1, "id17", "dictionary_page_size_limit"], [2, 3, 1, "id18", "encoding"], [2, 3, 1, "id19", "max_row_group_size"], [2, 3, 1, "id20", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "id21", "maximum_parallel_row_group_writers"], [2, 3, 1, "id22", "skip_arrow_metadata"], [2, 3, 1, "id23", "statistics_enabled"], [2, 3, 1, "id24", "statistics_truncate_length"], [2, 3, 1, "id25", "write_batch_size"], [2, 3, 1, "id26", "writer_version"]], "datafusion.dataframe_formatter": [[3, 1, 1, "", "CellFormatter"], [3, 1, 1, "", "DataFrameHtmlFormatter"], [3, 1, 1, "", "DefaultStyleProvider"], [3, 1, 1, "", "FormatterManager"], [3, 1, 1, "", "StyleProvider"], [3, 6, 1, "", "_refresh_formatter_reference"], [3, 6, 1, "", "_validate_bool"], [3, 6, 1, "", "_validate_positive_int"], [3, 6, 1, "", "configure_formatter"], [3, 6, 1, "", "get_formatter"], [3, 6, 1, "", "reset_formatter"], [3, 6, 1, "", "set_formatter"]], "datafusion.dataframe_formatter.CellFormatter": [[3, 2, 1, "", "__call__"]], "datafusion.dataframe_formatter.DataFrameHtmlFormatter": [[3, 2, 1, "", "_build_expandable_cell"], [3, 2, 1, "", "_build_html_footer"], [3, 2, 1, "", "_build_html_header"], [3, 2, 1, "", "_build_regular_cell"], [3, 2, 1, "", "_build_table_body"], [3, 2, 1, "", "_build_table_container_start"], [3, 2, 1, "", "_build_table_header"], [3, 3, 1, "", "_custom_cell_builder"], [3, 3, 1, "", "_custom_header_builder"], [3, 2, 1, "", "_format_cell_value"], [3, 2, 1, "", "_get_cell_value"], [3, 2, 1, "", "_get_default_css"], [3, 2, 1, "", "_get_javascript"], [3, 3, 1, "", "_type_formatters"], [3, 3, 1, "", "custom_css"], [3, 3, 1, "", "enable_cell_expansion"], [3, 2, 1, "", "format_html"], [3, 2, 1, "", "format_str"], [3, 3, 1, "", "max_cell_length"], [3, 3, 1, "", "max_height"], [3, 3, 1, "", "max_memory_bytes"], [3, 3, 1, "", "max_width"], [3, 3, 1, "", "min_rows_display"], [3, 2, 1, "", "register_formatter"], [3, 3, 1, "", "repr_rows"], [3, 2, 1, "", "set_custom_cell_builder"], [3, 2, 1, "", "set_custom_header_builder"], [3, 3, 1, "", "show_truncation_message"], [3, 3, 1, "", "style_provider"], [3, 3, 1, "", "use_shared_styles"]], "datafusion.dataframe_formatter.DefaultStyleProvider": [[3, 2, 1, "", "get_cell_style"], [3, 2, 1, "", "get_header_style"]], "datafusion.dataframe_formatter.FormatterManager": [[3, 3, 1, "", "_default_formatter"], [3, 2, 1, "", "get_formatter"], [3, 2, 1, "", "set_formatter"]], "datafusion.dataframe_formatter.StyleProvider": [[3, 2, 1, "", "get_cell_style"], [3, 2, 1, "", "get_header_style"]], "datafusion.expr": [[4, 4, 1, "", "Aggregate"], [4, 4, 1, "", "AggregateFunction"], [4, 4, 1, "", "Alias"], [4, 4, 1, "", "Analyze"], [4, 4, 1, "", "Between"], [4, 4, 1, "", "BinaryExpr"], [4, 4, 1, "", "Case"], [4, 1, 1, "", "CaseBuilder"], [4, 4, 1, "", "Cast"], [4, 4, 1, "", "Column"], [4, 4, 1, "", "CopyTo"], [4, 4, 1, "", "CreateCatalog"], [4, 4, 1, "", "CreateCatalogSchema"], [4, 4, 1, "", "CreateExternalTable"], [4, 4, 1, "", "CreateFunction"], [4, 4, 1, "", "CreateFunctionBody"], [4, 4, 1, "", "CreateIndex"], [4, 4, 1, "", "CreateMemoryTable"], [4, 4, 1, "", "CreateView"], [4, 4, 1, "", "Deallocate"], [4, 4, 1, "", "DescribeTable"], [4, 4, 1, "", "Distinct"], [4, 4, 1, "", "DmlStatement"], [4, 4, 1, "", "DropCatalogSchema"], [4, 4, 1, "", "DropFunction"], [4, 4, 1, "", "DropTable"], [4, 4, 1, "", "DropView"], [4, 4, 1, "", "EmptyRelation"], [4, 4, 1, "", "Execute"], [4, 4, 1, "", "Exists"], [4, 4, 1, "", "Explain"], [4, 1, 1, "", "Expr"], [4, 4, 1, "", "Extension"], [4, 4, 1, "", "FileType"], [4, 4, 1, "", "Filter"], [4, 4, 1, "", "GroupingSet"], [4, 4, 1, "", "ILike"], [4, 4, 1, "", "InList"], [4, 4, 1, "", "InSubquery"], [4, 4, 1, "", "IsFalse"], [4, 4, 1, "", "IsNotFalse"], [4, 4, 1, "", "IsNotNull"], [4, 4, 1, "", "IsNotTrue"], [4, 4, 1, "", "IsNotUnknown"], [4, 4, 1, "", "IsNull"], [4, 4, 1, "", "IsTrue"], [4, 4, 1, "", "IsUnknown"], [4, 4, 1, "", "Join"], [4, 4, 1, "", "JoinConstraint"], [4, 4, 1, "", "JoinType"], [4, 4, 1, "", "Like"], [4, 4, 1, "", "Limit"], [4, 4, 1, "", "Literal"], [4, 4, 1, "", "Negative"], [4, 4, 1, "", "Not"], [4, 4, 1, "", "OperateFunctionArg"], [4, 4, 1, "", "Partitioning"], [4, 4, 1, "", "Placeholder"], [4, 4, 1, "", "Prepare"], [4, 4, 1, "", "Projection"], [4, 4, 1, "", "RecursiveQuery"], [4, 4, 1, "", "Repartition"], [4, 4, 1, "", "ScalarSubquery"], [4, 4, 1, "", "ScalarVariable"], [4, 4, 1, "", "SetVariable"], [4, 4, 1, "", "SimilarTo"], [4, 4, 1, "", "Sort"], [4, 1, 1, "", "SortExpr"], [4, 4, 1, "", "Subquery"], [4, 4, 1, "", "SubqueryAlias"], [4, 4, 1, "", "TableScan"], [4, 4, 1, "", "TransactionAccessMode"], [4, 4, 1, "", "TransactionConclusion"], [4, 4, 1, "", "TransactionEnd"], [4, 4, 1, "", "TransactionIsolationLevel"], [4, 4, 1, "", "TransactionStart"], [4, 4, 1, "", "TryCast"], [4, 4, 1, "", "Union"], [4, 4, 1, "", "Unnest"], [4, 4, 1, "", "UnnestExpr"], [4, 4, 1, "", "Values"], [4, 1, 1, "", "Window"], [4, 4, 1, "", "WindowExpr"], [4, 1, 1, "", "WindowFrame"], [4, 1, 1, "", "WindowFrameBound"]], "datafusion.expr.CaseBuilder": [[4, 3, 1, "", "case_builder"], [4, 2, 1, "", "end"], [4, 2, 1, "", "otherwise"], [4, 2, 1, "", "when"]], "datafusion.expr.Expr": [[4, 2, 1, "", "__add__"], [4, 2, 1, "", "__and__"], [4, 2, 1, "", "__eq__"], [4, 2, 1, "", "__ge__"], [4, 2, 1, "", "__getitem__"], [4, 2, 1, "", "__gt__"], [4, 2, 1, "", "__invert__"], [4, 2, 1, "", "__le__"], [4, 2, 1, "", "__lt__"], [4, 2, 1, "", "__mod__"], [4, 2, 1, "", "__mul__"], [4, 2, 1, "", "__ne__"], [4, 2, 1, "", "__or__"], [4, 3, 1, "", "__radd__"], [4, 3, 1, "", "__rand__"], [4, 2, 1, "", "__repr__"], [4, 2, 1, "", "__richcmp__"], [4, 3, 1, "", "__rmod__"], [4, 3, 1, "", "__rmul__"], [4, 3, 1, "", "__ror__"], [4, 3, 1, "", "__rsub__"], [4, 3, 1, "", "__rtruediv__"], [4, 2, 1, "", "__sub__"], [4, 2, 1, "", "__truediv__"], [4, 3, 1, "", "_to_pyarrow_types"], [4, 2, 1, "", "abs"], [4, 2, 1, "", "acos"], [4, 2, 1, "", "acosh"], [4, 2, 1, "", "alias"], [4, 2, 1, "", "array_dims"], [4, 2, 1, "", "array_distinct"], [4, 2, 1, "", "array_empty"], [4, 2, 1, "", "array_length"], [4, 2, 1, "", "array_ndims"], [4, 2, 1, "", "array_pop_back"], [4, 2, 1, "", "array_pop_front"], [4, 2, 1, "", "arrow_typeof"], [4, 2, 1, "", "ascii"], [4, 2, 1, "", "asin"], [4, 2, 1, "", "asinh"], [4, 2, 1, "", "atan"], [4, 2, 1, "", "atanh"], [4, 2, 1, "", "between"], [4, 2, 1, "", "bit_length"], [4, 2, 1, "", "btrim"], [4, 2, 1, "", "canonical_name"], [4, 2, 1, "", "cardinality"], [4, 2, 1, "", "cast"], [4, 2, 1, "", "cbrt"], [4, 2, 1, "", "ceil"], [4, 2, 1, "", "char_length"], [4, 2, 1, "", "character_length"], [4, 2, 1, "", "chr"], [4, 2, 1, "", "column"], [4, 2, 1, "", "column_name"], [4, 2, 1, "", "cos"], [4, 2, 1, "", "cosh"], [4, 2, 1, "", "cot"], [4, 2, 1, "", "degrees"], [4, 2, 1, "", "display_name"], [4, 2, 1, "", "distinct"], [4, 2, 1, "", "empty"], [4, 2, 1, "", "exp"], [4, 3, 1, "", "expr"], [4, 2, 1, "", "factorial"], [4, 2, 1, "", "fill_nan"], [4, 2, 1, "", "fill_null"], [4, 2, 1, "", "filter"], [4, 2, 1, "", "flatten"], [4, 2, 1, "", "floor"], [4, 2, 1, "", "from_unixtime"], [4, 2, 1, "", "initcap"], [4, 2, 1, "", "is_not_null"], [4, 2, 1, "", "is_null"], [4, 2, 1, "", "isnan"], [4, 2, 1, "", "iszero"], [4, 2, 1, "", "length"], [4, 2, 1, "", "list_dims"], [4, 2, 1, "", "list_distinct"], [4, 2, 1, "", "list_length"], [4, 2, 1, "", "list_ndims"], [4, 2, 1, "", "literal"], [4, 2, 1, "", "literal_with_metadata"], [4, 2, 1, "", "ln"], [4, 2, 1, "", "log10"], [4, 2, 1, "", "log2"], [4, 2, 1, "", "lower"], [4, 2, 1, "", "ltrim"], [4, 2, 1, "", "md5"], [4, 2, 1, "", "null_treatment"], [4, 2, 1, "", "octet_length"], [4, 2, 1, "", "order_by"], [4, 2, 1, "", "over"], [4, 2, 1, "", "partition_by"], [4, 2, 1, "", "python_value"], [4, 2, 1, "", "radians"], [4, 2, 1, "", "reverse"], [4, 2, 1, "", "rex_call_operands"], [4, 2, 1, "", "rex_call_operator"], [4, 2, 1, "", "rex_type"], [4, 2, 1, "", "rtrim"], [4, 2, 1, "", "schema_name"], [4, 2, 1, "", "sha224"], [4, 2, 1, "", "sha256"], [4, 2, 1, "", "sha384"], [4, 2, 1, "", "sha512"], [4, 2, 1, "", "signum"], [4, 2, 1, "", "sin"], [4, 2, 1, "", "sinh"], [4, 2, 1, "", "sort"], [4, 2, 1, "", "sqrt"], [4, 2, 1, "", "string_literal"], [4, 2, 1, "", "tan"], [4, 2, 1, "", "tanh"], [4, 2, 1, "", "to_hex"], [4, 2, 1, "", "to_variant"], [4, 2, 1, "", "trim"], [4, 2, 1, "", "types"], [4, 2, 1, "", "upper"], [4, 2, 1, "", "variant_name"], [4, 2, 1, "", "window_frame"]], "datafusion.expr.SortExpr": [[4, 2, 1, "", "__repr__"], [4, 2, 1, "", "ascending"], [4, 2, 1, "", "expr"], [4, 2, 1, "", "nulls_first"], [4, 3, 1, "", "raw_sort"]], "datafusion.expr.Window": [[4, 3, 1, "", "_null_treatment"], [4, 3, 1, "", "_order_by"], [4, 3, 1, "", "_partition_by"], [4, 3, 1, "", "_window_frame"]], "datafusion.expr.WindowFrame": [[4, 2, 1, "", "__repr__"], [4, 2, 1, "", "get_frame_units"], [4, 2, 1, "", "get_lower_bound"], [4, 2, 1, "", "get_upper_bound"], [4, 3, 1, "", "window_frame"]], "datafusion.expr.WindowFrameBound": [[4, 3, 1, "", "frame_bound"], [4, 2, 1, "", "get_offset"], [4, 2, 1, "", "is_current_row"], [4, 2, 1, "", "is_following"], [4, 2, 1, "", "is_preceding"], [4, 2, 1, "", "is_unbounded"]], "datafusion.functions": [[5, 6, 1, "", "abs"], [5, 6, 1, "", "acos"], [5, 6, 1, "", "acosh"], [5, 6, 1, "", "alias"], [5, 6, 1, "", "approx_distinct"], [5, 6, 1, "", "approx_median"], [5, 6, 1, "", "approx_percentile_cont"], [5, 6, 1, "", "approx_percentile_cont_with_weight"], [5, 6, 1, "", "array"], [5, 6, 1, "", "array_agg"], [5, 6, 1, "", "array_append"], [5, 6, 1, "", "array_cat"], [5, 6, 1, "", "array_concat"], [5, 6, 1, "", "array_dims"], [5, 6, 1, "", "array_distinct"], [5, 6, 1, "", "array_element"], [5, 6, 1, "", "array_empty"], [5, 6, 1, "", "array_except"], [5, 6, 1, "", "array_extract"], [5, 6, 1, "", "array_has"], [5, 6, 1, "", "array_has_all"], [5, 6, 1, "", "array_has_any"], [5, 6, 1, "", "array_indexof"], [5, 6, 1, "", "array_intersect"], [5, 6, 1, "", "array_join"], [5, 6, 1, "", "array_length"], [5, 6, 1, "", "array_ndims"], [5, 6, 1, "", "array_pop_back"], [5, 6, 1, "", "array_pop_front"], [5, 6, 1, "", "array_position"], [5, 6, 1, "", "array_positions"], [5, 6, 1, "", "array_prepend"], [5, 6, 1, "", "array_push_back"], [5, 6, 1, "", "array_push_front"], [5, 6, 1, "", "array_remove"], [5, 6, 1, "", "array_remove_all"], [5, 6, 1, "", "array_remove_n"], [5, 6, 1, "", "array_repeat"], [5, 6, 1, "", "array_replace"], [5, 6, 1, "", "array_replace_all"], [5, 6, 1, "", "array_replace_n"], [5, 6, 1, "", "array_resize"], [5, 6, 1, "", "array_slice"], [5, 6, 1, "", "array_sort"], [5, 6, 1, "", "array_to_string"], [5, 6, 1, "", "array_union"], [5, 6, 1, "", "arrow_cast"], [5, 6, 1, "", "arrow_typeof"], [5, 6, 1, "", "ascii"], [5, 6, 1, "", "asin"], [5, 6, 1, "", "asinh"], [5, 6, 1, "", "atan"], [5, 6, 1, "", "atan2"], [5, 6, 1, "", "atanh"], [5, 6, 1, "", "avg"], [5, 6, 1, "", "bit_and"], [5, 6, 1, "", "bit_length"], [5, 6, 1, "", "bit_or"], [5, 6, 1, "", "bit_xor"], [5, 6, 1, "", "bool_and"], [5, 6, 1, "", "bool_or"], [5, 6, 1, "", "btrim"], [5, 6, 1, "", "cardinality"], [5, 6, 1, "", "case"], [5, 6, 1, "", "cbrt"], [5, 6, 1, "", "ceil"], [5, 6, 1, "", "char_length"], [5, 6, 1, "", "character_length"], [5, 6, 1, "", "chr"], [5, 6, 1, "", "coalesce"], [5, 6, 1, "", "col"], [5, 6, 1, "", "concat"], [5, 6, 1, "", "concat_ws"], [5, 6, 1, "", "corr"], [5, 6, 1, "", "cos"], [5, 6, 1, "", "cosh"], [5, 6, 1, "", "cot"], [5, 6, 1, "", "count"], [5, 6, 1, "", "count_star"], [5, 6, 1, "", "covar"], [5, 6, 1, "", "covar_pop"], [5, 6, 1, "", "covar_samp"], [5, 6, 1, "", "cume_dist"], [5, 6, 1, "", "current_date"], [5, 6, 1, "", "current_time"], [5, 6, 1, "", "date_bin"], [5, 6, 1, "", "date_part"], [5, 6, 1, "", "date_trunc"], [5, 6, 1, "", "datepart"], [5, 6, 1, "", "datetrunc"], [5, 6, 1, "", "decode"], [5, 6, 1, "", "degrees"], [5, 6, 1, "", "dense_rank"], [5, 6, 1, "", "digest"], [5, 6, 1, "", "empty"], [5, 6, 1, "", "encode"], [5, 6, 1, "", "ends_with"], [5, 6, 1, "", "exp"], [5, 6, 1, "", "extract"], [5, 6, 1, "", "factorial"], [5, 6, 1, "", "find_in_set"], [5, 6, 1, "", "first_value"], [5, 6, 1, "", "flatten"], [5, 6, 1, "", "floor"], [5, 6, 1, "", "from_unixtime"], [5, 6, 1, "", "gcd"], [5, 6, 1, "", "in_list"], [5, 6, 1, "", "initcap"], [5, 6, 1, "", "isnan"], [5, 6, 1, "", "iszero"], [5, 6, 1, "", "lag"], [5, 6, 1, "", "last_value"], [5, 6, 1, "", "lcm"], [5, 6, 1, "", "lead"], [5, 6, 1, "", "left"], [5, 6, 1, "", "length"], [5, 6, 1, "", "levenshtein"], [5, 6, 1, "", "list_append"], [5, 6, 1, "", "list_cat"], [5, 6, 1, "", "list_concat"], [5, 6, 1, "", "list_dims"], [5, 6, 1, "", "list_distinct"], [5, 6, 1, "", "list_element"], [5, 6, 1, "", "list_except"], [5, 6, 1, "", "list_extract"], [5, 6, 1, "", "list_indexof"], [5, 6, 1, "", "list_intersect"], [5, 6, 1, "", "list_join"], [5, 6, 1, "", "list_length"], [5, 6, 1, "", "list_ndims"], [5, 6, 1, "", "list_position"], [5, 6, 1, "", "list_positions"], [5, 6, 1, "", "list_prepend"], [5, 6, 1, "", "list_push_back"], [5, 6, 1, "", "list_push_front"], [5, 6, 1, "", "list_remove"], [5, 6, 1, "", "list_remove_all"], [5, 6, 1, "", "list_remove_n"], [5, 6, 1, "", "list_repeat"], [5, 6, 1, "", "list_replace"], [5, 6, 1, "", "list_replace_all"], [5, 6, 1, "", "list_replace_n"], [5, 6, 1, "", "list_resize"], [5, 6, 1, "", "list_slice"], [5, 6, 1, "", "list_sort"], [5, 6, 1, "", "list_to_string"], [5, 6, 1, "", "list_union"], [5, 6, 1, "", "ln"], [5, 6, 1, "", "log"], [5, 6, 1, "", "log10"], [5, 6, 1, "", "log2"], [5, 6, 1, "", "lower"], [5, 6, 1, "", "lpad"], [5, 6, 1, "", "ltrim"], [5, 6, 1, "", "make_array"], [5, 6, 1, "", "make_date"], [5, 6, 1, "", "make_list"], [5, 6, 1, "", "max"], [5, 6, 1, "", "md5"], [5, 6, 1, "", "mean"], [5, 6, 1, "", "median"], [5, 6, 1, "", "min"], [5, 6, 1, "", "named_struct"], [5, 6, 1, "", "nanvl"], [5, 6, 1, "", "now"], [5, 6, 1, "", "nth_value"], [5, 6, 1, "", "ntile"], [5, 6, 1, "", "nullif"], [5, 6, 1, "", "nvl"], [5, 6, 1, "", "octet_length"], [5, 6, 1, "", "order_by"], [5, 6, 1, "", "overlay"], [5, 6, 1, "", "percent_rank"], [5, 6, 1, "", "pi"], [5, 6, 1, "", "pow"], [5, 6, 1, "", "power"], [5, 6, 1, "", "radians"], [5, 6, 1, "", "random"], [5, 6, 1, "", "range"], [5, 6, 1, "", "rank"], [5, 6, 1, "", "regexp_count"], [5, 6, 1, "", "regexp_like"], [5, 6, 1, "", "regexp_match"], [5, 6, 1, "", "regexp_replace"], [5, 6, 1, "", "regr_avgx"], [5, 6, 1, "", "regr_avgy"], [5, 6, 1, "", "regr_count"], [5, 6, 1, "", "regr_intercept"], [5, 6, 1, "", "regr_r2"], [5, 6, 1, "", "regr_slope"], [5, 6, 1, "", "regr_sxx"], [5, 6, 1, "", "regr_sxy"], [5, 6, 1, "", "regr_syy"], [5, 6, 1, "", "repeat"], [5, 6, 1, "", "replace"], [5, 6, 1, "", "reverse"], [5, 6, 1, "", "right"], [5, 6, 1, "", "round"], [5, 6, 1, "", "row_number"], [5, 6, 1, "", "rpad"], [5, 6, 1, "", "rtrim"], [5, 6, 1, "", "sha224"], [5, 6, 1, "", "sha256"], [5, 6, 1, "", "sha384"], [5, 6, 1, "", "sha512"], [5, 6, 1, "", "signum"], [5, 6, 1, "", "sin"], [5, 6, 1, "", "sinh"], [5, 6, 1, "", "split_part"], [5, 6, 1, "", "sqrt"], [5, 6, 1, "", "starts_with"], [5, 6, 1, "", "stddev"], [5, 6, 1, "", "stddev_pop"], [5, 6, 1, "", "stddev_samp"], [5, 6, 1, "", "string_agg"], [5, 6, 1, "", "strpos"], [5, 6, 1, "", "struct"], [5, 6, 1, "", "substr"], [5, 6, 1, "", "substr_index"], [5, 6, 1, "", "substring"], [5, 6, 1, "", "sum"], [5, 6, 1, "", "tan"], [5, 6, 1, "", "tanh"], [5, 6, 1, "", "to_hex"], [5, 6, 1, "", "to_timestamp"], [5, 6, 1, "", "to_timestamp_micros"], [5, 6, 1, "", "to_timestamp_millis"], [5, 6, 1, "", "to_timestamp_nanos"], [5, 6, 1, "", "to_timestamp_seconds"], [5, 6, 1, "", "to_unixtime"], [5, 6, 1, "", "translate"], [5, 6, 1, "", "trim"], [5, 6, 1, "", "trunc"], [5, 6, 1, "", "upper"], [5, 6, 1, "", "uuid"], [5, 6, 1, "", "var"], [5, 6, 1, "", "var_pop"], [5, 6, 1, "", "var_samp"], [5, 6, 1, "", "var_sample"], [5, 6, 1, "", "when"], [5, 6, 1, "", "window"]], "datafusion.input": [[9, 1, 1, "", "LocationInputPlugin"], [8, 0, 0, "-", "base"], [10, 0, 0, "-", "location"]], "datafusion.input.LocationInputPlugin": [[9, 2, 1, "", "build_table"], [9, 2, 1, "", "is_correct_input"]], "datafusion.input.base": [[8, 1, 1, "", "BaseInputSource"]], "datafusion.input.base.BaseInputSource": [[8, 2, 1, "", "build_table"], [8, 2, 1, "", "is_correct_input"]], "datafusion.input.location": [[10, 1, 1, "", "LocationInputPlugin"]], "datafusion.input.location.LocationInputPlugin": [[10, 2, 1, "", "build_table"], [10, 2, 1, "", "is_correct_input"]], "datafusion.io": [[11, 6, 1, "", "read_avro"], [11, 6, 1, "", "read_csv"], [11, 6, 1, "", "read_json"], [11, 6, 1, "", "read_parquet"]], "datafusion.object_store": [[12, 4, 1, "", "AmazonS3"], [12, 4, 1, "", "GoogleCloud"], [12, 4, 1, "", "Http"], [12, 4, 1, "", "LocalFileSystem"], [12, 4, 1, "", "MicrosoftAzure"]], "datafusion.plan": [[13, 1, 1, "", "ExecutionPlan"], [13, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[13, 2, 1, "", "__repr__"], [13, 3, 1, "", "_raw_plan"], [13, 2, 1, "", "children"], [13, 2, 1, "", "display"], [13, 2, 1, "", "display_indent"], [13, 2, 1, "", "from_proto"], [13, 5, 1, "", "partition_count"], [13, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[13, 2, 1, "", "__repr__"], [13, 3, 1, "", "_raw_plan"], [13, 2, 1, "", "display"], [13, 2, 1, "", "display_graphviz"], [13, 2, 1, "", "display_indent"], [13, 2, 1, "", "display_indent_schema"], [13, 2, 1, "", "from_proto"], [13, 2, 1, "", "inputs"], [13, 2, 1, "", "to_proto"], [13, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[14, 1, 1, "", "RecordBatch"], [14, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[14, 3, 1, "", "record_batch"], [14, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[14, 2, 1, "", "__aiter__"], [14, 2, 1, "", "__anext__"], [14, 2, 1, "", "__iter__"], [14, 2, 1, "", "__next__"], [14, 2, 1, "", "next"], [14, 3, 1, "", "rbs"]], "datafusion.substrait": [[15, 1, 1, "", "Consumer"], [15, 1, 1, "", "Plan"], [15, 1, 1, "", "Producer"], [15, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[15, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[15, 2, 1, "", "encode"], [15, 3, 1, "", "plan_internal"]], "datafusion.substrait.Producer": [[15, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[15, 2, 1, "", "deserialize"], [15, 2, 1, "", "deserialize_bytes"], [15, 2, 1, "", "serialize"], [15, 2, 1, "", "serialize_bytes"], [15, 2, 1, "", "serialize_to_plan"]], "datafusion.unparser": [[16, 1, 1, "", "Dialect"], [16, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[16, 2, 1, "", "default"], [16, 3, 1, "", "dialect"], [16, 2, 1, "", "duckdb"], [16, 2, 1, "", "mysql"], [16, 2, 1, "", "postgres"], [16, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[16, 2, 1, "", "plan_to_sql"], [16, 3, 1, "", "unparser"], [16, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[17, 1, 1, "", "Accumulator"], [17, 1, 1, "", "AggregateUDF"], [17, 1, 1, "", "AggregateUDFExportable"], [17, 1, 1, "", "ScalarUDF"], [17, 1, 1, "", "ScalarUDFExportable"], [17, 1, 1, "", "TableFunction"], [17, 1, 1, "", "Volatility"], [17, 1, 1, "", "WindowEvaluator"], [17, 1, 1, "", "WindowUDF"], [17, 1, 1, "", "WindowUDFExportable"], [17, 4, 1, "", "_R"], [17, 4, 1, "", "udaf"], [17, 4, 1, "", "udf"], [17, 4, 1, "", "udtf"], [17, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[17, 2, 1, "", "evaluate"], [17, 2, 1, "", "merge"], [17, 2, 1, "", "state"], [17, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 3, 1, "", "_udaf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udaf"]], "datafusion.user_defined.AggregateUDFExportable": [[17, 2, 1, "", "__datafusion_aggregate_udf__"]], "datafusion.user_defined.ScalarUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 3, 1, "", "_udf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udf"]], "datafusion.user_defined.ScalarUDFExportable": [[17, 2, 1, "", "__datafusion_scalar_udf__"]], "datafusion.user_defined.TableFunction": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 2, 1, "", "_create_table_udf"], [17, 2, 1, "", "_create_table_udf_decorator"], [17, 3, 1, "", "_udtf"], [17, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[17, 3, 1, "", "Immutable"], [17, 3, 1, "", "Stable"], [17, 3, 1, "", "Volatile"], [17, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[17, 2, 1, "", "evaluate"], [17, 2, 1, "", "evaluate_all"], [17, 2, 1, "", "evaluate_all_with_rank"], [17, 2, 1, "", "get_range"], [17, 2, 1, "", "include_rank"], [17, 2, 1, "", "is_causal"], [17, 2, 1, "", "memoize"], [17, 2, 1, "", "supports_bounded_execution"], [17, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 2, 1, "", "_create_window_udf"], [17, 2, 1, "", "_create_window_udf_decorator"], [17, 2, 1, "", "_get_default_name"], [17, 2, 1, "", "_normalize_input_types"], [17, 3, 1, "", "_udwf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udwf"]], "datafusion.user_defined.WindowUDFExportable": [[17, 2, 1, "", "__datafusion_window_udf__"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "data", "Python data"], "5": ["py", "property", "Python property"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:data", "5": "py:property", "6": "py:function"}, "terms": {"": [1, 2, 3, 4, 5, 7, 17, 19, 20, 25, 26, 28, 30, 31, 32, 33, 35], "0": [2, 4, 5, 7, 17, 22, 23, 24, 25, 26, 29, 30, 32, 33, 34, 36, 37, 44, 45], "007bff": 36, "01": [22, 26, 29], "01t00": 26, "038": 33, "04023": 5, "05": [26, 29], "06": [26, 29], "08": 26, "09": [22, 26], "1": [2, 4, 5, 7, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 45], "10": [3, 4, 5, 7, 17, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 45], "100": [3, 5, 21, 22, 23, 32, 34, 35, 36, 37], "1000": [1, 3, 7, 11, 24, 36], "10000000": 33, "1024": [1, 2, 3, 7, 36], "103": [21, 34, 37], "104": [21, 34, 37], "1048576": [2, 7], "105": [21, 23, 34, 37], "107": [23, 33], "109": [21, 34, 37, 45], "11": [21, 22, 23, 25, 26, 30, 32, 34, 37], "110": 23, "111": [21, 34, 37], "112": 23, "115": [21, 23, 34, 37], "12": [20, 21, 22, 23, 25, 26, 30, 32, 34, 37], "120": [5, 21, 23, 34, 37], "121": 23, "122": [21, 34, 37], "123": [21, 34, 37], "12371": 5, "125": [5, 23, 26, 45], "128": [4, 5, 7], "13": [21, 23, 25, 26, 30, 32, 34, 37], "130": [21, 34, 37], "135": [21, 34, 37], "136": 23, "14": [21, 22, 23, 25, 26, 29, 30, 34, 37], "140": 23, "145": [21, 23, 34, 37], "149": 45, "15": [21, 22, 23, 25, 26, 29, 30, 32, 34, 37], "150": [21, 32, 34, 37], "158": 45, "159": [21, 34, 37, 45], "16": [22, 23, 25, 26, 30, 33], "160": 45, "161": 45, "162": 45, "163": 45, "165": [26, 45], "17": [22, 23, 25, 26, 30, 32], "18": [22, 23, 25, 26, 30, 32], "185": 24, "19": [23, 25, 26, 45], "190": 45, "1902": 5, "1921": 26, "195": [21, 34, 37], "1970": 26, "1m": [2, 7], "1px": 36, "2": [2, 3, 4, 5, 7, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "20": [2, 3, 5, 7, 17, 21, 23, 25, 26, 31, 32, 34, 36, 37, 45], "200": 45, "20000": [2, 7], "2021": 22, "2025": 26, "205": [21, 34, 37], "2097152": [3, 36], "21": [22, 23, 25, 26, 32], "22": [2, 25, 34], "222837494z": 26, "223": 45, "224": [4, 5, 7], "229": 45, "23": [22, 25, 32, 45], "23076923076923": 23, "2345": 5, "24": [22, 25], "25": [3, 5, 21, 23, 25, 26, 32, 34, 35, 36, 37], "256": [4, 5, 7], "25806451612904": 23, "26": [25, 32], "27": 25, "28": [22, 25, 32], "28571428571429": 23, "29": 25, "294": 24, "2mb": [3, 36], "3": [2, 5, 7, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "30": [21, 23, 25, 31, 32, 34, 37], "300": [3, 36], "309": [21, 26, 34, 37], "31": 25, "314": [21, 26, 34, 37], "318": [21, 26, 34, 37], "31t12": 26, "32": 25, "33": [22, 25], "333333333333332": 32, "333333333333336": 23, "34": [25, 26], "35": [21, 22, 23, 25, 29, 32, 34, 37], "36": [22, 25], "37": 25, "38": 25, "384": [4, 5, 7], "39": [21, 25, 34, 37, 45], "395": [21, 34, 37], "3rd": 5, "3x": 33, "4": [2, 5, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 45], "40": [5, 20, 21, 23, 25, 31, 34, 37], "405": [21, 26, 34, 37], "41": [25, 26], "42": [23, 25, 32, 34], "42857142857143": 32, "43": [21, 25, 32, 34, 37, 44], "44": [21, 25, 34, 37], "45": [21, 23, 25, 26, 32, 34, 37], "4579": 26, "46": 23, "47": 23, "4732": 26, "48": [21, 23, 34, 37], "49": [21, 34, 37], "495": [21, 34, 37], "4mb": 36, "5": [2, 5, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "50": [3, 5, 7, 21, 23, 31, 34, 36, 37], "500": [3, 7], "5000000": 33, "51": [22, 23], "512": [4, 5, 7], "5129": 26, "52": [21, 23, 34, 37], "525": [21, 26, 34, 37], "53": 23, "530": [21, 34, 37], "534": [21, 26, 34, 37], "54": [23, 25, 26], "55": [21, 23, 32, 34, 37], "56": [23, 26], "58": [21, 23, 34, 37], "5811388300841898": 24, "59": [21, 34, 37], "6": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 35, 37, 38, 45], "60": [5, 21, 23, 32, 34, 37], "62": [21, 34, 37], "625": [21, 26, 34, 37], "63": [21, 23, 34, 37], "630": [21, 34, 37], "634": [21, 26, 34, 37], "64": [2, 7, 20, 21, 32, 34, 37], "65": [21, 23, 25, 29, 32, 34, 37], "66": [22, 23], "666666666666668": 32, "66666666666667": 23, "666667": 5, "67": [23, 25], "691": 24, "693": 24, "7": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 37, 38, 45], "70": [21, 23, 32, 34, 37], "71": [23, 25], "72": 23, "73": 22, "732": 26, "75": [5, 21, 23, 34, 37], "76": 32, "77777777777777": 23, "78": [21, 22, 34, 37], "785714285714285": 23, "78571428571429": 23, "79": [21, 22, 34, 37], "8": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38], "80": [5, 21, 23, 32, 34, 37], "81": 22, "82": [21, 34, 37], "83": [21, 23, 34, 37], "831": 24, "833333333333336": 23, "84": [21, 32, 34, 37], "85": [21, 23, 34, 37], "855": 26, "86": 23, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "870": 24, "88888888888889": 23, "892": 24, "8px": 36, "9": [5, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 37, 38, 45], "90": [5, 21, 23, 32, 34, 37], "91": 23, "92": 22, "94": [22, 29], "95": [22, 23, 32, 45], "96": [22, 23], "972": 26, "9740666567148": 24, "98": [23, 45], "A": [1, 2, 4, 5, 7, 8, 13, 15, 17, 22, 24, 28, 32, 34, 35, 44], "AND": [2, 4, 5, 7, 17], "As": [5, 7, 17, 19, 25, 29, 34], "At": [5, 19], "BY": 17, "Be": 2, "By": [2, 7, 19, 20, 23, 34], "For": [1, 2, 5, 15, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 30, 33, 35, 36, 37], "INTO": [1, 7], "If": [0, 1, 2, 3, 4, 5, 7, 8, 11, 17, 19, 20, 23, 26, 28, 30, 32, 34, 37, 44], "In": [17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 36, 37, 38, 45], "It": [1, 2, 3, 4, 5, 7, 17, 19, 21, 22, 23, 25, 28, 38, 43], "Its": 21, "No": [2, 7], "Not": [4, 7], "OR": [4, 5, 7], "On": [2, 19, 34], "One": [2, 4, 19, 23, 32, 34], "Or": [33, 36], "That": [4, 7, 38], "The": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36], "Then": 30, "There": [5, 26, 30, 34], "These": [2, 5, 7, 14, 17, 23, 25, 30, 33, 36], "To": [2, 5, 19, 20, 25, 26, 29, 30, 32, 33, 34, 35, 37, 38, 44], "Will": [2, 36], "With": [4, 7, 37, 38], "__add__": [4, 7], "__aiter__": [7, 14], "__and__": [4, 7], "__anext__": [7, 14], "__arrow_c_array__": [1, 38], "__arrow_c_stream__": [1, 2, 38], "__call__": [3, 7, 17], "__datafusion_aggregate_udf__": 17, "__datafusion_catalog_provider__": 1, "__datafusion_scalar_udf__": 17, "__datafusion_table_function__": 30, "__datafusion_table_provider__": [1, 19, 44], "__datafusion_window_udf__": 17, "__eq__": [4, 7], "__ge__": [4, 7], "__getitem__": [2, 4, 7], "__gt__": [4, 7], "__init__": [7, 17, 30], "__invert__": [4, 7], "__iter__": [7, 14], "__le__": [4, 7], "__lt__": [4, 7], "__mod__": [4, 7], "__mul__": [4, 7], "__ne__": [4, 7], "__next__": [7, 14], "__or__": [4, 7], "__radd__": [4, 7], "__rand__": [4, 7], "__repr__": [0, 1, 2, 3, 4, 7, 13, 17, 36], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__str__": 17, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 37, "_aggreg": 5, "_build_expandable_cel": 3, "_build_html_foot": 3, "_build_html_head": 3, "_build_regular_cel": 3, "_build_table_bodi": 3, "_build_table_container_start": 3, "_build_table_head": 3, "_convert_table_partition_col": 1, "_create_table_udf": [7, 17], "_create_table_udf_decor": [7, 17], "_create_window_udf": [7, 17], "_create_window_udf_decor": [7, 17], "_custom_cell_build": 3, "_custom_header_build": 3, "_default_formatt": 3, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": [7, 17], "_get_javascript": 3, "_intern": [0, 2, 4, 7, 13, 14, 15, 16], "_io_custom_table_provid": 30, "_normalize_input_typ": [7, 17], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 17], "_raw_plan": [7, 13], "_raw_schema": 0, "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 36], "_sum": [7, 17, 30], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_udaf": [7, 17], "_udf": [7, 17], "_udtf": [7, 17], "_udwf": [7, 17], "_validate_bool": 3, "_validate_positive_int": 3, "_window_fram": 4, "_window_funct": 5, "a0": 25, "a_siz": 25, "ab": [4, 5, 7], "abc": [0, 8], "abi": 19, "abi3": 20, "abi_st": 19, "abil": 34, "abilti": 34, "abl": [7, 13], "about": [15, 16, 19, 21, 32, 33, 35], "abov": [5, 19, 23, 32], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 4, 7, 38], "access": [3, 7, 11, 19, 25, 34, 35], "access_key_id": 34, "account": 34, "accum": [7, 17], "accumul": [7, 17, 30], "accur": 33, "achiev": 21, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 19, "across": [3, 17, 19, 25, 33, 36], "act": [7, 13], "activ": [19, 20], "actual": [2, 33, 35], "ad": [2, 34], "adapt": 19, "add": [0, 1, 2, 3, 4, 5, 19, 20, 35], "add_3": 2, "addit": [2, 3, 4, 5, 7, 15, 16, 17, 19, 20, 30, 33, 34, 35], "addition": [19, 22], "adhoc": 20, "adopt": 19, "advanc": [2, 7, 34, 35, 36], "advantag": [19, 20, 21], "affect": [17, 23, 33, 36], "after": [2, 4, 5, 7, 17, 30, 36], "ag": [25, 35], "against": [1, 4, 5, 17, 19, 21, 31, 36], "age_col": 25, "age_in_year": 25, "agg": 2, "aggreg": [1, 2, 4, 5, 7, 17, 22, 27, 33, 35], "aggregatefunct": 4, "aggregateudf": [1, 7, 17], "aggregateudfexport": [7, 17], "aim": 37, "albert": 25, "algorithm": [2, 5], "alia": [0, 1, 2, 4, 5, 7, 22, 23, 25, 26, 29, 30, 32, 35, 38], "alias": 20, "alic": 28, "align": 36, "all": [0, 1, 2, 3, 4, 5, 7, 17, 19, 20, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36], "alloc": [2, 33], "allow": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 33, 34, 36], "allow_single_file_parallel": [2, 7], "alpha": [30, 34], "alreadi": [2, 5, 7, 19], "also": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 32, 36, 37, 45], "altern": [29, 40, 43], "alternate_a": 2, "alwai": [17, 36], "amazons3": [12, 34], "amount": [2, 17, 35], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 17, 19, 20, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 37, 38, 39, 40, 43], "analyt": 32, "analyz": [2, 4, 20], "ani": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 23, 28, 30, 32, 34, 38], "anoth": [2, 5, 7, 11, 19], "anti": [2, 27], "apach": [1, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [5, 30], "appli": [2, 3, 7, 36], "applic": [19, 33], "approach": [5, 23, 25, 33, 34], "appropri": [17, 20, 34, 36], "approx_distinct": [5, 23], "approx_median": [5, 23], "approx_percentile_cont": [5, 23], "approx_percentile_cont_with_weight": [5, 23], "approxim": [5, 23], "ar": [1, 2, 3, 4, 5, 7, 11, 13, 14, 17, 19, 20, 22, 23, 25, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38], "arbitrari": [2, 5], "arc": [4, 5, 7, 19, 30, 44], "architectur": 33, "area": 19, "arg": [1, 2, 5, 7, 15, 17, 20], "argument": [2, 4, 5, 7, 17, 23, 30], "around": [5, 20, 34], "arrai": [1, 2, 3, 4, 5, 7, 17, 23, 27, 30, 34, 35, 38], "array1": 5, "array2": 5, "array_agg": [5, 23], "array_append": [5, 20], "array_cat": [5, 25], "array_concat": [5, 25], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 25], "array_empti": [4, 5, 7, 25], "array_except": 5, "array_extract": 5, "array_ha": 5, "array_has_al": 5, "array_has_ani": 5, "array_indexof": 5, "array_intersect": 5, "array_join": 5, "array_length": [4, 5, 7], "array_ndim": [4, 5, 7], "array_pop_back": [4, 5, 7], "array_pop_front": [4, 5, 7], "array_posit": 5, "array_prepend": 5, "array_push_back": 5, "array_push_front": 5, "array_remov": 5, "array_remove_al": 5, "array_remove_n": 5, "array_repeat": [5, 25], "array_replac": 5, "array_replace_al": 5, "array_replace_n": 5, "array_res": 5, "array_slic": 5, "array_sort": 5, "array_to_str": 5, "array_union": 5, "arrow": [1, 2, 3, 4, 5, 7, 20, 21, 24, 34, 35, 37, 41], "arrow_cast": [4, 5, 7, 26], "arrow_datafusion_python_root": 20, "arrow_t": 35, "arrow_typeof": [4, 5, 7], "arrowarrayexport": 1, "arrowstreamexport": 1, "arxiv": 5, "as_pi": [7, 17, 30], "ascend": [4, 5, 7, 23, 32, 35], "ascii": [4, 5, 7], "asin": [4, 5, 7], "asinh": [4, 5, 7], "assembl": 1, "assign": [4, 5, 7], "assist": 20, "associ": [0, 1, 4, 5, 7, 19], "assum": [2, 5, 20, 34], "assumpt": 21, "async": [7, 14], "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [21, 34, 37], "attach": [4, 5, 7, 33], "attack": [21, 23, 26, 32, 34, 37, 45], "attempt": [1, 2, 7, 17, 19, 20], "auto": 18, "autoapi": 18, "automat": [1, 7, 33, 35, 36], "avail": [2, 3, 7, 23, 27, 30, 33, 35, 44], "availbl": 32, "averag": [5, 17, 32], "avg": [5, 17, 23, 32], "avoid": [1, 7, 11], "avro": [1, 7, 11, 34, 35, 36, 41], "awar": [2, 29], "aws_access_key_id": 34, "aws_secret_access_kei": 34, "b": [2, 5, 24, 25, 30, 31, 34, 35, 38], "back": [4, 7, 17, 19, 21, 30, 34, 36, 38], "background": 36, "balanc": 36, "bar": 33, "base": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 17, 18, 25, 28, 30, 33, 34], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 17, 30], "basic": [22, 27, 29, 30, 33, 34], "basic_typ": 26, "batch": [1, 2, 3, 7, 13, 14, 17, 24, 30, 31, 34, 35, 36, 38], "batch_arrai": 30, "batch_siz": [1, 7], "becaus": [4, 7, 30, 34], "becca": 25, "beedril": [21, 32, 34, 37], "beedrillmega": [21, 32, 34, 37], "been": [3, 19], "befor": [3, 5, 20, 25, 30, 36], "beforehand": [1, 7], "begin": [1, 4, 5, 7, 17, 36], "beginnig": 5, "being": 2, "below": [22, 23, 34], "benefit": [2, 7, 33], "best": [1, 2, 7, 19], "beta": 34, "better": [2, 7, 36], "between": [1, 4, 5, 7, 17, 19, 21, 22, 28, 30, 32, 33], "betwen": 32, "bia": [7, 17], "bias_10": [7, 17], "biased_numb": [7, 17], "biasednumb": [7, 17], "bin": [5, 20], "binari": [4, 5, 7, 13, 19], "binaryexpr": [4, 7], "bind": [7, 17, 21, 37], "bit": [4, 5, 7], "bit_and": [5, 23], "bit_length": [4, 5, 7], "bit_or": [5, 23], "bit_pack": [2, 7], "bit_xor": [5, 23], "bitwis": [5, 25], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [21, 34, 37], "blastoisemega": [21, 34, 37], "blob": [4, 7], "blog": 20, "bloom": [2, 7], "bloom_filter_en": [2, 7], "bloom_filter_fpp": [2, 7], "bloom_filter_ndv": [2, 7], "bloom_filter_on_writ": [2, 7], "blue": 25, "bob": 28, "bodi": 3, "bool": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 16, 17], "bool_": 30, "bool_and": [5, 23], "bool_or": [5, 23], "boolean": [3, 4, 5, 7, 27], "boost": [2, 7], "bootstrap": 20, "border": 36, "both": [2, 4, 5, 7, 17, 19, 20, 25, 28, 30], "bottleneck": 33, "bound": [4, 7, 17, 30, 32, 44], "boundari": [17, 19, 32], "bow": 32, "box": 19, "bracket": 25, "break": 19, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 34, "bug": [21, 23, 32, 34, 37], "build": [3, 4, 5, 7, 19, 21, 22, 23, 32, 35], "build_flag": 20, "build_tabl": [8, 9, 10], "builder": [3, 4, 5, 23, 32], "built": [17, 19, 23, 25, 26, 30], "bulb": 26, "bulbafleur": 26, "bulbasaur": [21, 26, 32, 34, 37], "bulk": 19, "butterfre": [21, 32, 34, 37], "button": 3, "byte": [1, 2, 3, 4, 5, 7, 13, 15], "byte_stream_split": [2, 7], "c": [1, 2, 17, 19, 20, 21, 24, 34, 38], "cach": [2, 3, 7], "calcul": [2, 5, 17, 30], "call": [0, 1, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 23, 25, 30, 34, 35, 36, 38], "callabl": [2, 3, 7, 17], "calll": 25, "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 20, 22, 23, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "can_retir": 25, "cannot": 5, "canon": 19, "canonical_nam": [4, 7], "capabl": 33, "capit": [4, 5, 7, 29], "capsul": 19, "cardin": [4, 5, 7, 25], "carefulli": 19, "cargo": 20, "carlo": 25, "cascad": [0, 7], "case": [2, 4, 5, 7, 17, 19, 23, 26, 29, 30, 32, 33, 34], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 27], "castabl": [4, 7], "catalog": [1, 7, 16, 18], "catalog_nam": 1, "catalogprovid": [0, 1, 34], "catalogproviderexport": 1, "categori": [2, 26], "caterpi": [21, 32, 34, 37], "caus": [1, 7, 20, 32, 38], "cbrt": [4, 5, 7], "cdatainterfac": 1, "ceil": [4, 5, 7], "cell": [3, 36], "cellformatt": 3, "certain": 17, "certainli": 20, "chain": 2, "challeng": 19, "chang": [3, 17, 20, 25, 36], "chansei": 23, "char": 26, "char_length": [4, 5, 7, 26], "charact": [3, 4, 5, 7, 36], "character_length": [4, 5, 7], "characterist": 33, "charizard": [21, 26, 32, 34, 37], "charizardmega": [21, 26, 32, 34, 37], "charli": 28, "charmand": [21, 26, 32, 34, 37], "charmeleon": [21, 26, 32, 34, 37], "check": [5, 25, 26], "checksum": [4, 5, 7], "child": 36, "children": [7, 13], "chr": [4, 5, 7], "chrono": 5, "chunk": [2, 7], "ci": [19, 20], "citycab": 28, "class": [30, 34, 36], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [17, 32], "clean": 20, "clefabl": 32, "clefairi": [23, 32], "click": 3, "clone": [20, 30, 44], "close": 32, "cloud": 33, "co": [4, 5, 7], "coalesc": [5, 26], "code": [3, 4, 5, 7, 19, 26, 34], "codebas": 20, "codec": [2, 7], "coeffici": 5, "coerc": 5, "col": [2, 3, 4, 5, 7, 17, 22, 23, 25, 26, 29, 30, 31, 32, 33, 38, 45], "col1": [17, 35], "col2": 35, "col_attack": 23, "col_diff": 30, "col_idx": 3, "col_spe": 23, "col_type_1": 23, "col_type_2": 23, "collaps": [3, 36], "collect": [2, 21, 22, 24, 31, 33, 35, 38, 45], "collect_partit": 2, "color": [25, 36], "column": [1, 2, 3, 4, 5, 7, 11, 17, 22, 23, 24, 26, 27, 28, 30, 32, 33, 35, 45], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [4, 7], "column_specific_opt": [2, 7], "com": [4, 5, 7, 20], "combin": [2, 5, 25, 28, 29, 30, 33], "come": [34, 42], "command": [1, 7, 20, 34], "common": [4, 5, 7, 8, 9, 10, 23, 26, 28, 32, 34, 38], "commun": [19, 20], "compar": [5, 32], "comparison": [4, 7, 23], "compat": [19, 25], "compet": 33, "compil": [19, 25], "complet": [4, 5, 7, 8, 19, 20, 30, 34, 35, 36, 44], "complex": [2, 21, 26, 33], "complic": 2, "compon": 5, "compos": 5, "composit": 3, "comprehens": 36, "compress": [1, 2, 7, 11], "compression_level": [2, 7], "comput": [2, 4, 5, 7, 17, 19, 25, 30, 35], "concat": 5, "concat_w": 5, "concaten": [5, 25], "concatenated_arrai": 25, "concept": [1, 2, 4, 7, 25, 33], "concis": 20, "concurr": [1, 7, 33], "condit": 27, "config": [1, 7, 20, 33], "config_intern": [1, 7], "config_opt": [1, 7], "configur": [1, 3, 7, 20], "configure_formatt": [3, 7, 36], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 22], "consecut": 5, "consid": 5, "consider": 36, "consist": [5, 36], "consol": [2, 35], "construct": [4, 7, 17, 30], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 38], "contain": [2, 3, 5, 7, 13, 17, 18, 19, 20, 23, 25, 28, 30, 36], "content": [20, 27, 36], "context": [3, 5, 7, 11, 13, 15, 18, 30, 31, 33, 36, 38, 45], "continu": [5, 19], "contribut": 20, "control": [1, 2, 7, 23, 32, 33], "conveni": [7, 17, 34], "convent": 19, "convers": [19, 20, 22], "convert": [1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 24, 25, 26, 30, 31, 35, 45], "copi": [19, 20, 21, 30, 38], "copyto": 4, "core": [2, 4, 7, 19, 33], "corr": [5, 23], "correctli": [2, 17], "correl": 5, "correspond": [5, 28], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": 21, "costli": 17, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [2, 4, 7, 19, 34], "count": [2, 5, 7, 23, 24, 33, 35], "count_star": 5, "counterpart": [5, 19], "coupl": [19, 32], "covar": 5, "covar_pop": [5, 23], "covar_samp": [5, 23], "covari": 5, "cover": [22, 26, 33], "cpython": 20, "cr": 30, "crate": 19, "creat": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 25, 31, 33, 38, 45], "create_datafram": [1, 30, 34], "create_dataframe_from_logical_plan": 1, "createcatalog": 4, "createcatalogschema": 4, "created_bi": [2, 7], "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "creation": 35, "credenti": 34, "criteria": [5, 32], "css": [3, 36], "cstream": 19, "cstring": [19, 44], "csv": [1, 2, 7, 11, 19, 21, 23, 26, 32, 33, 34, 35, 36, 37, 41, 45], "ctx": [1, 5, 7, 13, 15, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43, 44, 45], "cube": [4, 5, 7], "cubon": 23, "cume_dist": [5, 17, 32], "cumul": 5, "curr_valu": 30, "current": [2, 3, 4, 5, 7, 13, 17, 19, 26, 30, 32, 36], "current_d": 5, "current_tim": 5, "custom": [1, 3, 7, 8, 13, 19, 28, 30, 33, 35, 41], "custom_css": [3, 36], "custom_formatt": 3, "custom_html": 36, "customer_id": 28, "d": [2, 17, 38], "dai": [5, 26], "dant": 25, "dark": [23, 36], "data": [0, 1, 2, 3, 4, 5, 7, 11, 13, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 42, 44], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": 5, "databas": [0, 7, 25, 33], "dataflow": [7, 13], "datafram": [1, 3, 4, 5, 6, 7, 11, 13, 14, 17, 18, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 45], "dataframe_formatt": [7, 18], "dataframehtmlformatt": 3, "datafrm": 2, "datafus": [18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "datafusion_df": 34, "datafusion_sql": 16, "datafusion_table_funct": 30, "datafusion_table_provid": [19, 44], "dataset": [0, 1, 7, 26, 32, 33, 34, 36, 37], "datasourc": 8, "datastructur": [4, 7], "datatyp": [1, 2, 4, 7, 11, 17], "datatypemap": [4, 7], "date": [5, 26, 35], "date32": 5, "date_bin": 5, "date_part": [5, 26], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "ddd": 36, "ddl": [1, 7], "dealloc": 4, "decid": [17, 19], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 17], "def": [2, 7, 17, 21, 30, 34, 36, 37], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 16, 17, 19, 20, 30, 32, 33, 34, 36], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [21, 26, 34, 37, 45], "defin": [0, 1, 4, 7, 17, 19, 20, 26, 27, 32], "definit": [1, 4, 7, 17, 19, 22, 30], "degre": [4, 5, 7], "delet": [1, 7], "delimit": [1, 5, 7, 11], "delta": 19, "delta_binary_pack": [2, 7], "delta_byte_arrai": [2, 7], "delta_length_byte_arrai": [2, 7], "delta_t": 34, "deltalak": 34, "deltat": 34, "demonstr": [1, 30, 32, 33, 37, 38], "dens": 5, "dense_rank": [5, 17, 32], "depend": [5, 19, 23, 30, 32], "deprec": [2, 5, 6, 32], "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "descend": 5, "describ": [2, 5, 19, 23, 24, 30, 34], "describet": 4, "descript": [5, 7, 17], "deseri": 15, "deserialize_byt": 15, "design": [19, 27], "desir": 5, "detafram": 1, "detail": [2, 4, 5, 7, 17, 20, 22, 24, 35], "determin": [2, 4, 5, 7, 17, 30], "dev": 20, "develop": [19, 34], "deviat": 5, "df": [1, 2, 4, 5, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 45], "df1": 35, "df2": 35, "df_filter": 31, "df_view": 31, "dfschema": 7, "dialect": 16, "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 25, 31, 34, 35], "dictionary_en": [2, 7], "dictionary_page_size_limit": [2, 7], "differ": [2, 4, 5, 7, 13, 17, 19, 26, 30, 33, 34, 35, 36], "difficult": 19, "digest": 5, "dimens": [4, 5, 7], "dimension": 2, "directli": [3, 4, 5, 7, 15, 17, 34, 38], "directori": [1, 7, 20], "disabl": [1, 7, 36], "discard": 2, "discuss": [19, 34], "disk": [1, 7, 9, 10], "displai": [3, 7, 13, 22, 24, 31, 35, 37], "display_graphviz": [7, 13], "display_ind": [7, 13], "display_indent_schema": [7, 13], "display_nam": [4, 7], "distanc": 5, "distinct": [2, 4, 5, 7, 34], "distinctli": 19, "distinguish": 19, "distribut": [5, 33], "div": 36, "divid": [5, 33], "divis": [4, 5, 7], "divisor": 5, "dml": [1, 7], "dmlstatement": 4, "do": [0, 1, 7, 17, 19, 20, 22, 23, 30, 32, 34, 44], "doc": [1, 5, 16], "docstr": 20, "document": [1, 2, 4, 5, 7, 17, 18, 19, 20, 22, 33, 35, 37], "doe": [2, 3, 5, 17, 19, 20, 32, 34], "doesn": 17, "dominant_typ": 26, "done": [2, 23, 30, 34], "dot": [7, 13], "doubl": [29, 38], "double_func": [7, 17], "double_it": [7, 17], "double_udf": [7, 17], "down": [19, 32, 34], "downcast": 19, "download": [22, 29, 37], "dragon": [21, 23, 26, 32, 34, 37], "dragonair": 32, "dratini": 32, "drop": [1, 2, 7, 35], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [2, 36], "duckdb": 16, "due": [1, 7, 11, 20], "duplic": [2, 4, 5, 7, 28, 36], "dure": [7, 17, 20], "dynamic_lookup": 20, "e": [2, 4, 5, 7, 17, 30, 44], "each": [2, 4, 5, 7, 17, 19, 20, 23, 26, 32, 36], "earli": 19, "easi": [19, 42], "easier": [19, 26, 37], "easili": [4, 7, 19], "east": 34, "effect": [29, 37], "effici": 33, "effort": [2, 7, 19], "either": [1, 2, 4, 7, 17, 19, 23, 34], "electr": [23, 32], "element": [2, 3, 4, 5, 7, 25], "ellipsi": [2, 7, 17], "els": 30, "else_expr": 4, "embed": [2, 7], "employe": 25, "empti": [1, 4, 5, 7, 13, 23, 25, 35], "empty_t": 1, "emptyrel": 4, "enabl": [1, 2, 7, 19, 33, 36], "enable_cell_expans": [3, 7, 36], "enable_url_t": 1, "encod": [2, 5, 7, 15], "encourag": 20, "end": [0, 2, 4, 5, 7, 13, 14, 16, 17, 32, 33], "end_bound": [4, 7], "ends_with": 5, "engin": [1, 7, 21, 22], "enough": 17, "ensur": [3, 8, 33], "entir": [2, 7, 17, 23, 30, 32], "entri": [2, 5, 23, 32, 35], "enum": [2, 4, 7, 17], "enumer": 17, "enviorn": 20, "environ": [20, 21, 33, 35, 36], "equal": [2, 4, 5, 7], "equival": [5, 17, 19, 23, 32], "error": [1, 3, 4, 7, 20], "especi": 20, "essenti": [7, 14, 24], "etc": [1, 3, 4, 7, 9, 10, 17], "eval_rang": 17, "evalu": [2, 4, 5, 7, 17, 22, 23, 25, 30, 32, 33, 35], "evaluate_al": [7, 17, 30], "evaluate_all_with_rank": [17, 30], "even": [1, 7, 19, 28, 36], "evenli": 33, "everi": [5, 7, 17], "everyth": [9, 10], "ex": [4, 7, 29], "exact": 19, "exactli": [2, 32], "examin": [4, 7], "exampl": [1, 2, 3, 4, 5, 7, 13, 17, 19, 22, 23, 25, 26, 28, 30, 31, 32, 34, 37, 44], "excel": 19, "except": [2, 4, 5, 7, 25], "except_al": 2, "exclud": [2, 28], "execut": [1, 2, 4, 7, 17, 20, 21, 22, 33, 35, 38], "execute_stream": [2, 7, 14], "execute_stream_partit": 2, "execution_plan": 2, "executionplan": [1, 2, 7, 13], "exeggcut": 23, "exist": [0, 1, 2, 3, 4, 5, 7, 19], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 22], "explicit": [33, 36], "explicitli": [7, 17], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 30, "export": [1, 2, 7, 17, 19, 20, 34, 41], "expos": [1, 19, 30, 34, 44], "expr": [1, 2, 5, 7, 11, 17, 18, 30, 32, 35], "expr1": 5, "expr2": 5, "express": [2, 4, 5, 7, 17, 23, 26, 27, 30, 32], "exprfuncbuild": [4, 7], "extend": [5, 8, 19], "extens": [1, 3, 4, 7, 11, 36], "extract": [3, 4, 5, 7, 26], "extraenv": 20, "f": [4, 22, 23, 25, 26, 32, 34, 35], "f2f2f2": 36, "face": 19, "fact": [19, 30], "factor": 33, "factori": [4, 5, 7, 17], "fail": [2, 20, 26], "fair": [1, 7], "fairi": [23, 32], "fals": [2, 3, 4, 5, 7, 17, 19, 20, 21, 25, 26, 29, 30, 33, 34, 35, 36, 37, 44], "familiar": 20, "far": 2, "faster": [2, 5, 7, 17, 33], "featur": [5, 19, 20, 34, 38], "fetch": 20, "few": [19, 20, 22], "ffi": [7, 17, 34], "ffi_": 19, "ffi_provid": 19, "ffi_tablefunct": 30, "ffi_tableprovid": [1, 19, 44], "field": [2, 3, 5, 7, 26], "fight": [23, 32], "file": [1, 2, 7, 9, 10, 11, 15, 19, 20, 21, 22, 29, 33, 35, 36, 37, 39, 40, 42, 43], "file_compression_typ": [1, 7, 11], "file_extens": [1, 7, 11], "file_partition_col": [1, 7, 11], "file_sort_ord": [1, 7, 11], "filenam": 20, "filetyp": 4, "fill": [2, 4, 5, 7, 26, 32], "fill_nan": [4, 7], "fill_nul": [2, 4, 7, 27], "filter": [2, 4, 5, 7, 13, 22, 25, 31, 32, 34, 35], "final": [22, 30], "find": [5, 19, 20, 22, 23, 32], "find_in_set": 5, "finish": [4, 23], "fire": [21, 23, 26, 34, 37], "first": [1, 2, 4, 5, 7, 19, 20, 22, 23, 25, 32, 34, 37], "first_1": 23, "first_2": 23, "first_arrai": 5, "first_nam": 35, "first_valu": [5, 17, 23], "fix": [0, 17], "flag": [5, 16, 17, 20], "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 4, 5, 7, 17, 30, 36], "float64": [7, 17, 26, 30], "floor": [4, 5, 7], "flow": [7, 13], "flower": 26, "fly": [21, 23, 32, 34, 37], "fn": [30, 44], "focus": 19, "folder": [19, 30, 34, 44], "follow": [1, 2, 4, 5, 7, 17, 19, 20, 22, 23, 25, 26, 28, 30, 32, 34, 37], "foo": 33, "footer": 3, "fora": [4, 7], "foreign": 19, "foreign_provid": 19, "foreigntableprovid": 19, "form": [2, 5, 7, 13, 23, 34], "format": [1, 2, 3, 4, 5, 6, 7, 13, 22, 33, 34, 35, 39, 42], "format_argu": 5, "format_html": [3, 36], "format_str": 3, "formatt": [2, 3, 5, 7], "formatted_valu": 3, "formatter_class": 36, "formattermanag": 3, "formatting_context": 36, "forth": 38, "found": [5, 20, 32, 44], "four": 30, "frame": [2, 4, 5, 7, 17, 24, 30], "frame_bound": 4, "framework": 20, "free": [1, 7], "frequent": [19, 20], "fresh": 36, "from": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "from_arrai": [30, 34, 35], "from_arrow": [1, 34, 35, 38], "from_arrow_t": 1, "from_dataset": [0, 7], "from_panda": [1, 35], "from_polar": [1, 34], "from_proto": [7, 13], "from_pycapsul": [7, 17], "from_pydict": [1, 24, 25, 28, 30, 31, 34, 38], "from_pylist": [1, 28, 34], "from_str": 2, "from_substrait_plan": 15, "from_unixtim": [4, 5, 7], "from_val": 5, "fuction": 17, "full": [2, 5, 27, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 4, 12, 14, 17, 18, 19, 22, 24, 27, 33, 34, 36, 43], "function_to_impl": [17, 30], "further": 19, "futher": 5, "futur": [17, 32], "g": [5, 17], "gamma": 34, "gcd": 5, "gener": [4, 7, 13, 14, 15, 17, 18, 19, 20, 21, 34, 37], "geodud": 32, "get": [2, 3, 7, 13, 17, 20, 25, 34, 36], "get_cell_styl": 3, "get_default_level": 2, "get_formatt": [3, 36], "get_frame_unit": [4, 7], "get_header_styl": 3, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 17, "get_table_styl": 36, "get_upper_bound": [4, 7], "get_value_styl": 36, "getenv": 34, "ghost": 23, "gil": 21, "git": 20, "github": [4, 5, 7, 20], "give": [5, 23, 29, 37], "given": [0, 1, 3, 4, 5, 7, 17, 30], "glanc": 19, "global": [1, 2, 3, 7, 11, 35, 36], "global_ctx": 1, "go": [19, 24, 26], "goe": 19, "gold": 5, "good": [19, 20], "googlecloud": [12, 34], "graph": [7, 13], "graphic": [7, 13], "graphviz": [7, 13], "grass": [21, 23, 26, 32, 34, 37], "great": 20, "greater": [4, 5, 7], "greatest": 5, "greatli": [30, 33], "greedi": [1, 7], "green": 25, "grimer": 32, "ground": 23, "group": [1, 2, 4, 5, 7, 11, 17, 22, 23, 24, 32, 35], "group_bi": [2, 23], "groupingset": 4, "guarante": 19, "guid": [1, 27, 33, 35, 36, 37], "gzip": [2, 7], "ha": [1, 2, 3, 5, 7, 17, 19, 25, 29, 34], "handl": [3, 14, 23, 27, 32, 33], "happen": [20, 38], "hardwar": 33, "has_head": [1, 7, 11], "has_mor": [2, 3, 36], "hash": [2, 4, 5, 7, 33], "haskel": 24, "have": [1, 2, 5, 7, 11, 15, 17, 19, 20, 21, 23, 28, 30, 32, 33, 34, 44], "head": 2, "header": [1, 2, 3, 7, 11], "healthi": 20, "heavy_red_unit": 25, "height": [3, 36], "help": [1, 3, 7, 11, 20, 25, 26, 33, 36], "helper": [7, 17], "henc": 17, "here": [2, 5, 7, 19, 26, 29, 30, 32, 33, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 34, "high": [4, 7], "higher": [2, 4, 7, 33], "highli": 30, "highlight": 37, "hint": [1, 17, 20], "homebrew": 20, "host": 1, "how": [1, 2, 4, 5, 7, 17, 19, 23, 24, 27, 28, 30, 32, 33, 34, 35, 36, 37], "howev": [17, 30], "hp": [21, 34, 37], "html": [1, 3, 5, 7, 16], "html_formatt": [3, 7, 18, 36], "http": [1, 4, 5, 7, 12, 13, 15, 16, 34], "hyperbol": [4, 5, 7], "i": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43], "ic": 23, "id": [1, 3, 20, 28], "ideal": 19, "ident": 34, "identifi": [1, 4, 7, 19, 29, 33, 34], "idl": [2, 7], "idx": [17, 30], "ignor": [5, 7, 17, 20, 23, 32], "ignore_nul": [23, 32], "ilik": 4, "immut": [7, 17, 30], "impact": 33, "impl": [30, 44], "implement": [0, 1, 2, 3, 17, 20, 30, 34, 36, 38, 44], "import": [1, 3, 4, 7, 17, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [1, 7, 17, 30, 33, 34, 36], "in_list": [5, 26], "includ": [1, 2, 3, 4, 7, 19, 22, 23, 26, 28, 33, 36], "include_rank": [17, 30], "inclus": [1, 4, 5, 7], "incorpor": 30, "increas": [1, 2, 3, 7, 23, 33], "increment": [17, 19, 30], "indent": [7, 13], "independ": [5, 32], "index": [2, 3, 4, 5, 7, 16, 17, 25], "indic": [3, 4, 5, 7, 25], "individu": [2, 7, 25, 32], "infer": [1, 7, 11], "inform": [1, 2, 4, 7, 8, 15, 16, 17, 19, 30, 33, 35], "information_schema": [1, 7], "infrastructur": 33, "inherit": 34, "init": 20, "initcap": [4, 5, 7], "initi": [2, 3, 4, 5, 7], "inlin": 17, "inlist": 4, "inner": [2, 27, 35], "input": [1, 2, 4, 5, 7, 11, 13, 17, 18, 25, 30], "input_item": [8, 9, 10], "input_typ": [7, 17], "inputsourc": 8, "insert": [1, 7], "insight": 33, "instanc": [1, 3, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19, 33], "insubqueri": 4, "insuffici": 34, "int": [1, 2, 3, 4, 5, 7, 11, 13, 17, 30], "int32": [7, 17, 26], "int64": [7, 17, 24, 26, 30], "integ": [3, 4, 5, 7, 25], "integr": [19, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25], "intercept": 5, "interchang": 42, "interest": 25, "interfac": [1, 5, 19, 21, 22, 30, 32, 34, 38, 44], "intermedi": [7, 17], "intern": 30, "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 20, "introduc": [20, 22, 33], "intuit": 19, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 17, "io": [1, 7, 15, 18, 36], "io_avro": 35, "io_csv": 35, "io_json": 35, "io_parquet": 35, "is_caus": 17, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 25, "is_follow": 4, "is_not_nul": [4, 7, 23], "is_nul": [4, 7, 30], "is_null_arr": 30, "is_preced": 4, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [5, 20, 32, 36], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "iter": [2, 7, 14], "iterat": 2, "its": [2, 5, 7, 13, 17, 19, 21, 32, 36], "itself": 25, "ivi": 26, "ivyfleur": 26, "ivysaur": [21, 26, 32, 34, 37], "java": 24, "javascript": [3, 36, 42], "jigglypuff": 32, "join": [1, 2, 4, 7, 13, 27, 33, 35], "join_kei": [2, 28], "join_on": 2, "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 34, 35, 36, 41], "jupyt": [3, 35, 37], "jupyterlab": 37, "just": 36, "jynx": 23, "kakuna": [21, 32, 34, 37], "keep": [20, 31, 34, 36], "kei": [1, 2, 3, 4, 7, 19, 22, 25, 28, 33, 35], "kept": 2, "kind": [0, 7, 19, 20], "know": [1, 7], "known": 25, "kv_meta": [2, 7], "kwarg": [3, 7, 8, 9, 10], "kwd": [2, 17], "l179": [4, 7], "lab": 37, "label": 2, "lack": 21, "lag": [5, 17, 32], "lambda": [7, 17], "languag": [1, 7, 13, 19], "larg": [2, 7, 26, 33, 36], "large_trip_dist": 29, "larger": [2, 7], "last": [4, 5, 7, 32], "last_nam": 35, "last_valu": [5, 23, 32], "last_with_nul": 32, "last_wo_nul": 32, "latenc": 33, "later": [34, 37, 44], "latest": [1, 5, 16, 19], "latter": 1, "lazi": 22, "lazili": 35, "lcm": 5, "lead": [5, 17, 19, 30, 32, 34], "leaf": [7, 13], "leak": 21, "learn": [19, 24, 32], "least": [5, 17, 23, 28, 30, 36], "leav": [7, 13], "left": [2, 5, 26, 27, 36], "left_on": [2, 28], "leftmost": 5, "legendari": [21, 34, 37], "len": [17, 26], "length": [2, 3, 4, 5, 7, 17], "less": [4, 5, 7], "lesson": 19, "let": [19, 30, 33, 44], "letter": [4, 5, 7, 29], "level": [2, 5, 7, 19, 34], "levenshtein": 5, "leverag": [2, 7, 19], "lib": 20, "lib_dir": 20, "lib_nam": 20, "librari": [7, 8, 19, 21, 37, 38, 44], "lightweight": 42, "like": [1, 2, 3, 4, 5, 7, 8, 19, 20, 21, 26, 34, 35], "limit": [2, 4, 5, 20, 22, 24, 26, 33, 35, 36], "line": [1, 2, 7, 11, 13, 19], "linear": [5, 23], "link": [20, 32], "lint": 20, "linter": 20, "list": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17, 23, 30, 31, 32, 34, 35], "list_append": [5, 20], "list_cat": 5, "list_concat": 5, "list_dim": [4, 5, 7], "list_distinct": [4, 5, 7], "list_el": 5, "list_except": 5, "list_extract": 5, "list_indexof": 5, "list_intersect": 5, "list_join": 5, "list_length": [4, 5, 7], "list_ndim": [4, 5, 7], "list_posit": 5, "list_prepend": 5, "list_push_back": 5, "list_push_front": 5, "list_remov": 5, "list_remove_al": 5, "list_remove_n": 5, "list_repeat": 5, "list_replac": 5, "list_replace_al": 5, "list_replace_n": 5, "list_res": 5, "list_slic": 5, "list_sort": 5, "list_to_str": 5, "list_union": 5, "listingt": 1, "lit": [2, 4, 5, 7, 20, 22, 23, 25, 29, 32, 38], "liter": [2, 4, 7, 26, 27, 29, 30, 31, 35], "literal_with_metadata": [4, 7], "ll": [26, 28, 32], "ln": [4, 5, 7], "load": [3, 33], "local": [1, 19, 20, 33], "localfilesystem": [12, 34], "locat": [1, 9, 18], "locationinputplugin": [9, 10], "lock": 21, "log": [5, 26], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [1, 2, 4, 7, 13, 15, 16, 22, 23, 29, 35, 36], "logical_plan": [2, 15], "logicalplan": [1, 2, 4, 7, 13, 15, 16], "lonely_trip": 29, "long": [3, 19], "long_tim": 25, "longer": [5, 36], "look": [20, 33], "low": [4, 7, 23], "low_passenger_count": 29, "lower": [4, 5, 7, 17, 26, 29], "lowercas": [2, 4, 5, 7], "lowest": [19, 23], "lpad": 5, "ltrim": [4, 5, 7], "lz4": [2, 7], "lz4_raw": [2, 7], "lzo": [2, 7], "m": 20, "mac": 20, "machin": 20, "machop": 32, "made": 29, "magikarp": 23, "magnemit": 32, "mai": [1, 2, 5, 7, 11, 17, 19, 30, 33, 34, 36, 37, 38], "main": [1, 22, 35], "maintain": [1, 2, 19, 22], "major": [20, 21], "make": [5, 19, 20, 21, 26], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [1, 3, 7, 20, 33], "mani": [19, 23, 30, 33, 35, 36], "manipul": [1, 7, 26, 35], "mankei": 32, "manner": 19, "manual": [20, 33], "map": 2, "map_err": 44, "match": [2, 4, 5, 26, 28, 33], "materi": 35, "math": 23, "mathemat": [27, 29, 35], "maturin": 20, "max": [5, 23, 24], "max_cell_length": [3, 7, 36], "max_cpu_usag": 33, "max_height": [3, 7, 36], "max_memory_byt": [3, 36], "max_row": 36, "max_row_group_s": [2, 7], "max_width": [3, 7, 36], "maximum": [1, 2, 3, 5, 7, 11, 36], "maximum_buffered_record_batches_per_stream": [2, 7], "maximum_parallel_row_group_writ": [2, 7], "md5": [4, 5, 7], "mean": [5, 19, 20, 24], "meaning": [5, 29], "meant": [7, 13], "measur": 33, "medal": 5, "median": [5, 23, 24], "member": 20, "memoiz": 17, "memori": [0, 1, 2, 3, 7, 13, 17, 21, 33], "memory_catalog": [0, 7, 34], "memory_schema": [0, 34], "mention": 25, "merg": [7, 17, 28, 30], "messag": [3, 36], "metadata": [1, 2, 4, 5, 7, 11], "metapod": [21, 23, 32, 34, 37], "method": [0, 1, 2, 3, 5, 7, 17, 22, 24, 26, 28, 30, 31, 35, 36], "metric": 2, "metrorid": 28, "microsecond": 5, "microsoftazur": [12, 34], "might": [3, 17, 23, 36], "millisecond": 5, "min": [5, 23, 24], "min_rows_displai": [3, 36], "minimum": [1, 2, 3, 5, 7, 36], "miss": [2, 27], "model": 2, "modifi": [2, 22], "modify_df": 2, "modul": [6, 32, 35, 36], "modulo": [4, 7], "moment": [2, 19], "monitor": 33, "month": [5, 26], "more": [1, 2, 3, 4, 7, 15, 17, 19, 20, 22, 23, 26, 30, 33, 35], "most": [17, 19, 25, 32, 37], "mostli": 20, "much": [17, 20, 36], "multi": 21, "multipl": [1, 2, 3, 4, 5, 7, 17, 23, 26, 28, 30, 32, 33, 34, 35, 36], "must": [1, 2, 4, 5, 7, 17, 23, 25, 29, 30, 32, 38, 44], "my": 36, "my_capsul": 19, "my_catalog": 34, "my_catalog_nam": 34, "my_delta_t": 34, "my_provid": 19, "my_schema": 34, "my_schema_nam": 34, "my_tabl": [31, 34, 44], "my_udaf": 30, "myaccumul": 30, "myformatt": 36, "mysql": 16, "mystyleprovid": 36, "mytablefunct": 30, "mytableprovid": [19, 44], "myusernam": 20, "n": [2, 5, 7], "n_column": [2, 7], "n_file": [2, 7], "n_row_group": [2, 7], "name": [0, 1, 2, 3, 4, 5, 7, 11, 17, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 35, 37, 44], "name_pair": 5, "named_expr": 2, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": 19, "natur": [4, 5, 7], "nearest": [4, 5, 7], "nearli": [33, 34], "necessari": [19, 34], "need": [0, 1, 2, 3, 4, 7, 11, 17, 19, 20, 30, 32, 33, 34, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": 33, "network": 33, "new": [1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 25, 27, 30, 44, 45], "new_bound": [19, 44], "new_err": 44, "new_nam": 2, "next": [5, 7, 14], "nice": 36, "node": [7, 13], "non": [2, 4, 5, 23, 32], "none": [0, 1, 2, 3, 4, 5, 7, 11, 15, 17, 19, 30, 32, 34, 36], "normal": 23, "not_red_unit": 25, "notat": [25, 42], "note": [1, 2, 4, 7, 22, 25, 34, 38], "notebook": [3, 35, 36, 37], "now": [5, 17, 26, 31], "nr": 24, "nth": 36, "nth_valu": [5, 17, 23], "ntile": [5, 32], "null": [2, 4, 5, 7, 24, 26, 28, 30, 38], "null_count": 24, "null_first": 5, "null_treat": [4, 5, 7, 23, 32], "nullabl": 2, "nullif": [5, 26], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 23, 32], "num": [2, 5, 33], "num_centroid": 5, "num_el": 25, "num_row": [7, 17, 30], "number": [1, 2, 3, 4, 5, 7, 11, 13, 17, 20, 25, 26, 30, 32, 33, 36], "numebr": 5, "numer": [2, 4, 5, 7, 33], "nvl": 5, "o": [33, 34, 35, 36], "object": [1, 2, 3, 4, 7, 12, 17, 19, 25, 30, 33, 36, 38, 42], "object_stor": [7, 18, 34], "objectstor": 1, "obtain": [8, 21], "obviou": 19, "occur": [7, 17, 35, 38], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 32, "offend": 20, "offer": [26, 35, 45], "offici": 19, "offset": [2, 4], "often": [32, 33], "old": 2, "old_nam": 2, "older": 34, "olymp": 5, "omit": 28, "on_expr": 2, "onc": [3, 5, 8, 17, 30, 36, 44], "one": [2, 4, 5, 7, 17, 19, 23, 28, 30, 32, 34], "onli": [1, 2, 3, 4, 5, 7, 11, 17, 19, 23, 26, 28, 30, 32, 35, 36], "onlin": [1, 2, 4, 5, 7, 17, 19, 33], "op": [2, 4, 7], "open": 3, "oper": [1, 2, 4, 5, 7, 13, 14, 17, 19, 21, 23, 25, 29, 30, 32, 33, 34, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 20, "optim": [2, 17, 19, 33], "optimized_logical_plan": 2, "option": [0, 1, 2, 3, 4, 5, 7, 11, 17, 20, 22, 23, 26, 33, 34, 35, 36, 37], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 17, 19, 25], "order_bi": [4, 5, 7, 23, 32], "org": [1, 5, 7, 13], "organ": 34, "origin": [2, 5, 30, 34], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "otherwis": [4, 5, 7], "our": [19, 20, 23, 34, 37], "out": [2, 5, 7, 19, 23, 24, 25, 26, 28, 29, 32, 37, 38, 45], "output": [2, 3, 4, 7, 13, 17, 20, 23, 25, 30, 31, 36], "over": [2, 4, 7, 17, 19, 21, 23, 32, 34, 36], "overhead": 17, "overlai": 5, "overlap": 5, "overrid": [2, 7, 30], "overridden": 23, "own": [8, 30, 36], "owner": 0, "owner_nam": 0, "pa": [1, 4, 7, 14, 17, 30, 34, 35, 38], "packag": [5, 19, 20], "pad": [5, 36], "page": [2, 7, 18, 19, 30], "pair": 5, "panda": [1, 2, 22, 24, 34, 35, 45], "pandas_df": [34, 35], "para": 32, "parallel": [1, 2, 7, 33], "param_nam": 3, "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 15, 17, 20, 25, 27, 28, 36], "parasect": 32, "parquet": [1, 2, 7, 11, 19, 21, 22, 29, 33, 34, 35, 36, 41], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "part": [2, 5, 7, 26], "particular": [5, 33], "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23, 33], "partition_bi": [4, 5, 7, 32], "partition_count": [7, 13], "pass": [2, 7, 17, 19, 20, 24, 25, 30, 33, 34], "passenger_count": 29, "path": [1, 2, 7, 11, 15, 20, 34, 35], "path_to_t": 34, "pathlib": [1, 2, 7, 11, 15], "pattern": [5, 19, 33], "pc": [7, 17], "pcre": 5, "pd": [34, 35], "peopl": 5, "per": [2, 3, 17, 32, 36], "percent": 5, "percent_rank": [5, 17, 32], "percentag": 5, "percentil": 5, "perform": [1, 2, 4, 5, 7, 17, 19, 20, 22, 23, 26, 30, 32, 33, 34], "period": 19, "person": 20, "physic": [2, 7, 13, 22], "pi": 5, "pick": 5, "pinsir": 32, "pip": [21, 37], "pixel": [3, 36], "pl": 34, "place": [5, 20, 37], "placehold": 4, "plain": [2, 7, 36], "plain_dictionari": [2, 7], "plan": [1, 2, 4, 7, 15, 16, 17, 18, 21, 22, 35], "plan_intern": 15, "plan_to_sql": 16, "planner": [7, 13], "pleas": 29, "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 20, 35], "pointer_width": 20, "poison": [21, 23, 32, 34, 37], "pokemon": [21, 23, 26, 32, 34, 37, 45], "polar": [1, 2, 34, 35], "polars_df": [34, 35], "pool": [1, 7], "popul": 5, "popular": [26, 34], "portion": 19, "posit": [2, 3, 5, 7, 23], "possibl": [2, 4, 7, 17, 19, 26, 30, 32], "post": 20, "postgr": 16, "postgresql": 16, "potenti": [2, 7, 13], "pow": [5, 26], "power": [5, 26, 30, 32], "pr": 20, "practic": [19, 33], "prece": 5, "preced": [4, 7, 17], "preceed": 32, "precis": [5, 33], "predic": [1, 2, 7, 11], "prefer": 20, "prefix": [5, 19], "prepar": 4, "prepend": 5, "presenc": 26, "present": 28, "preserve_nul": 2, "pretti": 16, "prevent": [20, 36], "previou": [5, 30, 32], "previous": 1, "primari": [9, 25, 35], "principl": 33, "print": [0, 1, 2, 4, 7, 13, 17, 31, 33, 35, 36], "printabl": [7, 13, 17], "prior": [2, 34], "probabl": [2, 7, 23], "process": [17, 23, 32, 33], "processor": 33, "produc": [5, 7, 13, 15, 17, 19, 32], "product": [5, 33, 35], "program": 19, "programmat": [7, 13], "project": [2, 4, 7, 13, 19, 20, 35, 38], "proper": 33, "properti": [0, 2, 4, 7, 13], "proto_byt": 15, "protobuf": [7, 13], "protocol": [1, 3, 17], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 14, 15, 16, 17, 19, 22, 23, 26, 30, 32, 33, 35, 37, 41], "prune": [1, 7, 11], "psychic": 23, "public": [0, 7], "pull": 20, "pure": 20, "push": [20, 34], "pushdown_filt": 33, "put": 29, "py": [1, 2, 7, 15, 19, 30, 33, 44], "py_dict": 35, "py_list": 35, "pyarrow": [0, 1, 2, 4, 7, 11, 14, 17, 19, 24, 30, 34, 35, 38, 45], "pycapsul": [1, 2, 7, 17, 19, 30, 34, 38, 44], "pycapsuleinterfac": 1, "pymethod": [30, 44], "pyo3": [19, 20, 30, 34], "pyo3_build_config": 20, "pyo3_config_fil": 20, "pyo3_print_config": 20, "pyobject": [4, 7], "pypi": 37, "pyproject": 20, "pyresult": [30, 44], "pyruntimeerror": 44, "pyspark": 21, "pytabl": 19, "pytest": 20, "python": [0, 1, 2, 4, 7, 17, 24, 25, 30, 33, 34, 35, 37, 38, 44], "python3": 20, "python_valu": [4, 7], "pythontyp": [4, 7], "queri": [1, 7, 13, 15, 17, 19, 21, 22, 26, 31, 33, 35], "quick": 24, "quit": 43, "quot": 29, "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 5, 7], "ram": 33, "random": [5, 17, 24, 25], "rang": [1, 2, 4, 5, 7, 17, 24, 25, 26, 30, 32, 33, 35], "rank": [5, 17, 30, 32], "ranks_in_partit": 17, "rather": [5, 15], "ratio": 5, "raw": [3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawexpr": [4, 7], "rawschema": [0, 7], "rawtabl": [0, 7], "rb": [7, 14], "re": 19, "read": [1, 2, 7, 9, 10, 11, 15, 19, 34, 35, 36, 37, 39, 40, 42, 43, 45], "read_avro": [1, 7, 11, 35, 39], "read_csv": [1, 7, 11, 21, 22, 23, 32, 34, 35, 37, 40], "read_json": [1, 7, 11, 35, 42], "read_parquet": [1, 7, 11, 22, 29, 33, 35, 43], "read_tabl": 1, "reader": [1, 7, 11, 38], "realiti": 23, "reason": [2, 20], "rebuild": 20, "receiv": [5, 17, 19], "recent": [32, 34], "recommend": [2, 19, 20, 30, 33, 36], "record": [1, 2, 3, 7, 13, 14, 22, 29, 30, 34, 38, 39], "record_batch": [1, 2, 7, 18], "record_batch_stream": [7, 14], "recordbatch": [1, 2, 3, 7, 14, 30, 34, 35], "recordbatchstream": [1, 2, 7, 14], "recursivequeri": 4, "red": [25, 36], "red_or_green_unit": 25, "red_unit": 25, "reduc": [20, 30, 36], "ref": [5, 30, 35], "refer": [2, 3, 5, 19, 22, 26, 35, 36, 45], "referenc": [1, 22], "reflect": 3, "refresh": 3, "regardless": 17, "regener": 20, "regex": 5, "regexp_count": 5, "regexp_lik": 5, "regexp_match": [5, 26], "regexp_replac": [5, 26], "region": 34, "regist": [0, 1, 3, 7, 8, 11, 19, 22, 27, 30, 34, 35, 44, 45], "register_avro": 1, "register_catalog": 34, "register_catalog_provid": 1, "register_csv": [1, 26, 40, 45], "register_dataset": [1, 34], "register_formatt": 3, "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 34], "register_parquet": [1, 34, 43], "register_record_batch": 1, "register_schema": [0, 7, 34], "register_t": [0, 1, 2], "register_table_provid": [1, 34, 44], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 30], "register_udwf": 1, "register_view": [1, 31], "regr_avgi": [5, 23], "regr_avgx": [5, 23], "regr_count": [5, 23], "regr_intercept": [5, 23], "regr_r2": [5, 23], "regr_slop": [5, 23], "regr_sxi": 5, "regr_sxx": [5, 23], "regr_syi": [5, 23], "regress": [5, 23], "regular": [3, 5, 26], "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": 20, "remain": [4, 5, 7, 26], "remot": [9, 10, 33], "remov": [0, 1, 2, 4, 5, 7, 23], "renam": 2, "renamed_ag": 25, "render": 3, "repartit": [1, 2, 4, 7, 33], "repartition_by_hash": [2, 33], "repeat": [5, 25], "repeated_arrai": 25, "replac": [2, 5, 7, 26], "repo": 20, "report": [2, 20], "repositori": [19, 30, 33, 34], "repr": 3, "repr_row": [3, 36], "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 22, 25, 30, 33, 35], "represent": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17], "request": [2, 20], "requested_schema": [1, 2], "requir": [2, 4, 7, 17, 19, 26, 33, 34], "reserv": [1, 7], "reset": [3, 36], "reset_formatt": [3, 36], "resolv": [20, 32], "resourc": [19, 33], "respect": [2, 5, 23, 34], "respect_nul": [5, 23, 32], "rest": [7, 17], "result": [1, 2, 5, 7, 13, 14, 17, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "result_batch": 35, "result_dict": 31, "retriev": [0, 1, 4, 7, 28], "return": [0, 1, 2, 3, 8, 9, 10, 11, 13, 15, 17, 25, 28, 30, 34, 36, 38], "return_typ": [7, 17], "reus": 19, "reusabl": 4, "revers": [4, 5, 7], "review": [19, 20], "rex": [4, 7], "rex_call_oper": [4, 7], "rex_call_operand": [4, 7], "rex_typ": [4, 7], "rextyp": [4, 7], "rfc3339": [4, 5, 7], "rh": [4, 7], "rhyhorn": 32, "rich": [3, 36], "richer": 36, "right": [2, 5, 28], "right_on": [2, 28], "ritchi": 32, "rle": [2, 7], "rle_dictionari": [2, 7], "robin": 2, "rock": 23, "roll": 32, "root": [4, 5, 7, 13], "roption": 19, "round": [2, 5, 22], "rout": 19, "row": [1, 2, 3, 4, 5, 7, 11, 17, 22, 23, 24, 25, 28, 30, 31, 32, 33, 35, 36, 45], "row_count": 3, "row_idx": 3, "row_numb": [5, 17, 32], "rpad": 5, "rresult": 19, "rstring": 19, "rtrim": [4, 5, 7], "rubi": 24, "run": [1, 2, 7, 11, 21, 31, 33, 37], "runnabl": 20, "runtim": [1, 7, 17, 33], "runtimeconfig": 1, "runtimeenvbuild": [1, 7, 33], "rust": [2, 5, 7, 17, 19, 21, 30, 33, 34, 44], "rustc": 19, "rustflag": 20, "rustonomicon": 19, "rvec": 19, "s3": 34, "safe": 19, "safeti": 21, "same": [2, 5, 7, 17, 19, 22, 30], "sampl": [5, 24, 31], "saur": 26, "save": 17, "scalar": [4, 7, 17, 25, 27], "scalarsubqueri": 4, "scalarudf": [1, 7, 17], "scalarudfexport": [7, 17], "scalarvalu": 17, "scalarvari": 4, "scan": [1, 7, 13], "schema": [0, 1, 2, 3, 4, 7, 11, 13, 24, 36], "schema_infer_max_record": [1, 7, 11], "schema_nam": [0, 4, 7], "schemaprovid": 0, "schemaproviderexport": 0, "scheme": 2, "scienc": 26, "score": 5, "script": [3, 33], "search": 5, "second": [5, 22, 23, 25, 34], "second_arrai": 5, "secret_access_kei": 34, "section": [19, 22, 24, 27, 28, 32, 34], "see": [1, 2, 4, 5, 7, 14, 15, 16, 17, 19, 20, 22, 23, 25, 30, 32, 33, 35, 36], "seen": [17, 23], "select": [1, 2, 4, 5, 7, 11, 17, 22, 25, 26, 27, 30, 31, 32, 34, 35, 38, 45], "select_column": 2, "self": [7, 14, 17, 30, 36, 44], "semi": [2, 27], "sensit": [2, 7], "separ": 5, "seper": 5, "sequenc": 2, "serd": 15, "seri": 25, "serial": [2, 7, 15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 19, "session": [1, 3, 7, 30, 33, 36, 37], "session_id": 1, "sessionconfig": [1, 7, 33], "sessioncontext": [1, 2, 5, 7, 8, 13, 15, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43, 44, 45], "sessioncontextintern": 1, "set": [0, 1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 22, 27, 30, 33, 36], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setvari": 4, "sever": [29, 33, 35], "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 19, "share": [3, 19, 20, 22, 25, 38], "shift_offet": 5, "shift_offset": 5, "shot": 17, "should": [1, 4, 5, 7, 8, 11, 13, 15, 20, 23, 28, 30, 32], "show": [2, 3, 19, 21, 22, 24, 25, 28, 30, 32, 33, 34, 35, 36, 37, 44], "show_truncation_messag": [3, 36], "showcas": 33, "shown": 3, "side": [4, 5, 7, 19], "sign": [4, 5, 7], "signific": 34, "significantli": [5, 33], "signum": [4, 5, 7], "silver": 5, "similar": [5, 19, 22, 25, 32], "similarto": 4, "simpl": [5, 20, 29, 33, 42, 43], "simplest": [17, 30], "simpli": [2, 7, 17, 19, 20, 34, 36], "simplifi": 32, "simultan": 33, "sin": [4, 5, 7], "sinc": [2, 23, 30, 34], "sine": [4, 5, 7], "singl": [1, 2, 4, 5, 7, 13, 17, 23, 25, 30, 32, 33, 34], "sinh": [4, 5, 7], "size": [1, 2, 5, 7, 25, 33, 36], "skew": 33, "skip": [1, 2, 7, 11, 17], "skip_arrow_metadata": [2, 7], "skip_metadata": [1, 7, 11], "slice": 5, "slightli": 30, "slope": 5, "slow": 2, "slower": [2, 33], "slowest": 30, "slowpok": 32, "small": [33, 34], "smallest": [17, 23], "smooth_a": 30, "snappi": [2, 7], "snorlax": 32, "so": [1, 2, 7, 19, 20, 29, 30, 32, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 37, 44], "sometim": [1, 7, 19, 34], "soon": [5, 34], "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sortexpr": [1, 2, 4, 5, 7], "sound": 19, "sourc": [1, 5, 7, 8, 9, 10, 11, 19, 20, 22, 33, 35, 36, 37, 38, 44], "sp": [21, 34, 37], "space": [4, 5, 7], "sparingli": 30, "special": [3, 17], "specif": [0, 2, 3, 4, 7, 13, 24, 25, 26, 32, 33, 35, 36], "specifi": [1, 2, 4, 5, 7, 25, 26, 28, 30, 32, 33], "speed": [2, 7, 21, 23, 32, 34, 37], "sphinx": 18, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 30], "split_part": 5, "sql": [1, 7, 13, 15, 16, 17, 21, 22, 25, 29, 31, 34, 35], "sql_with_opt": 1, "sqlite": 16, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 26, "squirtl": [21, 26, 32, 34, 37], "src": [4, 7, 20], "ssd": 33, "stabl": [17, 19, 30], "standard": [5, 19], "start": [4, 5, 7, 17, 25, 29, 32, 36, 37], "start_ag": 25, "start_bound": [4, 7], "started_young": 25, "starts_with": 5, "state": [1, 7, 17, 22, 30], "state_typ": [7, 17], "statement": [1, 4, 5, 7, 22, 45], "static": [0, 1, 2, 4, 7, 13, 15, 16, 17], "statist": [2, 7, 23, 24], "statistics_en": [2, 7], "statistics_truncate_length": [2, 7], "std": 24, "stddev": [5, 23], "stddev_pop": [5, 23], "stddev_samp": 5, "steel": 23, "step": [5, 19], "still": [30, 34], "stop": 5, "storag": [33, 34], "store": [1, 4, 7, 12], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17], "str_lit": 26, "straightforward": [39, 40], "strategi": 33, "stream": [1, 2, 7, 14, 19], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 16, 17, 19, 20, 23, 24, 25, 27, 35], "string1": 5, "string2": 5, "string_agg": [5, 23], "string_list": 5, "string_liter": [4, 7, 26], "string_view": [4, 7, 38], "strong": 21, "strongli": 33, "strpo": 5, "struct": [1, 4, 5, 7, 19, 27, 38], "structarrai": 38, "structur": [7, 13, 19], "style": [3, 19, 25, 35], "style_provid": [3, 36], "styleprovid": [3, 36], "sub": [4, 7], "subfield": [4, 5, 7], "submit": 20, "submodul": 20, "subqueri": 4, "subqueryalia": 4, "subset": [2, 26, 29], "substr": 5, "substr_index": 5, "substrait": [7, 18], "subtract": [4, 7], "suffici": [1, 7, 33], "suffix": 5, "suggest": 34, "sum": [5, 7, 17, 23, 30, 33, 35], "sum_bias_10": [7, 17], "summar": [2, 7, 17], "summari": [2, 23, 24], "support": [2, 3, 4, 5, 7, 13, 15, 16, 19, 28, 30, 34, 35, 36], "supports_bounded_execut": [17, 30], "suppos": [5, 19, 23], "suppress_build_script_link_lin": 20, "sure": 20, "symbol": 2, "sync": 20, "synchon": 19, "syntax": 5, "synthet": 33, "system": [1, 2, 7, 19, 20, 33], "t": [5, 17, 29], "t1": 17, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 17, 19, 22, 24, 26, 27, 28, 33, 35, 36, 37, 38, 40, 41, 43], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 8, 9, 10], "table_partition_col": [1, 7, 11], "table_provid": 1, "table_uuid": [2, 3, 36], "tablefunct": [1, 7, 17], "tableprovid": [19, 44], "tableproviderexport": 1, "tablescan": 4, "tabular": 35, "tag": 3, "tail": 2, "take": [2, 3, 17, 19, 20, 23, 25, 30, 32, 34], "taken": 33, "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7, 33], "target_partit": [1, 7], "task": [26, 38], "taxi": 22, "td": 36, "technic": 21, "techniqu": [33, 34], "tempor": 27, "temporari": [1, 7, 36], "temporarili": 36, "temporary_column": 35, "term": 32, "terminologi": 19, "test": [5, 20, 33, 34], "text": [1, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 33, 36], "thei": [7, 8, 17, 19, 25, 30], "them": [2, 5, 7, 19, 20, 22, 24, 34], "theme": 36, "then_expr": 4, "therefor": 2, "thi": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 44], "third": 22, "thoroughli": 19, "those": [2, 4, 7, 21, 23, 30, 34], "though": 30, "thread": 21, "three": [30, 32, 34], "through": [3, 19, 21, 27, 34, 35, 36, 37], "thu": 17, "thusli": 19, "ticket": 20, "tie": 5, "tight": 19, "tile": 5, "time": [5, 17, 19, 20, 23, 25, 26, 30, 33, 35, 38], "time64": 5, "timestamp": [4, 5, 7, 26], "tip_amount": [22, 29], "tip_perc": 22, "tips_plus_tol": 29, "tlc": [22, 29], "tmp": [1, 7], "to_arrow_t": [2, 35], "to_hex": [4, 5, 7], "to_panda": [2, 24, 26, 35, 45], "to_polar": [2, 35], "to_proto": [7, 13], "to_pyarrow": [7, 14], "to_pyarrow_dataset": 34, "to_pydict": [2, 31, 35], "to_pylist": [2, 35], "to_str": 44, "to_substrait_plan": 15, "to_timestamp": [5, 26], "to_timestamp_micro": 5, "to_timestamp_milli": 5, "to_timestamp_nano": 5, "to_timestamp_second": 5, "to_unixtim": 5, "to_val": 5, "to_vari": [4, 7, 13], "togeth": [2, 5, 23], "toler": [2, 7], "tolls_amount": 29, "toml": 20, "top": 24, "topic": 34, "total": [2, 4, 5, 7, 21, 22, 25, 26, 34, 37], "total_amount": [22, 35], "total_as_float": 26, "total_as_int": 26, "toward": 5, "tr": 36, "tracker": 5, "tradit": 20, "trait": [1, 17, 19], "transact": [1, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 19, "transform": [2, 7, 13, 22, 35], "translat": [5, 19], "treat": [4, 32], "treatment": [4, 7], "tree": [7, 13, 25], "trigger": [2, 36], "trim": [4, 5, 7], "trip": [22, 29, 34], "trip_dist": [22, 29], "trivial": [2, 20], "tru": 2, "true": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 17, 20, 23, 25, 26, 29, 30, 32, 33, 36], "trunc": 5, "truncat": [2, 3, 5, 7, 23, 26, 29, 32, 36], "try": [1, 7, 11, 19], "trycast": 4, "tune": [2, 7, 33], "tupl": [1, 2, 5, 7, 11, 17], "turn": [0, 2, 4, 7, 19], "tutori": 37, "two": [2, 4, 5, 7, 13, 19, 23, 25, 28, 30, 32, 33, 34], "type": [1, 2, 3, 4, 5, 7, 11, 17, 19, 20, 21, 23, 25, 26, 29, 30, 32, 33, 34, 37], "type_class": 3, "typeerror": 3, "typic": [0, 4, 7, 14, 16, 17, 22, 34], "typing_extens": [7, 14], "u": [19, 23, 25, 34], "udaf": [1, 7, 17, 21, 30], "udaf1": [7, 17], "udaf2": [7, 17], "udaf3": [7, 17], "udf": [1, 7, 17, 21, 30], "udf4": [7, 17], "udtf": [7, 17], "udwf": [1, 7, 17], "udwf1": [7, 17], "udwf2": [7, 17], "udwf3": [7, 17], "ultim": 20, "unari": [7, 13], "unbound": [1, 4, 7, 17, 32], "unchang": [2, 26], "uncompress": [2, 7], "undefin": 20, "under": [1, 19], "underli": [4, 7, 17, 19], "understand": 33, "unfortun": 19, "unicod": [4, 5, 7], "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 3, 5, 17, 23], "unit": [4, 7, 32, 34], "unixtim": 5, "unknown": 4, "unlik": [4, 7, 32], "unmatch": 28, "unnest": [2, 4], "unnest_column": 2, "unnestexpr": 4, "unoptim": 2, "unpars": [7, 18], "unsaf": 19, "unspil": [1, 7], "until": 22, "unwrap": 44, "up": [2, 7, 13, 17, 22, 25, 32, 33, 36], "updat": [1, 2, 7, 17, 30], "upon": [5, 19, 30], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 19, "urbango": 28, "url": 1, "us": [1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "usag": [1, 2, 4, 5, 7, 17, 23, 32], "use_shared_styl": [3, 7, 36], "user": [0, 1, 2, 4, 5, 7, 8, 13, 14, 15, 16, 17, 19, 20, 22, 25, 26, 27, 36, 37], "user_defin": [1, 7, 18, 30], "user_id": 35, "uses_window_fram": [17, 30], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [3, 19, 32, 33], "uuid": 5, "uv": 20, "v": [20, 33], "v4": 5, "valid": [1, 2, 3, 4, 7, 8, 9, 10, 17], "valu": [1, 2, 3, 4, 5, 7, 13, 17, 23, 25, 27, 28, 29, 30, 32, 35, 36], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 30, "values_b": 30, "var": 5, "var_pop": [5, 23], "var_samp": [5, 23], "var_sampl": 5, "vari": 33, "variabl": [1, 5, 7, 20, 25], "varianc": 5, "variant": [4, 7, 13, 28], "variant_nam": [4, 7], "varieti": [25, 30, 34], "variou": [35, 36, 37], "vastli": [20, 33], "vec": 19, "vendorid": 29, "venomoth": 32, "venonat": 32, "venu": 26, "venufleur": 26, "venufleurmega": 26, "venusaur": [21, 26, 32, 34, 37], "venusaurmega": [21, 26, 32, 34, 37], "venv": 20, "verbos": 2, "veri": [39, 40], "verifi": 37, "verion": 34, "version": [2, 7, 19, 20, 34], "versu": 33, "via": [1, 7, 15, 17, 19, 20, 21, 25, 28, 30, 34, 35, 37, 44, 45], "view": [1, 24, 26, 27, 37], "view1": 31, "viewtabl": 2, "vink": 32, "virtual": [1, 7, 20], "visual": [7, 13, 22, 36], "volatil": [7, 17, 30], "voltorb": [23, 32], "volum": 33, "vulpix": 23, "wa": [1, 7], "wai": [19, 20, 23, 34, 35, 37], "wait": 19, "want": [19, 20, 23, 26, 30, 32, 36, 44], "wartortl": [21, 34, 37], "water": [21, 23, 26, 34, 37], "we": [2, 19, 20, 22, 23, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38], "weedl": [21, 32, 34, 37], "weight": [5, 25], "welcom": [20, 37], "well": [1, 7, 19, 20], "were": [19, 25], "what": [19, 22], "whatev": 17, "when": [1, 2, 3, 4, 5, 7, 11, 17, 19, 20, 21, 23, 25, 28, 30, 32, 33, 34, 35, 36, 42], "when_expr": 4, "whenev": 20, "where": [2, 4, 5, 7, 13, 23, 25, 26, 30, 31, 32, 34], "wherea": 25, "wherev": 19, "whether": [1, 2, 3, 4, 5, 7, 11, 17, 25], "which": [1, 2, 4, 5, 7, 17, 19, 20, 21, 23, 25, 29, 30, 32, 34, 36, 38], "while": [17, 28, 33], "white": 36, "who": 19, "whole": 23, "wide": [25, 33, 34, 35], "width": [3, 36], "window": [1, 4, 5, 7, 17, 23, 27, 33], "window_fram": [4, 5, 7, 32], "windowevalu": [7, 17, 30], "windowexpr": 4, "windowfram": [4, 5, 7, 32], "windowframebound": [4, 7], "windowudf": [1, 7, 17], "windowudfexport": [7, 17], "wish": [19, 30], "with_allow_ddl": [1, 7], "with_allow_dml": [1, 7], "with_allow_stat": [1, 7], "with_batch_s": [1, 7], "with_column": [2, 35], "with_column_renam": 2, "with_create_default_catalog_and_schema": [1, 7, 33], "with_default_catalog_and_schema": [1, 7, 33], "with_disk_manager_dis": [1, 7], "with_disk_manager_o": [1, 7, 33], "with_disk_manager_specifi": [1, 7], "with_fair_spill_pool": [1, 7, 33], "with_greedy_memory_pool": [1, 7], "with_head": 2, "with_information_schema": [1, 7, 33], "with_parquet_prun": [1, 7, 33], "with_pretti": 16, "with_repartition_aggreg": [1, 7, 33], "with_repartition_file_min_s": [1, 7], "with_repartition_file_scan": [1, 7], "with_repartition_join": [1, 7, 33], "with_repartition_sort": [1, 7], "with_repartition_window": [1, 7, 33], "with_target_partit": [1, 7, 33], "with_temp_file_path": [1, 7], "with_unbounded_memory_pool": [1, 7], "within": [0, 5, 7, 9, 17, 23, 25], "within_limit": 2, "without": [4, 5, 7, 19, 20, 23, 26, 28, 29, 30], "won": 29, "word": [4, 5, 7], "work": [1, 5, 7, 22, 26, 29, 33, 35, 36, 37], "workflow": 20, "workload": 33, "worthwhil": [2, 7], "would": [4, 5, 8, 17, 19], "wrap": [1, 2, 19], "wrapper": [1, 7, 14, 20, 34], "write": [2, 7, 8, 15, 19, 30, 34], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [19, 21, 34], "x": [5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [5, 17, 21, 26, 32, 34, 37], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": 2, "yield": 5, "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 38, 44], "your": [0, 2, 7, 17, 19, 20, 23, 24, 29, 30, 33, 34, 35, 36, 44], "your_tabl": 35, "yourself": 19, "z": [1, 7, 17], "zero": [2, 5, 21, 38], "zstandard": [2, 7], "zstd": [2, 7], "zubat": 23, "\u03c0": 5}, "titles": ["datafusion.catalog", "datafusion.context", "datafusion.dataframe", "datafusion.dataframe_formatter", "datafusion.expr", "datafusion.functions", "datafusion.html_formatter", "datafusion", "datafusion.input.base", "datafusion.input", "datafusion.input.location", "datafusion.io", "datafusion.object_store", "datafusion.plan", "datafusion.record_batch", "datafusion.substrait", "datafusion.unparser", "datafusion.user_defined", "API Reference", "Python Extensions", "Introduction", "DataFusion in Python", "Concepts", "Aggregation", "Basic Operations", "Expressions", "Functions", "Common Operations", "Joins", "Column Selections", "User-Defined Functions", "Registering Views", "Window Functions", "Configuration", "Data Sources", "DataFrames", "HTML Rendering in Jupyter", "Introduction", "Arrow", "Avro", "CSV", "IO", "JSON", "Parquet", "Custom Table Provider", "SQL"], "titleterms": {"The": 19, "addit": 36, "aggreg": [23, 30, 32], "altern": 19, "anti": 28, "api": 18, "approach": 19, "arrai": 25, "arrow": [19, 38], "attribut": [4, 7, 12, 17], "avail": 32, "avro": 39, "base": 8, "basic": [24, 36], "benchmark": 33, "best": 36, "boolean": 25, "build": 20, "built": 35, "cast": 26, "catalog": [0, 34], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 13, 14, 15, 16, 17, 35], "code": 20, "column": [25, 29], "commit": 20, "common": [27, 35], "concept": 22, "condit": 26, "configur": [33, 36], "consider": 33, "content": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "context": [1, 22], "contextu": 36, "control": 36, "core": 35, "cpu": 33, "creat": [34, 35, 36], "csv": 40, "custom": [34, 36, 44], "data": 34, "datafram": [2, 22, 34, 35], "dataframe_formatt": 3, "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 21, 38], "defin": [30, 34], "delta": 34, "depend": 20, "detail": 19, "develop": 20, "displai": 36, "distinct": 23, "exampl": [21, 33], "export": 38, "expr": 4, "express": [22, 25, 35], "extens": 19, "ffi": 19, "file": 34, "fill_nul": 26, "filter": 23, "format": 36, "formatt": 36, "frame": 32, "from": [19, 38], "full": 28, "function": [3, 5, 7, 11, 23, 25, 26, 30, 32, 35], "guidelin": 20, "handl": 26, "hook": 20, "how": 20, "html": [35, 36], "html_formatt": 6, "iceberg": 34, "implement": 19, "import": [33, 38], "improv": 20, "inner": 28, "input": [8, 9, 10], "inspir": 19, "instal": [20, 21, 37], "introduct": [20, 37], "io": [11, 41], "issu": 19, "join": 28, "json": 42, "jupyt": 36, "lake": 34, "left": 28, "librari": 34, "liter": 25, "local": 34, "locat": 10, "manag": 36, "mathemat": 26, "maxim": 33, "memori": [34, 36], "miss": 26, "modul": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17], "null": [23, 32], "object": 34, "object_stor": 12, "oper": [24, 27, 35], "optim": 36, "option": 30, "order": [23, 32], "other": [26, 34], "overview": 35, "packag": [7, 9], "paramet": [23, 32], "parquet": 43, "partit": 32, "perform": 36, "plan": 13, "practic": 36, "pre": 20, "primari": 19, "provid": [34, 36, 44], "python": [19, 20, 21], "record_batch": 14, "refer": 18, "regist": 31, "render": [35, 36], "resourc": 36, "return": [4, 5, 7], "run": 20, "rust": 20, "scalar": 30, "schema": 34, "select": 29, "semi": 28, "separ": 20, "session": 22, "set": [23, 32], "share": 36, "sourc": 34, "speed": 20, "sql": 45, "statu": 19, "store": 34, "string": 26, "struct": 25, "style": 36, "submodul": [7, 9], "substrait": 15, "tabl": [30, 34, 44], "tempor": 26, "termin": 35, "treatment": [23, 32], "udwf": 30, "unpars": 16, "updat": 20, "usag": 33, "user": [30, 34], "user_defin": 17, "valu": 26, "view": 31, "window": [30, 32], "work": 19}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"API Reference": [[18, null]], "Additional Resources": [[36, "additional-resources"]], "Aggregate Functions": [[23, "aggregate-functions"], [30, "aggregate-functions"], [32, "aggregate-functions"]], "Aggregation": [[23, null]], "Alternative Approach": [[19, "alternative-approach"]], "Arrays": [[25, "arrays"]], "Arrow": [[38, null]], "Attributes": [[4, "attributes"], [7, "attributes"], [12, "attributes"], [17, "attributes"]], "Available Functions": [[32, "available-functions"]], "Avro": [[39, null]], "Basic HTML Rendering": [[36, "basic-html-rendering"]], "Basic Operations": [[24, null]], "Benchmark Example": [[33, "benchmark-example"]], "Best Practices": [[36, "best-practices"]], "Boolean": [[25, "boolean"]], "Built-in Functions": [[35, "built-in-functions"]], "CSV": [[40, null]], "Casting": [[26, "casting"]], "Catalog": [[34, "catalog"]], "Classes": [[0, "classes"], [1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"]], "Column": [[25, "column"]], "Column Selections": [[29, null]], "Common DataFrame Operations": [[35, "common-dataframe-operations"]], "Common Operations": [[27, null]], "Concepts": [[22, null]], "Conditional": [[26, "conditional"]], "Configuration": [[33, null]], "Configuring the HTML Formatter": [[36, "configuring-the-html-formatter"]], "Contextual Formatting": [[36, "contextual-formatting"]], "Core Classes": [[35, "core-classes"]], "Create in-memory": [[34, "create-in-memory"]], "Creating DataFrames": [[35, "creating-dataframes"]], "Creating a Custom Formatter": [[36, "creating-a-custom-formatter"]], "Custom Style Providers": [[36, "custom-style-providers"]], "Custom Table Provider": [[34, "custom-table-provider"], [44, null]], "Customizing HTML Rendering": [[36, "customizing-html-rendering"]], "Data Sources": [[34, null]], "DataFrame": [[22, "dataframe"]], "DataFrames": [[35, null]], "DataFusion in Python": [[21, null]], "Delta Lake": [[34, "delta-lake"]], "Distinct": [[23, "distinct"]], "Example": [[21, "example"]], "Exporting from DataFusion": [[38, "exporting-from-datafusion"]], "Expression Classes": [[35, "expression-classes"]], "Expressions": [[22, "expressions"], [25, null]], "Filter": [[23, "filter"]], "Full Join": [[28, "full-join"]], "Functions": [[3, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [25, "functions"], [26, null]], "Guidelines for Separating Python and Rust Code": [[20, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[35, "html-rendering"]], "HTML Rendering in Jupyter": [[36, null]], "Handling Missing Values": [[26, "handling-missing-values"]], "How to develop": [[20, "how-to-develop"]], "IO": [[41, null]], "Iceberg": [[34, "iceberg"]], "Implementation Details": [[19, "implementation-details"]], "Important Considerations": [[33, "important-considerations"]], "Importing to DataFusion": [[38, "importing-to-datafusion"]], "Improving Build Speed": [[20, "improving-build-speed"]], "Inner Join": [[28, "inner-join"]], "Inspiration from Arrow": [[19, "inspiration-from-arrow"]], "Install": [[21, "install"]], "Installation": [[37, "installation"]], "Introduction": [[20, null], [37, null]], "JSON": [[42, null]], "Joins": [[28, null]], "Left Anti Join": [[28, "left-anti-join"]], "Left Join": [[28, "left-join"]], "Left Semi Join": [[28, "left-semi-join"]], "Literal": [[25, "literal"]], "Local file": [[34, "local-file"]], "Managing Formatters": [[36, "managing-formatters"]], "Mathematical": [[26, "mathematical"]], "Maximizing CPU Usage": [[33, "maximizing-cpu-usage"]], "Memory and Display Controls": [[36, "memory-and-display-controls"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"]], "Null Treatment": [[23, "null-treatment"], [32, "null-treatment"]], "Object Store": [[34, "object-store"]], "Ordering": [[23, "ordering"], [32, "ordering"]], "Other": [[26, "other"]], "Other DataFrame Libraries": [[34, "other-dataframe-libraries"]], "Overview": [[35, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parquet": [[43, null]], "Partitions": [[32, "partitions"]], "Performance Optimization with Shared Styles": [[36, "performance-optimization-with-shared-styles"]], "Python Extensions": [[19, null]], "Registering Views": [[31, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[20, "running-installing-pre-commit-hooks"]], "SQL": [[45, null]], "Scalar Functions": [[30, "scalar-functions"]], "Session Context": [[22, "session-context"]], "Setting Parameters": [[23, "setting-parameters"], [32, "setting-parameters"]], "Status of Work": [[19, "status-of-work"]], "String": [[26, "string"]], "Structs": [[25, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[30, "table-functions"]], "Temporal": [[26, "temporal"]], "Terminal Operations": [[35, "terminal-operations"]], "The FFI Approach": [[19, "the-ffi-approach"]], "The Primary Issue": [[19, "the-primary-issue"]], "UDWF options": [[30, "udwf-options"]], "Update Dependencies": [[20, "update-dependencies"]], "User Defined Catalog and Schema": [[34, "user-defined-catalog-and-schema"]], "User-Defined Functions": [[30, null]], "Window Frame": [[32, "window-frame"]], "Window Functions": [[30, "window-functions"], [32, null]], "datafusion": [[7, null]], "datafusion.catalog": [[0, null]], "datafusion.context": [[1, null]], "datafusion.dataframe": [[2, null]], "datafusion.dataframe_formatter": [[3, null]], "datafusion.expr": [[4, null]], "datafusion.functions": [[5, null]], "datafusion.html_formatter": [[6, null]], "datafusion.input": [[9, null]], "datafusion.input.base": [[8, null]], "datafusion.input.location": [[10, null]], "datafusion.io": [[11, null]], "datafusion.object_store": [[12, null]], "datafusion.plan": [[13, null]], "datafusion.record_batch": [[14, null]], "datafusion.substrait": [[15, null]], "datafusion.unparser": [[16, null]], "datafusion.user_defined": [[17, null]], "fill_null": [[26, "fill-null"]]}, "docnames": ["autoapi/datafusion/catalog/index", "autoapi/datafusion/context/index", "autoapi/datafusion/dataframe/index", "autoapi/datafusion/dataframe_formatter/index", "autoapi/datafusion/expr/index", "autoapi/datafusion/functions/index", "autoapi/datafusion/html_formatter/index", "autoapi/datafusion/index", "autoapi/datafusion/input/base/index", "autoapi/datafusion/input/index", "autoapi/datafusion/input/location/index", "autoapi/datafusion/io/index", "autoapi/datafusion/object_store/index", "autoapi/datafusion/plan/index", "autoapi/datafusion/record_batch/index", "autoapi/datafusion/substrait/index", "autoapi/datafusion/unparser/index", "autoapi/datafusion/user_defined/index", "autoapi/index", "contributor-guide/ffi", "contributor-guide/introduction", "index", "user-guide/basics", "user-guide/common-operations/aggregations", "user-guide/common-operations/basic-info", "user-guide/common-operations/expressions", "user-guide/common-operations/functions", "user-guide/common-operations/index", "user-guide/common-operations/joins", "user-guide/common-operations/select-and-filter", "user-guide/common-operations/udf-and-udfa", "user-guide/common-operations/views", "user-guide/common-operations/windows", "user-guide/configuration", "user-guide/data-sources", "user-guide/dataframe/index", "user-guide/dataframe/rendering", "user-guide/introduction", "user-guide/io/arrow", "user-guide/io/avro", "user-guide/io/csv", "user-guide/io/index", "user-guide/io/json", "user-guide/io/parquet", "user-guide/io/table_provider", "user-guide/sql"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["autoapi/datafusion/catalog/index.rst", "autoapi/datafusion/context/index.rst", "autoapi/datafusion/dataframe/index.rst", "autoapi/datafusion/dataframe_formatter/index.rst", "autoapi/datafusion/expr/index.rst", "autoapi/datafusion/functions/index.rst", "autoapi/datafusion/html_formatter/index.rst", "autoapi/datafusion/index.rst", "autoapi/datafusion/input/base/index.rst", "autoapi/datafusion/input/index.rst", "autoapi/datafusion/input/location/index.rst", "autoapi/datafusion/io/index.rst", "autoapi/datafusion/object_store/index.rst", "autoapi/datafusion/plan/index.rst", "autoapi/datafusion/record_batch/index.rst", "autoapi/datafusion/substrait/index.rst", "autoapi/datafusion/unparser/index.rst", "autoapi/datafusion/user_defined/index.rst", "autoapi/index.rst", "contributor-guide/ffi.rst", "contributor-guide/introduction.rst", "index.rst", "user-guide/basics.rst", "user-guide/common-operations/aggregations.rst", "user-guide/common-operations/basic-info.rst", "user-guide/common-operations/expressions.rst", "user-guide/common-operations/functions.rst", "user-guide/common-operations/index.rst", "user-guide/common-operations/joins.rst", "user-guide/common-operations/select-and-filter.rst", "user-guide/common-operations/udf-and-udfa.rst", "user-guide/common-operations/views.rst", "user-guide/common-operations/windows.rst", "user-guide/configuration.rst", "user-guide/data-sources.rst", "user-guide/dataframe/index.rst", "user-guide/dataframe/rendering.rst", "user-guide/introduction.rst", "user-guide/io/arrow.rst", "user-guide/io/avro.rst", "user-guide/io/csv.rst", "user-guide/io/index.rst", "user-guide/io/json.rst", "user-guide/io/parquet.rst", "user-guide/io/table_provider.rst", "user-guide/sql.rst"], "indexentries": {"__add__() (datafusion.expr method)": [[7, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__aiter__", false]], "__aiter__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__aiter__", false]], "__and__() (datafusion.expr method)": [[7, "datafusion.Expr.__and__", false]], "__and__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__and__", false]], "__anext__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__anext__", false]], "__anext__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__anext__", false]], "__arrow_c_array__() (datafusion.context.arrowarrayexportable method)": [[1, "datafusion.context.ArrowArrayExportable.__arrow_c_array__", false]], "__arrow_c_stream__() (datafusion.context.arrowstreamexportable method)": [[1, "datafusion.context.ArrowStreamExportable.__arrow_c_stream__", false]], "__arrow_c_stream__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__arrow_c_stream__", false]], "__call__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__call__", false]], "__call__() (datafusion.dataframe_formatter.cellformatter method)": [[3, "datafusion.dataframe_formatter.CellFormatter.__call__", false]], "__call__() (datafusion.scalarudf method)": [[7, "datafusion.ScalarUDF.__call__", false]], "__call__() (datafusion.tablefunction method)": [[7, "datafusion.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.aggregateudf method)": [[17, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[17, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[17, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[17, "datafusion.user_defined.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__call__", false]], "__datafusion_aggregate_udf__() (datafusion.user_defined.aggregateudfexportable method)": [[17, "datafusion.user_defined.AggregateUDFExportable.__datafusion_aggregate_udf__", false]], "__datafusion_catalog_provider__() (datafusion.context.catalogproviderexportable method)": [[1, "datafusion.context.CatalogProviderExportable.__datafusion_catalog_provider__", false]], "__datafusion_scalar_udf__() (datafusion.user_defined.scalarudfexportable method)": [[17, "datafusion.user_defined.ScalarUDFExportable.__datafusion_scalar_udf__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__datafusion_window_udf__() (datafusion.user_defined.windowudfexportable method)": [[17, "datafusion.user_defined.WindowUDFExportable.__datafusion_window_udf__", false]], "__eq__() (datafusion.expr method)": [[7, "datafusion.Expr.__eq__", false]], "__eq__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__eq__", false]], "__ge__() (datafusion.expr method)": [[7, "datafusion.Expr.__ge__", false]], "__ge__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__ge__", false]], "__getitem__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__getitem__", false]], "__getitem__() (datafusion.expr method)": [[7, "datafusion.Expr.__getitem__", false]], "__getitem__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__getitem__", false]], "__gt__() (datafusion.expr method)": [[7, "datafusion.Expr.__gt__", false]], "__gt__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__gt__", false]], "__invert__() (datafusion.expr method)": [[7, "datafusion.Expr.__invert__", false]], "__invert__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__invert__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__iter__", false]], "__iter__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__iter__", false]], "__le__() (datafusion.expr method)": [[7, "datafusion.Expr.__le__", false]], "__le__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__le__", false]], "__lt__() (datafusion.expr method)": [[7, "datafusion.Expr.__lt__", false]], "__lt__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__lt__", false]], "__mod__() (datafusion.expr method)": [[7, "datafusion.Expr.__mod__", false]], "__mod__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__mod__", false]], "__mul__() (datafusion.expr method)": [[7, "datafusion.Expr.__mul__", false]], "__mul__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__mul__", false]], "__ne__() (datafusion.expr method)": [[7, "datafusion.Expr.__ne__", false]], "__ne__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__ne__", false]], "__next__() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.__next__", false]], "__next__() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.__next__", false]], "__or__() (datafusion.expr method)": [[7, "datafusion.Expr.__or__", false]], "__or__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__or__", false]], "__radd__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__radd__", false]], "__radd__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__radd__", false]], "__rand__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rand__", false]], "__rand__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rand__", false]], "__repr__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__repr__", false]], "__repr__() (datafusion.catalog method)": [[7, "datafusion.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.__repr__", false]], "__repr__() (datafusion.catalog.table method)": [[0, "datafusion.catalog.Table.__repr__", false]], "__repr__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__repr__", false]], "__repr__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__repr__", false]], "__repr__() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.expr method)": [[7, "datafusion.Expr.__repr__", false]], "__repr__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__repr__", false]], "__repr__() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.__repr__", false]], "__repr__() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.__repr__", false]], "__repr__() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.__repr__", false]], "__repr__() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.__repr__", false]], "__repr__() (datafusion.scalarudf method)": [[7, "datafusion.ScalarUDF.__repr__", false]], "__repr__() (datafusion.table method)": [[7, "datafusion.Table.__repr__", false]], "__repr__() (datafusion.tablefunction method)": [[7, "datafusion.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.aggregateudf method)": [[17, "datafusion.user_defined.AggregateUDF.__repr__", false]], "__repr__() (datafusion.user_defined.scalarudf method)": [[17, "datafusion.user_defined.ScalarUDF.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[17, "datafusion.user_defined.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.windowudf method)": [[17, "datafusion.user_defined.WindowUDF.__repr__", false]], "__repr__() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.__repr__", false]], "__repr__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__repr__", false]], "__richcmp__() (datafusion.expr method)": [[7, "datafusion.Expr.__richcmp__", false]], "__richcmp__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__richcmp__", false]], "__rmod__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rmod__", false]], "__rmod__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rmod__", false]], "__rmul__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rmul__", false]], "__rmul__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rmul__", false]], "__ror__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__ror__", false]], "__ror__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__ror__", false]], "__rsub__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rsub__", false]], "__rsub__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rsub__", false]], "__rtruediv__ (datafusion.expr attribute)": [[7, "datafusion.Expr.__rtruediv__", false]], "__rtruediv__ (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.__rtruediv__", false]], "__str__() (datafusion.user_defined.volatility method)": [[17, "datafusion.user_defined.Volatility.__str__", false]], "__sub__() (datafusion.expr method)": [[7, "datafusion.Expr.__sub__", false]], "__sub__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__sub__", false]], "__truediv__() (datafusion.expr method)": [[7, "datafusion.Expr.__truediv__", false]], "__truediv__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__truediv__", false]], "_build_expandable_cell() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_expandable_cell", false]], "_build_html_footer() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_html_footer", false]], "_build_html_header() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_html_header", false]], "_build_regular_cell() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_regular_cell", false]], "_build_table_body() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_body", false]], "_build_table_container_start() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_container_start", false]], "_build_table_header() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._build_table_header", false]], "_convert_table_partition_cols() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_table_partition_cols", false]], "_create_table_udf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction._create_table_udf", false]], "_create_table_udf_decorator() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf_decorator", false]], "_create_table_udf_decorator() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._create_window_udf", false]], "_create_window_udf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._create_window_udf", false]], "_create_window_udf_decorator() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._create_window_udf_decorator", false]], "_create_window_udf_decorator() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._create_window_udf_decorator", false]], "_custom_cell_builder (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._custom_cell_builder", false]], "_custom_header_builder (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._custom_header_builder", false]], "_default_formatter (datafusion.dataframe_formatter.formattermanager attribute)": [[3, "datafusion.dataframe_formatter.FormatterManager._default_formatter", false]], "_format_cell_value() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._format_cell_value", false]], "_get_cell_value() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_cell_value", false]], "_get_default_css() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_default_css", false]], "_get_default_name() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._get_default_name", false]], "_get_default_name() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._get_default_name", false]], "_get_javascript() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF._normalize_input_types", false]], "_normalize_input_types() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF._normalize_input_types", false]], "_null_treatment (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._null_treatment", false]], "_order_by (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._order_by", false]], "_partition_by (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._partition_by", false]], "_r (in module datafusion.user_defined)": [[17, "datafusion.user_defined._R", false]], "_raw_plan (datafusion.executionplan attribute)": [[7, "datafusion.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.logicalplan attribute)": [[7, "datafusion.LogicalPlan._raw_plan", false]], "_raw_plan (datafusion.plan.executionplan attribute)": [[13, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[13, "datafusion.plan.LogicalPlan._raw_plan", false]], "_raw_schema (datafusion.catalog.schema attribute)": [[0, "datafusion.catalog.Schema._raw_schema", false]], "_refresh_formatter_reference() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._refresh_formatter_reference", false]], "_repr_html_() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame._repr_html_", false]], "_to_pyarrow_types (datafusion.expr attribute)": [[7, "datafusion.Expr._to_pyarrow_types", false]], "_to_pyarrow_types (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr._to_pyarrow_types", false]], "_type_formatters (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._type_formatters", false]], "_udaf (datafusion.aggregateudf attribute)": [[7, "datafusion.AggregateUDF._udaf", false]], "_udaf (datafusion.user_defined.aggregateudf attribute)": [[17, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[7, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[17, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.tablefunction attribute)": [[7, "datafusion.TableFunction._udtf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[17, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[17, "datafusion.user_defined.WindowUDF._udwf", false]], "_udwf (datafusion.windowudf attribute)": [[7, "datafusion.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_bool", false]], "_validate_positive_int() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_positive_int", false]], "_window_frame (datafusion.expr.window attribute)": [[4, "datafusion.expr.Window._window_frame", false]], "abs() (datafusion.expr method)": [[7, "datafusion.Expr.abs", false]], "abs() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.abs", false]], "abs() (in module datafusion.functions)": [[5, "datafusion.functions.abs", false]], "accumulator (class in datafusion)": [[7, "datafusion.Accumulator", false]], "accumulator (class in datafusion.user_defined)": [[17, "datafusion.user_defined.Accumulator", false]], "acos() (datafusion.expr method)": [[7, "datafusion.Expr.acos", false]], "acos() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.acos", false]], "acos() (in module datafusion.functions)": [[5, "datafusion.functions.acos", false]], "acosh() (datafusion.expr method)": [[7, "datafusion.Expr.acosh", false]], "acosh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.acosh", false]], "acosh() (in module datafusion.functions)": [[5, "datafusion.functions.acosh", false]], "aggregate (in module datafusion.expr)": [[4, "datafusion.expr.Aggregate", false]], "aggregate() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.aggregate", false]], "aggregatefunction (in module datafusion.expr)": [[4, "datafusion.expr.AggregateFunction", false]], "aggregateudf (class in datafusion)": [[7, "datafusion.AggregateUDF", false]], "aggregateudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.AggregateUDF", false]], "aggregateudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.AggregateUDFExportable", false]], "alias (in module datafusion.expr)": [[4, "datafusion.expr.Alias", false]], "alias() (datafusion.expr method)": [[7, "datafusion.Expr.alias", false]], "alias() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.alias", false]], "alias() (in module datafusion.functions)": [[5, "datafusion.functions.alias", false]], "allow_single_file_parallelism (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.allow_single_file_parallelism", false], [2, "id7", false]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false], [7, "id8", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "approx_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.approx_distinct", false]], "approx_median() (in module datafusion.functions)": [[5, "datafusion.functions.approx_median", false]], "approx_percentile_cont() (in module datafusion.functions)": [[5, "datafusion.functions.approx_percentile_cont", false]], "approx_percentile_cont_with_weight() (in module datafusion.functions)": [[5, "datafusion.functions.approx_percentile_cont_with_weight", false]], "array() (in module datafusion.functions)": [[5, "datafusion.functions.array", false]], "array_agg() (in module datafusion.functions)": [[5, "datafusion.functions.array_agg", false]], "array_append() (in module datafusion.functions)": [[5, "datafusion.functions.array_append", false]], "array_cat() (in module datafusion.functions)": [[5, "datafusion.functions.array_cat", false]], "array_concat() (in module datafusion.functions)": [[5, "datafusion.functions.array_concat", false]], "array_dims() (datafusion.expr method)": [[7, "datafusion.Expr.array_dims", false]], "array_dims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_dims", false]], "array_dims() (in module datafusion.functions)": [[5, "datafusion.functions.array_dims", false]], "array_distinct() (datafusion.expr method)": [[7, "datafusion.Expr.array_distinct", false]], "array_distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_distinct", false]], "array_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.array_distinct", false]], "array_element() (in module datafusion.functions)": [[5, "datafusion.functions.array_element", false]], "array_empty() (datafusion.expr method)": [[7, "datafusion.Expr.array_empty", false]], "array_empty() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_empty", false]], "array_empty() (in module datafusion.functions)": [[5, "datafusion.functions.array_empty", false]], "array_except() (in module datafusion.functions)": [[5, "datafusion.functions.array_except", false]], "array_extract() (in module datafusion.functions)": [[5, "datafusion.functions.array_extract", false]], "array_has() (in module datafusion.functions)": [[5, "datafusion.functions.array_has", false]], "array_has_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_has_all", false]], "array_has_any() (in module datafusion.functions)": [[5, "datafusion.functions.array_has_any", false]], "array_indexof() (in module datafusion.functions)": [[5, "datafusion.functions.array_indexof", false]], "array_intersect() (in module datafusion.functions)": [[5, "datafusion.functions.array_intersect", false]], "array_join() (in module datafusion.functions)": [[5, "datafusion.functions.array_join", false]], "array_length() (datafusion.expr method)": [[7, "datafusion.Expr.array_length", false]], "array_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_length", false]], "array_length() (in module datafusion.functions)": [[5, "datafusion.functions.array_length", false]], "array_ndims() (datafusion.expr method)": [[7, "datafusion.Expr.array_ndims", false]], "array_ndims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_ndims", false]], "array_ndims() (in module datafusion.functions)": [[5, "datafusion.functions.array_ndims", false]], "array_pop_back() (datafusion.expr method)": [[7, "datafusion.Expr.array_pop_back", false]], "array_pop_back() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_pop_back", false]], "array_pop_back() (in module datafusion.functions)": [[5, "datafusion.functions.array_pop_back", false]], "array_pop_front() (datafusion.expr method)": [[7, "datafusion.Expr.array_pop_front", false]], "array_pop_front() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.array_pop_front", false]], "array_pop_front() (in module datafusion.functions)": [[5, "datafusion.functions.array_pop_front", false]], "array_position() (in module datafusion.functions)": [[5, "datafusion.functions.array_position", false]], "array_positions() (in module datafusion.functions)": [[5, "datafusion.functions.array_positions", false]], "array_prepend() (in module datafusion.functions)": [[5, "datafusion.functions.array_prepend", false]], "array_push_back() (in module datafusion.functions)": [[5, "datafusion.functions.array_push_back", false]], "array_push_front() (in module datafusion.functions)": [[5, "datafusion.functions.array_push_front", false]], "array_remove() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove", false]], "array_remove_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove_all", false]], "array_remove_n() (in module datafusion.functions)": [[5, "datafusion.functions.array_remove_n", false]], "array_repeat() (in module datafusion.functions)": [[5, "datafusion.functions.array_repeat", false]], "array_replace() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace", false]], "array_replace_all() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace_all", false]], "array_replace_n() (in module datafusion.functions)": [[5, "datafusion.functions.array_replace_n", false]], "array_resize() (in module datafusion.functions)": [[5, "datafusion.functions.array_resize", false]], "array_slice() (in module datafusion.functions)": [[5, "datafusion.functions.array_slice", false]], "array_sort() (in module datafusion.functions)": [[5, "datafusion.functions.array_sort", false]], "array_to_string() (in module datafusion.functions)": [[5, "datafusion.functions.array_to_string", false]], "array_union() (in module datafusion.functions)": [[5, "datafusion.functions.array_union", false]], "arrow_cast() (in module datafusion.functions)": [[5, "datafusion.functions.arrow_cast", false]], "arrow_typeof() (datafusion.expr method)": [[7, "datafusion.Expr.arrow_typeof", false]], "arrow_typeof() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.arrow_typeof", false]], "arrow_typeof() (in module datafusion.functions)": [[5, "datafusion.functions.arrow_typeof", false]], "arrowarrayexportable (class in datafusion.context)": [[1, "datafusion.context.ArrowArrayExportable", false]], "arrowstreamexportable (class in datafusion.context)": [[1, "datafusion.context.ArrowStreamExportable", false]], "ascending() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.ascending", false]], "ascii() (datafusion.expr method)": [[7, "datafusion.Expr.ascii", false]], "ascii() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ascii", false]], "ascii() (in module datafusion.functions)": [[5, "datafusion.functions.ascii", false]], "asin() (datafusion.expr method)": [[7, "datafusion.Expr.asin", false]], "asin() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.asin", false]], "asin() (in module datafusion.functions)": [[5, "datafusion.functions.asin", false]], "asinh() (datafusion.expr method)": [[7, "datafusion.Expr.asinh", false]], "asinh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.asinh", false]], "asinh() (in module datafusion.functions)": [[5, "datafusion.functions.asinh", false]], "atan() (datafusion.expr method)": [[7, "datafusion.Expr.atan", false]], "atan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.atan", false]], "atan() (in module datafusion.functions)": [[5, "datafusion.functions.atan", false]], "atan2() (in module datafusion.functions)": [[5, "datafusion.functions.atan2", false]], "atanh() (datafusion.expr method)": [[7, "datafusion.Expr.atanh", false]], "atanh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.atanh", false]], "atanh() (in module datafusion.functions)": [[5, "datafusion.functions.atanh", false]], "avg() (in module datafusion.functions)": [[5, "datafusion.functions.avg", false]], "baseinputsource (class in datafusion.input.base)": [[8, "datafusion.input.base.BaseInputSource", false]], "between (in module datafusion.expr)": [[4, "datafusion.expr.Between", false]], "between() (datafusion.expr method)": [[7, "datafusion.Expr.between", false]], "between() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.between", false]], "binaryexpr (in module datafusion.expr)": [[4, "datafusion.expr.BinaryExpr", false]], "bit_and() (in module datafusion.functions)": [[5, "datafusion.functions.bit_and", false]], "bit_length() (datafusion.expr method)": [[7, "datafusion.Expr.bit_length", false]], "bit_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.bit_length", false]], "bit_length() (in module datafusion.functions)": [[5, "datafusion.functions.bit_length", false]], "bit_or() (in module datafusion.functions)": [[5, "datafusion.functions.bit_or", false]], "bit_xor() (in module datafusion.functions)": [[5, "datafusion.functions.bit_xor", false]], "bloom_filter_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_enabled", false], [2, "id0", false]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false], [7, "id0", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false], [2, "id1", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false], [2, "id8", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false], [7, "id2", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false], [7, "id9", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false], [2, "id2", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false], [2, "id9", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false], [7, "id3", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false], [7, "id10", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false], [2, "id10", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", false], [7, "id11", false]], "bool_and() (in module datafusion.functions)": [[5, "datafusion.functions.bool_and", false]], "bool_or() (in module datafusion.functions)": [[5, "datafusion.functions.bool_or", false]], "brotli (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.BROTLI", false]], "btrim() (datafusion.expr method)": [[7, "datafusion.Expr.btrim", false]], "btrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.btrim", false]], "btrim() (in module datafusion.functions)": [[5, "datafusion.functions.btrim", false]], "build_table() (datafusion.input.base.baseinputsource method)": [[8, "datafusion.input.base.BaseInputSource.build_table", false]], "build_table() (datafusion.input.location.locationinputplugin method)": [[10, "datafusion.input.location.LocationInputPlugin.build_table", false]], "build_table() (datafusion.input.locationinputplugin method)": [[9, "datafusion.input.LocationInputPlugin.build_table", false]], "cache() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cache", false]], "canonical_name() (datafusion.expr method)": [[7, "datafusion.Expr.canonical_name", false]], "canonical_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.canonical_name", false]], "cardinality() (datafusion.expr method)": [[7, "datafusion.Expr.cardinality", false]], "cardinality() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cardinality", false]], "cardinality() (in module datafusion.functions)": [[5, "datafusion.functions.cardinality", false]], "case (in module datafusion.expr)": [[4, "datafusion.expr.Case", false]], "case() (in module datafusion.functions)": [[5, "datafusion.functions.case", false]], "case_builder (datafusion.expr.casebuilder attribute)": [[4, "datafusion.expr.CaseBuilder.case_builder", false]], "casebuilder (class in datafusion.expr)": [[4, "datafusion.expr.CaseBuilder", false]], "cast (in module datafusion.expr)": [[4, "datafusion.expr.Cast", false]], "cast() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cast", false]], "cast() (datafusion.expr method)": [[7, "datafusion.Expr.cast", false]], "cast() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cast", false]], "catalog (class in datafusion)": [[7, "datafusion.Catalog", false]], "catalog (class in datafusion.catalog)": [[0, "datafusion.catalog.Catalog", false]], "catalog (datafusion.catalog attribute)": [[7, "datafusion.Catalog.catalog", false]], "catalog (datafusion.catalog.catalog attribute)": [[0, "datafusion.catalog.Catalog.catalog", false]], "catalog() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog", false]], "catalog_names() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog_names", false]], "catalogprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProvider", false]], "catalogproviderexportable (class in datafusion.context)": [[1, "datafusion.context.CatalogProviderExportable", false]], "cbrt() (datafusion.expr method)": [[7, "datafusion.Expr.cbrt", false]], "cbrt() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cbrt", false]], "cbrt() (in module datafusion.functions)": [[5, "datafusion.functions.cbrt", false]], "ceil() (datafusion.expr method)": [[7, "datafusion.Expr.ceil", false]], "ceil() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ceil", false]], "ceil() (in module datafusion.functions)": [[5, "datafusion.functions.ceil", false]], "cellformatter (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.CellFormatter", false]], "char_length() (datafusion.expr method)": [[7, "datafusion.Expr.char_length", false]], "char_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.char_length", false]], "char_length() (in module datafusion.functions)": [[5, "datafusion.functions.char_length", false]], "character_length() (datafusion.expr method)": [[7, "datafusion.Expr.character_length", false]], "character_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.character_length", false]], "character_length() (in module datafusion.functions)": [[5, "datafusion.functions.character_length", false]], "children() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.children", false]], "children() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.children", false]], "chr() (datafusion.expr method)": [[7, "datafusion.Expr.chr", false]], "chr() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.chr", false]], "chr() (in module datafusion.functions)": [[5, "datafusion.functions.chr", false]], "coalesce() (in module datafusion.functions)": [[5, "datafusion.functions.coalesce", false]], "col (in module datafusion)": [[7, "datafusion.col", false]], "col() (in module datafusion.functions)": [[5, "datafusion.functions.col", false]], "collect() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect", false]], "collect_partitioned() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_partitioned", false]], "column (in module datafusion)": [[7, "datafusion.column", false]], "column (in module datafusion.expr)": [[4, "datafusion.expr.Column", false]], "column() (datafusion.expr static method)": [[7, "datafusion.Expr.column", false]], "column() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.column", false]], "column_index_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.column_index_truncate_length", false], [2, "id11", false]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", false], [7, "id12", false]], "column_name() (datafusion.expr method)": [[7, "datafusion.Expr.column_name", false]], "column_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.column_name", false]], "column_specific_options (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.column_specific_options", false], [2, "id12", false]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false], [7, "id13", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false], [2, "id3", false]], "compression (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.compression", false], [7, "id4", false]], "compression (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.compression", false]], "concat() (in module datafusion.functions)": [[5, "datafusion.functions.concat", false]], "concat_ws() (in module datafusion.functions)": [[5, "datafusion.functions.concat_ws", false]], "config_internal (datafusion.context.runtimeenvbuilder attribute)": [[1, "datafusion.context.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.context.sessionconfig attribute)": [[1, "datafusion.context.SessionConfig.config_internal", false]], "config_internal (datafusion.runtimeenvbuilder attribute)": [[7, "datafusion.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.sessionconfig attribute)": [[7, "datafusion.SessionConfig.config_internal", false]], "configure_formatter() (in module datafusion)": [[7, "datafusion.configure_formatter", false]], "configure_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.configure_formatter", false]], "consumer (class in datafusion.substrait)": [[15, "datafusion.substrait.Consumer", false]], "copyto (in module datafusion.expr)": [[4, "datafusion.expr.CopyTo", false]], "corr() (in module datafusion.functions)": [[5, "datafusion.functions.corr", false]], "cos() (datafusion.expr method)": [[7, "datafusion.Expr.cos", false]], "cos() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cos", false]], "cos() (in module datafusion.functions)": [[5, "datafusion.functions.cos", false]], "cosh() (datafusion.expr method)": [[7, "datafusion.Expr.cosh", false]], "cosh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cosh", false]], "cosh() (in module datafusion.functions)": [[5, "datafusion.functions.cosh", false]], "cot() (datafusion.expr method)": [[7, "datafusion.Expr.cot", false]], "cot() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.cot", false]], "cot() (in module datafusion.functions)": [[5, "datafusion.functions.cot", false]], "count() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.count", false]], "count() (in module datafusion.functions)": [[5, "datafusion.functions.count", false]], "count_star() (in module datafusion.functions)": [[5, "datafusion.functions.count_star", false]], "covar() (in module datafusion.functions)": [[5, "datafusion.functions.covar", false]], "covar_pop() (in module datafusion.functions)": [[5, "datafusion.functions.covar_pop", false]], "covar_samp() (in module datafusion.functions)": [[5, "datafusion.functions.covar_samp", false]], "create_dataframe() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.create_dataframe", false]], "create_dataframe_from_logical_plan() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.create_dataframe_from_logical_plan", false]], "createcatalog (in module datafusion.expr)": [[4, "datafusion.expr.CreateCatalog", false]], "createcatalogschema (in module datafusion.expr)": [[4, "datafusion.expr.CreateCatalogSchema", false]], "created_by (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.created_by", false], [2, "id13", false]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", false], [7, "id14", false]], "createexternaltable (in module datafusion.expr)": [[4, "datafusion.expr.CreateExternalTable", false]], "createfunction (in module datafusion.expr)": [[4, "datafusion.expr.CreateFunction", false]], "createfunctionbody (in module datafusion.expr)": [[4, "datafusion.expr.CreateFunctionBody", false]], "createindex (in module datafusion.expr)": [[4, "datafusion.expr.CreateIndex", false]], "creatememorytable (in module datafusion.expr)": [[4, "datafusion.expr.CreateMemoryTable", false]], "createview (in module datafusion.expr)": [[4, "datafusion.expr.CreateView", false]], "ctx (datafusion.context.sessioncontext attribute)": [[1, "datafusion.context.SessionContext.ctx", false]], "cume_dist() (in module datafusion.functions)": [[5, "datafusion.functions.cume_dist", false]], "current_date() (in module datafusion.functions)": [[5, "datafusion.functions.current_date", false]], "current_time() (in module datafusion.functions)": [[5, "datafusion.functions.current_time", false]], "custom_css (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.custom_css", false]], "data_page_row_count_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_page_row_count_limit", false], [2, "id14", false]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false], [7, "id15", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false], [2, "id15", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", false], [7, "id16", false]], "database (class in datafusion)": [[7, "datafusion.Database", false]], "database() (datafusion.catalog method)": [[7, "datafusion.Catalog.database", false]], "database() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.database", false]], "dataframe (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrame", false]], "dataframehtmlformatter (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter", false]], "datafusion": [[7, "module-datafusion", false]], "datafusion.catalog": [[0, "module-datafusion.catalog", false]], "datafusion.context": [[1, "module-datafusion.context", false]], "datafusion.dataframe": [[2, "module-datafusion.dataframe", false]], "datafusion.dataframe_formatter": [[3, "module-datafusion.dataframe_formatter", false]], "datafusion.expr": [[4, "module-datafusion.expr", false]], "datafusion.functions": [[5, "module-datafusion.functions", false]], "datafusion.html_formatter": [[6, "module-datafusion.html_formatter", false]], "datafusion.input": [[9, "module-datafusion.input", false]], "datafusion.input.base": [[8, "module-datafusion.input.base", false]], "datafusion.input.location": [[10, "module-datafusion.input.location", false]], "datafusion.io": [[11, "module-datafusion.io", false]], "datafusion.object_store": [[12, "module-datafusion.object_store", false]], "datafusion.plan": [[13, "module-datafusion.plan", false]], "datafusion.record_batch": [[14, "module-datafusion.record_batch", false]], "datafusion.substrait": [[15, "module-datafusion.substrait", false]], "datafusion.unparser": [[16, "module-datafusion.unparser", false]], "datafusion.user_defined": [[17, "module-datafusion.user_defined", false]], "date_bin() (in module datafusion.functions)": [[5, "datafusion.functions.date_bin", false]], "date_part() (in module datafusion.functions)": [[5, "datafusion.functions.date_part", false]], "date_trunc() (in module datafusion.functions)": [[5, "datafusion.functions.date_trunc", false]], "datepart() (in module datafusion.functions)": [[5, "datafusion.functions.datepart", false]], "datetrunc() (in module datafusion.functions)": [[5, "datafusion.functions.datetrunc", false]], "deallocate (in module datafusion.expr)": [[4, "datafusion.expr.Deallocate", false]], "decode() (in module datafusion.functions)": [[5, "datafusion.functions.decode", false]], "default() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.default", false]], "default_str_repr() (datafusion.dataframe.dataframe static method)": [[2, "datafusion.dataframe.DataFrame.default_str_repr", false]], "defaultstyleprovider (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider", false]], "degrees() (datafusion.expr method)": [[7, "datafusion.Expr.degrees", false]], "degrees() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.degrees", false]], "degrees() (in module datafusion.functions)": [[5, "datafusion.functions.degrees", false]], "dense_rank() (in module datafusion.functions)": [[5, "datafusion.functions.dense_rank", false]], "deregister_schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.deregister_schema", false]], "deregister_schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.deregister_schema", false]], "deregister_schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.deregister_schema", false]], "deregister_table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.deregister_table", false]], "deregister_table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.deregister_table", false]], "deregister_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.deregister_table", false]], "describe() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.describe", false]], "describetable (in module datafusion.expr)": [[4, "datafusion.expr.DescribeTable", false]], "deserialize() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.deserialize_bytes", false]], "df (datafusion.dataframe.dataframe attribute)": [[2, "datafusion.dataframe.DataFrame.df", false]], "dfschema (in module datafusion)": [[7, "datafusion.DFSchema", false]], "dialect (class in datafusion.unparser)": [[16, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[16, "datafusion.unparser.Dialect.dialect", false]], "dictionary_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.dictionary_enabled", false], [2, "id4", false]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false], [2, "id16", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false], [7, "id5", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false], [7, "id17", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false], [2, "id17", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", false], [7, "id18", false]], "digest() (in module datafusion.functions)": [[5, "datafusion.functions.digest", false]], "display() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.display", false]], "display() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display", false]], "display() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_graphviz", false]], "display_indent() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_indent", false]], "display_indent() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_indent", false]], "display_indent_schema() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_indent_schema", false]], "display_indent_schema() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.display_indent_schema", false]], "display_name() (datafusion.expr method)": [[7, "datafusion.Expr.display_name", false]], "display_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.display_name", false]], "distinct (in module datafusion.expr)": [[4, "datafusion.expr.Distinct", false]], "distinct() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.distinct", false]], "distinct() (datafusion.expr method)": [[7, "datafusion.Expr.distinct", false]], "distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.distinct", false]], "dmlstatement (in module datafusion.expr)": [[4, "datafusion.expr.DmlStatement", false]], "drop() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.drop", false]], "dropcatalogschema (in module datafusion.expr)": [[4, "datafusion.expr.DropCatalogSchema", false]], "dropfunction (in module datafusion.expr)": [[4, "datafusion.expr.DropFunction", false]], "droptable (in module datafusion.expr)": [[4, "datafusion.expr.DropTable", false]], "dropview (in module datafusion.expr)": [[4, "datafusion.expr.DropView", false]], "duckdb() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.duckdb", false]], "empty() (datafusion.expr method)": [[7, "datafusion.Expr.empty", false]], "empty() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.empty", false]], "empty() (in module datafusion.functions)": [[5, "datafusion.functions.empty", false]], "empty_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.empty_table", false]], "emptyrelation (in module datafusion.expr)": [[4, "datafusion.expr.EmptyRelation", false]], "enable_cell_expansion (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.enable_cell_expansion", false]], "enable_url_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.enable_url_table", false]], "encode() (datafusion.substrait.plan method)": [[15, "datafusion.substrait.Plan.encode", false]], "encode() (in module datafusion.functions)": [[5, "datafusion.functions.encode", false]], "encoding (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.encoding", false], [2, "id5", false]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false], [2, "id18", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false], [7, "id6", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false], [7, "id19", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "evaluate() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.evaluate_all_with_rank", false]], "except_all() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.except_all", false]], "execute (in module datafusion.expr)": [[4, "datafusion.expr.Execute", false]], "execute() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.execute", false]], "execute_stream() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execute_stream", false]], "execute_stream_partitioned() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execute_stream_partitioned", false]], "execution_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.execution_plan", false]], "executionplan (class in datafusion)": [[7, "datafusion.ExecutionPlan", false]], "executionplan (class in datafusion.plan)": [[13, "datafusion.plan.ExecutionPlan", false]], "exists (in module datafusion.expr)": [[4, "datafusion.expr.Exists", false]], "exp() (datafusion.expr method)": [[7, "datafusion.Expr.exp", false]], "exp() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.exp", false]], "exp() (in module datafusion.functions)": [[5, "datafusion.functions.exp", false]], "explain (in module datafusion.expr)": [[4, "datafusion.expr.Explain", false]], "explain() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.explain", false]], "expr (class in datafusion)": [[7, "datafusion.Expr", false]], "expr (class in datafusion.expr)": [[4, "datafusion.expr.Expr", false]], "expr (datafusion.expr attribute)": [[7, "datafusion.Expr.expr", false]], "expr (datafusion.expr.expr attribute)": [[4, "datafusion.expr.Expr.expr", false]], "expr() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.expr", false]], "extension (in module datafusion.expr)": [[4, "datafusion.expr.Extension", false]], "extract() (in module datafusion.functions)": [[5, "datafusion.functions.extract", false]], "factorial() (datafusion.expr method)": [[7, "datafusion.Expr.factorial", false]], "factorial() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.factorial", false]], "factorial() (in module datafusion.functions)": [[5, "datafusion.functions.factorial", false]], "filetype (in module datafusion.expr)": [[4, "datafusion.expr.FileType", false]], "fill_nan() (datafusion.expr method)": [[7, "datafusion.Expr.fill_nan", false]], "fill_nan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.fill_nan", false]], "fill_null() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.fill_null", false]], "fill_null() (datafusion.expr method)": [[7, "datafusion.Expr.fill_null", false]], "fill_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.fill_null", false]], "filter (in module datafusion.expr)": [[4, "datafusion.expr.Filter", false]], "filter() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.filter", false]], "filter() (datafusion.expr method)": [[7, "datafusion.Expr.filter", false]], "filter() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.filter", false]], "find_in_set() (in module datafusion.functions)": [[5, "datafusion.functions.find_in_set", false]], "first_value() (in module datafusion.functions)": [[5, "datafusion.functions.first_value", false]], "flatten() (datafusion.expr method)": [[7, "datafusion.Expr.flatten", false]], "flatten() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.flatten", false]], "flatten() (in module datafusion.functions)": [[5, "datafusion.functions.flatten", false]], "floor() (datafusion.expr method)": [[7, "datafusion.Expr.floor", false]], "floor() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.floor", false]], "floor() (in module datafusion.functions)": [[5, "datafusion.functions.floor", false]], "format_html() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.format_html", false]], "format_str() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.format_str", false]], "formattermanager (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.FormatterManager", false]], "frame_bound (datafusion.expr.windowframebound attribute)": [[4, "datafusion.expr.WindowFrameBound.frame_bound", false]], "from_arrow() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_arrow", false]], "from_arrow_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_arrow_table", false]], "from_dataset() (datafusion.catalog.table static method)": [[0, "datafusion.catalog.Table.from_dataset", false]], "from_dataset() (datafusion.table static method)": [[7, "datafusion.Table.from_dataset", false]], "from_pandas() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pandas", false]], "from_polars() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_polars", false]], "from_proto() (datafusion.executionplan static method)": [[7, "datafusion.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.logicalplan static method)": [[7, "datafusion.LogicalPlan.from_proto", false]], "from_proto() (datafusion.plan.executionplan static method)": [[13, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[13, "datafusion.plan.LogicalPlan.from_proto", false]], "from_pycapsule() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.aggregateudf static method)": [[17, "datafusion.user_defined.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.scalarudf static method)": [[17, "datafusion.user_defined.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.from_pycapsule", false]], "from_pydict() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pydict", false]], "from_pylist() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.from_pylist", false]], "from_str() (datafusion.dataframe.compression class method)": [[2, "datafusion.dataframe.Compression.from_str", false]], "from_substrait_plan() (datafusion.substrait.consumer static method)": [[15, "datafusion.substrait.Consumer.from_substrait_plan", false]], "from_unixtime() (datafusion.expr method)": [[7, "datafusion.Expr.from_unixtime", false]], "from_unixtime() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.from_unixtime", false]], "from_unixtime() (in module datafusion.functions)": [[5, "datafusion.functions.from_unixtime", false]], "gcd() (in module datafusion.functions)": [[5, "datafusion.functions.gcd", false]], "get_cell_style() (datafusion.dataframe_formatter.defaultstyleprovider method)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider.get_cell_style", false]], "get_cell_style() (datafusion.dataframe_formatter.styleprovider method)": [[3, "datafusion.dataframe_formatter.StyleProvider.get_cell_style", false]], "get_default_level() (datafusion.dataframe.compression method)": [[2, "datafusion.dataframe.Compression.get_default_level", false]], "get_formatter() (datafusion.dataframe_formatter.formattermanager class method)": [[3, "datafusion.dataframe_formatter.FormatterManager.get_formatter", false]], "get_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.get_formatter", false]], "get_frame_units() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_frame_units", false]], "get_frame_units() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_frame_units", false]], "get_header_style() (datafusion.dataframe_formatter.defaultstyleprovider method)": [[3, "datafusion.dataframe_formatter.DefaultStyleProvider.get_header_style", false]], "get_header_style() (datafusion.dataframe_formatter.styleprovider method)": [[3, "datafusion.dataframe_formatter.StyleProvider.get_header_style", false]], "get_lower_bound() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_lower_bound", false]], "get_lower_bound() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_lower_bound", false]], "get_offset() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.get_offset", false]], "get_range() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.get_range", false]], "get_upper_bound() (datafusion.expr.windowframe method)": [[4, "datafusion.expr.WindowFrame.get_upper_bound", false]], "get_upper_bound() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.get_upper_bound", false]], "global_ctx() (datafusion.context.sessioncontext class method)": [[1, "datafusion.context.SessionContext.global_ctx", false]], "googlecloud (in module datafusion.object_store)": [[12, "datafusion.object_store.GoogleCloud", false]], "groupingset (in module datafusion.expr)": [[4, "datafusion.expr.GroupingSet", false]], "gzip (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.GZIP", false]], "head() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.head", false]], "http (in module datafusion.object_store)": [[12, "datafusion.object_store.Http", false]], "ilike (in module datafusion.expr)": [[4, "datafusion.expr.ILike", false]], "immutable (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Immutable", false]], "in_list() (in module datafusion.functions)": [[5, "datafusion.functions.in_list", false]], "include_rank() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.include_rank", false]], "initcap() (datafusion.expr method)": [[7, "datafusion.Expr.initcap", false]], "initcap() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.initcap", false]], "initcap() (in module datafusion.functions)": [[5, "datafusion.functions.initcap", false]], "inlist (in module datafusion.expr)": [[4, "datafusion.expr.InList", false]], "inputs() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.inputs", false]], "inputs() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.inputs", false]], "insubquery (in module datafusion.expr)": [[4, "datafusion.expr.InSubquery", false]], "intersect() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.intersect", false]], "into_view() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.into_view", false]], "is_causal() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.is_causal", false]], "is_correct_input() (datafusion.input.base.baseinputsource method)": [[8, "datafusion.input.base.BaseInputSource.is_correct_input", false]], "is_correct_input() (datafusion.input.location.locationinputplugin method)": [[10, "datafusion.input.location.LocationInputPlugin.is_correct_input", false]], "is_correct_input() (datafusion.input.locationinputplugin method)": [[9, "datafusion.input.LocationInputPlugin.is_correct_input", false]], "is_current_row() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_current_row", false]], "is_following() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_following", false]], "is_not_null() (datafusion.expr method)": [[7, "datafusion.Expr.is_not_null", false]], "is_not_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.is_not_null", false]], "is_null() (datafusion.expr method)": [[7, "datafusion.Expr.is_null", false]], "is_null() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.is_null", false]], "is_preceding() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_preceding", false]], "is_unbounded() (datafusion.expr.windowframebound method)": [[4, "datafusion.expr.WindowFrameBound.is_unbounded", false]], "isfalse (in module datafusion.expr)": [[4, "datafusion.expr.IsFalse", false]], "isnan() (datafusion.expr method)": [[7, "datafusion.Expr.isnan", false]], "isnan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.isnan", false]], "isnan() (in module datafusion.functions)": [[5, "datafusion.functions.isnan", false]], "isnotfalse (in module datafusion.expr)": [[4, "datafusion.expr.IsNotFalse", false]], "isnotnull (in module datafusion.expr)": [[4, "datafusion.expr.IsNotNull", false]], "isnottrue (in module datafusion.expr)": [[4, "datafusion.expr.IsNotTrue", false]], "isnotunknown (in module datafusion.expr)": [[4, "datafusion.expr.IsNotUnknown", false]], "isnull (in module datafusion.expr)": [[4, "datafusion.expr.IsNull", false]], "istrue (in module datafusion.expr)": [[4, "datafusion.expr.IsTrue", false]], "isunknown (in module datafusion.expr)": [[4, "datafusion.expr.IsUnknown", false]], "iszero() (datafusion.expr method)": [[7, "datafusion.Expr.iszero", false]], "iszero() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.iszero", false]], "iszero() (in module datafusion.functions)": [[5, "datafusion.functions.iszero", false]], "join (in module datafusion.expr)": [[4, "datafusion.expr.Join", false]], "join() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.join", false]], "join_on() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.join_on", false]], "joinconstraint (in module datafusion.expr)": [[4, "datafusion.expr.JoinConstraint", false]], "jointype (in module datafusion.expr)": [[4, "datafusion.expr.JoinType", false]], "kind (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.kind", false]], "kind (datafusion.table property)": [[7, "datafusion.Table.kind", false]], "lag() (in module datafusion.functions)": [[5, "datafusion.functions.lag", false]], "last_value() (in module datafusion.functions)": [[5, "datafusion.functions.last_value", false]], "lcm() (in module datafusion.functions)": [[5, "datafusion.functions.lcm", false]], "lead() (in module datafusion.functions)": [[5, "datafusion.functions.lead", false]], "left() (in module datafusion.functions)": [[5, "datafusion.functions.left", false]], "length() (datafusion.expr method)": [[7, "datafusion.Expr.length", false]], "length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.length", false]], "length() (in module datafusion.functions)": [[5, "datafusion.functions.length", false]], "levenshtein() (in module datafusion.functions)": [[5, "datafusion.functions.levenshtein", false]], "like (in module datafusion.expr)": [[4, "datafusion.expr.Like", false]], "limit (in module datafusion.expr)": [[4, "datafusion.expr.Limit", false]], "limit() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.limit", false]], "list_append() (in module datafusion.functions)": [[5, "datafusion.functions.list_append", false]], "list_cat() (in module datafusion.functions)": [[5, "datafusion.functions.list_cat", false]], "list_concat() (in module datafusion.functions)": [[5, "datafusion.functions.list_concat", false]], "list_dims() (datafusion.expr method)": [[7, "datafusion.Expr.list_dims", false]], "list_dims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_dims", false]], "list_dims() (in module datafusion.functions)": [[5, "datafusion.functions.list_dims", false]], "list_distinct() (datafusion.expr method)": [[7, "datafusion.Expr.list_distinct", false]], "list_distinct() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_distinct", false]], "list_distinct() (in module datafusion.functions)": [[5, "datafusion.functions.list_distinct", false]], "list_element() (in module datafusion.functions)": [[5, "datafusion.functions.list_element", false]], "list_except() (in module datafusion.functions)": [[5, "datafusion.functions.list_except", false]], "list_extract() (in module datafusion.functions)": [[5, "datafusion.functions.list_extract", false]], "list_indexof() (in module datafusion.functions)": [[5, "datafusion.functions.list_indexof", false]], "list_intersect() (in module datafusion.functions)": [[5, "datafusion.functions.list_intersect", false]], "list_join() (in module datafusion.functions)": [[5, "datafusion.functions.list_join", false]], "list_length() (datafusion.expr method)": [[7, "datafusion.Expr.list_length", false]], "list_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_length", false]], "list_length() (in module datafusion.functions)": [[5, "datafusion.functions.list_length", false]], "list_ndims() (datafusion.expr method)": [[7, "datafusion.Expr.list_ndims", false]], "list_ndims() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.list_ndims", false]], "list_ndims() (in module datafusion.functions)": [[5, "datafusion.functions.list_ndims", false]], "list_position() (in module datafusion.functions)": [[5, "datafusion.functions.list_position", false]], "list_positions() (in module datafusion.functions)": [[5, "datafusion.functions.list_positions", false]], "list_prepend() (in module datafusion.functions)": [[5, "datafusion.functions.list_prepend", false]], "list_push_back() (in module datafusion.functions)": [[5, "datafusion.functions.list_push_back", false]], "list_push_front() (in module datafusion.functions)": [[5, "datafusion.functions.list_push_front", false]], "list_remove() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove", false]], "list_remove_all() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove_all", false]], "list_remove_n() (in module datafusion.functions)": [[5, "datafusion.functions.list_remove_n", false]], "list_repeat() (in module datafusion.functions)": [[5, "datafusion.functions.list_repeat", false]], "list_replace() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace", false]], "list_replace_all() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace_all", false]], "list_replace_n() (in module datafusion.functions)": [[5, "datafusion.functions.list_replace_n", false]], "list_resize() (in module datafusion.functions)": [[5, "datafusion.functions.list_resize", false]], "list_slice() (in module datafusion.functions)": [[5, "datafusion.functions.list_slice", false]], "list_sort() (in module datafusion.functions)": [[5, "datafusion.functions.list_sort", false]], "list_to_string() (in module datafusion.functions)": [[5, "datafusion.functions.list_to_string", false]], "list_union() (in module datafusion.functions)": [[5, "datafusion.functions.list_union", false]], "lit() (in module datafusion)": [[7, "datafusion.lit", false]], "literal (in module datafusion.expr)": [[4, "datafusion.expr.Literal", false]], "literal() (datafusion.expr static method)": [[7, "datafusion.Expr.literal", false]], "literal() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.literal", false]], "literal() (in module datafusion)": [[7, "datafusion.literal", false]], "literal_with_metadata() (datafusion.expr static method)": [[7, "datafusion.Expr.literal_with_metadata", false]], "literal_with_metadata() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.literal_with_metadata", false]], "ln() (datafusion.expr method)": [[7, "datafusion.Expr.ln", false]], "ln() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ln", false]], "ln() (in module datafusion.functions)": [[5, "datafusion.functions.ln", false]], "localfilesystem (in module datafusion.object_store)": [[12, "datafusion.object_store.LocalFileSystem", false]], "locationinputplugin (class in datafusion.input)": [[9, "datafusion.input.LocationInputPlugin", false]], "locationinputplugin (class in datafusion.input.location)": [[10, "datafusion.input.location.LocationInputPlugin", false]], "log() (in module datafusion.functions)": [[5, "datafusion.functions.log", false]], "log10() (datafusion.expr method)": [[7, "datafusion.Expr.log10", false]], "log10() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.log10", false]], "log10() (in module datafusion.functions)": [[5, "datafusion.functions.log10", false]], "log2() (datafusion.expr method)": [[7, "datafusion.Expr.log2", false]], "log2() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.log2", false]], "log2() (in module datafusion.functions)": [[5, "datafusion.functions.log2", false]], "logical_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.logical_plan", false]], "logicalplan (class in datafusion)": [[7, "datafusion.LogicalPlan", false]], "logicalplan (class in datafusion.plan)": [[13, "datafusion.plan.LogicalPlan", false]], "lower() (datafusion.expr method)": [[7, "datafusion.Expr.lower", false]], "lower() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.lower", false]], "lower() (in module datafusion.functions)": [[5, "datafusion.functions.lower", false]], "lpad() (in module datafusion.functions)": [[5, "datafusion.functions.lpad", false]], "ltrim() (datafusion.expr method)": [[7, "datafusion.Expr.ltrim", false]], "ltrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.ltrim", false]], "ltrim() (in module datafusion.functions)": [[5, "datafusion.functions.ltrim", false]], "lz4 (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.LZ4", false]], "lz4_raw (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.LZ4_RAW", false]], "make_array() (in module datafusion.functions)": [[5, "datafusion.functions.make_array", false]], "make_date() (in module datafusion.functions)": [[5, "datafusion.functions.make_date", false]], "make_list() (in module datafusion.functions)": [[5, "datafusion.functions.make_list", false]], "max() (in module datafusion.functions)": [[5, "datafusion.functions.max", false]], "max_cell_length (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_cell_length", false]], "max_height (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_height", false]], "max_memory_bytes (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_memory_bytes", false]], "max_row_group_size (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.max_row_group_size", false], [2, "id19", false]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", false], [7, "id20", false]], "max_width (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_width", false]], "maximum_buffered_record_batches_per_stream (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false], [2, "id20", false]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false], [7, "id21", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false], [2, "id21", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", false], [7, "id22", false]], "md5() (datafusion.expr method)": [[7, "datafusion.Expr.md5", false]], "md5() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.md5", false]], "md5() (in module datafusion.functions)": [[5, "datafusion.functions.md5", false]], "mean() (in module datafusion.functions)": [[5, "datafusion.functions.mean", false]], "median() (in module datafusion.functions)": [[5, "datafusion.functions.median", false]], "memoize() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.memoize", false]], "memory_catalog() (datafusion.catalog static method)": [[7, "datafusion.Catalog.memory_catalog", false]], "memory_catalog() (datafusion.catalog.catalog static method)": [[0, "datafusion.catalog.Catalog.memory_catalog", false]], "memory_schema() (datafusion.catalog.schema static method)": [[0, "datafusion.catalog.Schema.memory_schema", false]], "merge() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.merge", false]], "merge() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.merge", false]], "microsoftazure (in module datafusion.object_store)": [[12, "datafusion.object_store.MicrosoftAzure", false]], "min() (in module datafusion.functions)": [[5, "datafusion.functions.min", false]], "min_rows_display (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.min_rows_display", false]], "module": [[0, "module-datafusion.catalog", false], [1, "module-datafusion.context", false], [2, "module-datafusion.dataframe", false], [3, "module-datafusion.dataframe_formatter", false], [4, "module-datafusion.expr", false], [5, "module-datafusion.functions", false], [6, "module-datafusion.html_formatter", false], [7, "module-datafusion", false], [8, "module-datafusion.input.base", false], [9, "module-datafusion.input", false], [10, "module-datafusion.input.location", false], [11, "module-datafusion.io", false], [12, "module-datafusion.object_store", false], [13, "module-datafusion.plan", false], [14, "module-datafusion.record_batch", false], [15, "module-datafusion.substrait", false], [16, "module-datafusion.unparser", false], [17, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.mysql", false]], "named_struct() (in module datafusion.functions)": [[5, "datafusion.functions.named_struct", false]], "names() (datafusion.catalog method)": [[7, "datafusion.Catalog.names", false]], "names() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.names", false]], "names() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.names", false]], "nanvl() (in module datafusion.functions)": [[5, "datafusion.functions.nanvl", false]], "negative (in module datafusion.expr)": [[4, "datafusion.expr.Negative", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[14, "datafusion.record_batch.RecordBatchStream.next", false]], "next() (datafusion.recordbatchstream method)": [[7, "datafusion.RecordBatchStream.next", false]], "not (in module datafusion.expr)": [[4, "datafusion.expr.Not", false]], "now() (in module datafusion.functions)": [[5, "datafusion.functions.now", false]], "nth_value() (in module datafusion.functions)": [[5, "datafusion.functions.nth_value", false]], "ntile() (in module datafusion.functions)": [[5, "datafusion.functions.ntile", false]], "null_treatment() (datafusion.expr method)": [[7, "datafusion.Expr.null_treatment", false]], "null_treatment() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.null_treatment", false]], "nullif() (in module datafusion.functions)": [[5, "datafusion.functions.nullif", false]], "nulls_first() (datafusion.expr.sortexpr method)": [[4, "datafusion.expr.SortExpr.nulls_first", false]], "nvl() (in module datafusion.functions)": [[5, "datafusion.functions.nvl", false]], "octet_length() (datafusion.expr method)": [[7, "datafusion.Expr.octet_length", false]], "octet_length() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.octet_length", false]], "octet_length() (in module datafusion.functions)": [[5, "datafusion.functions.octet_length", false]], "operatefunctionarg (in module datafusion.expr)": [[4, "datafusion.expr.OperateFunctionArg", false]], "optimized_logical_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.optimized_logical_plan", false]], "options_internal (datafusion.context.sqloptions attribute)": [[1, "datafusion.context.SQLOptions.options_internal", false]], "options_internal (datafusion.sqloptions attribute)": [[7, "datafusion.SQLOptions.options_internal", false]], "order_by() (datafusion.expr method)": [[7, "datafusion.Expr.order_by", false]], "order_by() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.order_by", false]], "order_by() (in module datafusion.functions)": [[5, "datafusion.functions.order_by", false]], "otherwise() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.otherwise", false]], "over() (datafusion.expr method)": [[7, "datafusion.Expr.over", false]], "over() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.over", false]], "overlay() (in module datafusion.functions)": [[5, "datafusion.functions.overlay", false]], "owner_name() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.owner_name", false]], "parquetcolumnoptions (class in datafusion)": [[7, "datafusion.ParquetColumnOptions", false]], "parquetcolumnoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.ParquetColumnOptions", false]], "parquetwriteroptions (class in datafusion)": [[7, "datafusion.ParquetWriterOptions", false]], "parquetwriteroptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.ParquetWriterOptions", false]], "partition_by() (datafusion.expr method)": [[7, "datafusion.Expr.partition_by", false]], "partition_by() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.partition_by", false]], "partition_count (datafusion.executionplan property)": [[7, "datafusion.ExecutionPlan.partition_count", false]], "partition_count (datafusion.plan.executionplan property)": [[13, "datafusion.plan.ExecutionPlan.partition_count", false]], "partitioning (in module datafusion.expr)": [[4, "datafusion.expr.Partitioning", false]], "percent_rank() (in module datafusion.functions)": [[5, "datafusion.functions.percent_rank", false]], "pi() (in module datafusion.functions)": [[5, "datafusion.functions.pi", false]], "placeholder (in module datafusion.expr)": [[4, "datafusion.expr.Placeholder", false]], "plan (class in datafusion.substrait)": [[15, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[15, "datafusion.substrait.Plan.plan_internal", false]], "plan_to_sql() (datafusion.unparser.unparser method)": [[16, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.postgres", false]], "pow() (in module datafusion.functions)": [[5, "datafusion.functions.pow", false]], "power() (in module datafusion.functions)": [[5, "datafusion.functions.power", false]], "prepare (in module datafusion.expr)": [[4, "datafusion.expr.Prepare", false]], "producer (class in datafusion.substrait)": [[15, "datafusion.substrait.Producer", false]], "projection (in module datafusion.expr)": [[4, "datafusion.expr.Projection", false]], "python_value() (datafusion.expr method)": [[7, "datafusion.Expr.python_value", false]], "python_value() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.python_value", false]], "radians() (datafusion.expr method)": [[7, "datafusion.Expr.radians", false]], "radians() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.radians", false]], "radians() (in module datafusion.functions)": [[5, "datafusion.functions.radians", false]], "random() (in module datafusion.functions)": [[5, "datafusion.functions.random", false]], "range() (in module datafusion.functions)": [[5, "datafusion.functions.range", false]], "rank() (in module datafusion.functions)": [[5, "datafusion.functions.rank", false]], "raw_sort (datafusion.expr.sortexpr attribute)": [[4, "datafusion.expr.SortExpr.raw_sort", false]], "rbs (datafusion.record_batch.recordbatchstream attribute)": [[14, "datafusion.record_batch.RecordBatchStream.rbs", false]], "rbs (datafusion.recordbatchstream attribute)": [[7, "datafusion.RecordBatchStream.rbs", false]], "read_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_avro", false]], "read_avro() (in module datafusion)": [[7, "datafusion.read_avro", false]], "read_avro() (in module datafusion.io)": [[11, "datafusion.io.read_avro", false]], "read_csv() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_csv", false]], "read_csv() (in module datafusion)": [[7, "datafusion.read_csv", false]], "read_csv() (in module datafusion.io)": [[11, "datafusion.io.read_csv", false]], "read_json() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_json", false]], "read_json() (in module datafusion)": [[7, "datafusion.read_json", false]], "read_json() (in module datafusion.io)": [[11, "datafusion.io.read_json", false]], "read_parquet() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_parquet", false]], "read_parquet() (in module datafusion)": [[7, "datafusion.read_parquet", false]], "read_parquet() (in module datafusion.io)": [[11, "datafusion.io.read_parquet", false]], "read_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_table", false]], "record_batch (datafusion.record_batch.recordbatch attribute)": [[14, "datafusion.record_batch.RecordBatch.record_batch", false]], "record_batch (datafusion.recordbatch attribute)": [[7, "datafusion.RecordBatch.record_batch", false]], "recordbatch (class in datafusion)": [[7, "datafusion.RecordBatch", false]], "recordbatch (class in datafusion.record_batch)": [[14, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[7, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[14, "datafusion.record_batch.RecordBatchStream", false]], "recursivequery (in module datafusion.expr)": [[4, "datafusion.expr.RecursiveQuery", false]], "regexp_count() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_count", false]], "regexp_like() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_like", false]], "regexp_match() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_match", false]], "regexp_replace() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_replace", false]], "register_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_avro", false]], "register_catalog_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider", false]], "register_csv() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_csv", false]], "register_dataset() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_dataset", false]], "register_formatter() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.register_formatter", false]], "register_json() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_json", false]], "register_listing_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_listing_table", false]], "register_object_store() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_object_store", false]], "register_parquet() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_parquet", false]], "register_record_batches() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_record_batches", false]], "register_schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.register_schema", false]], "register_schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.register_schema", false]], "register_schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.register_schema", false]], "register_table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.register_table", false]], "register_table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.register_table", false]], "register_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_table", false]], "register_table_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_table_provider", false]], "register_udaf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udaf", false]], "register_udf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udf", false]], "register_udtf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udtf", false]], "register_udwf() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_udwf", false]], "register_view() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_view", false]], "regr_avgx() (in module datafusion.functions)": [[5, "datafusion.functions.regr_avgx", false]], "regr_avgy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_avgy", false]], "regr_count() (in module datafusion.functions)": [[5, "datafusion.functions.regr_count", false]], "regr_intercept() (in module datafusion.functions)": [[5, "datafusion.functions.regr_intercept", false]], "regr_r2() (in module datafusion.functions)": [[5, "datafusion.functions.regr_r2", false]], "regr_slope() (in module datafusion.functions)": [[5, "datafusion.functions.regr_slope", false]], "regr_sxx() (in module datafusion.functions)": [[5, "datafusion.functions.regr_sxx", false]], "regr_sxy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_sxy", false]], "regr_syy() (in module datafusion.functions)": [[5, "datafusion.functions.regr_syy", false]], "repartition (in module datafusion.expr)": [[4, "datafusion.expr.Repartition", false]], "repartition() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.repartition", false]], "repartition_by_hash() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.repartition_by_hash", false]], "repeat() (in module datafusion.functions)": [[5, "datafusion.functions.repeat", false]], "replace() (in module datafusion.functions)": [[5, "datafusion.functions.replace", false]], "repr_rows (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.repr_rows", false]], "reset_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.reset_formatter", false]], "reverse() (datafusion.expr method)": [[7, "datafusion.Expr.reverse", false]], "reverse() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.reverse", false]], "reverse() (in module datafusion.functions)": [[5, "datafusion.functions.reverse", false]], "rex_call_operands() (datafusion.expr method)": [[7, "datafusion.Expr.rex_call_operands", false]], "rex_call_operands() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_call_operands", false]], "rex_call_operator() (datafusion.expr method)": [[7, "datafusion.Expr.rex_call_operator", false]], "rex_call_operator() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_call_operator", false]], "rex_type() (datafusion.expr method)": [[7, "datafusion.Expr.rex_type", false]], "rex_type() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rex_type", false]], "right() (in module datafusion.functions)": [[5, "datafusion.functions.right", false]], "round() (in module datafusion.functions)": [[5, "datafusion.functions.round", false]], "row_number() (in module datafusion.functions)": [[5, "datafusion.functions.row_number", false]], "rpad() (in module datafusion.functions)": [[5, "datafusion.functions.rpad", false]], "rtrim() (datafusion.expr method)": [[7, "datafusion.Expr.rtrim", false]], "rtrim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.rtrim", false]], "rtrim() (in module datafusion.functions)": [[5, "datafusion.functions.rtrim", false]], "runtimeconfig (class in datafusion.context)": [[1, "datafusion.context.RuntimeConfig", false]], "runtimeenvbuilder (class in datafusion)": [[7, "datafusion.RuntimeEnvBuilder", false]], "runtimeenvbuilder (class in datafusion.context)": [[1, "datafusion.context.RuntimeEnvBuilder", false]], "scalarsubquery (in module datafusion.expr)": [[4, "datafusion.expr.ScalarSubquery", false]], "scalarudf (class in datafusion)": [[7, "datafusion.ScalarUDF", false]], "scalarudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.ScalarUDF", false]], "scalarudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.ScalarUDFExportable", false]], "scalarvariable (in module datafusion.expr)": [[4, "datafusion.expr.ScalarVariable", false]], "schema (class in datafusion.catalog)": [[0, "datafusion.catalog.Schema", false]], "schema (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.schema", false]], "schema (datafusion.table property)": [[7, "datafusion.Table.schema", false]], "schema() (datafusion.catalog method)": [[7, "datafusion.Catalog.schema", false]], "schema() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.schema", false]], "schema() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.schema", false]], "schema() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.schema", false]], "schema_name() (datafusion.expr method)": [[7, "datafusion.Expr.schema_name", false]], "schema_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.schema_name", false]], "schema_names() (datafusion.catalog method)": [[7, "datafusion.Catalog.schema_names", false]], "schema_names() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.schema_names", false]], "schema_names() (datafusion.catalog.catalogprovider method)": [[0, "datafusion.catalog.CatalogProvider.schema_names", false]], "schemaprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.SchemaProvider", false]], "select() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select", false]], "select_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_columns", false]], "serde (class in datafusion.substrait)": [[15, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[15, "datafusion.substrait.Serde.serialize_to_plan", false]], "session_id() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.session_id", false]], "sessionconfig (class in datafusion)": [[7, "datafusion.SessionConfig", false]], "sessionconfig (class in datafusion.context)": [[1, "datafusion.context.SessionConfig", false]], "sessioncontext (class in datafusion.context)": [[1, "datafusion.context.SessionContext", false]], "set() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.set", false]], "set() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.set", false]], "set_custom_cell_builder() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.set_custom_cell_builder", false]], "set_custom_header_builder() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.set_custom_header_builder", false]], "set_formatter() (datafusion.dataframe_formatter.formattermanager class method)": [[3, "datafusion.dataframe_formatter.FormatterManager.set_formatter", false]], "set_formatter() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.set_formatter", false]], "setvariable (in module datafusion.expr)": [[4, "datafusion.expr.SetVariable", false]], "sha224() (datafusion.expr method)": [[7, "datafusion.Expr.sha224", false]], "sha224() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha224", false]], "sha224() (in module datafusion.functions)": [[5, "datafusion.functions.sha224", false]], "sha256() (datafusion.expr method)": [[7, "datafusion.Expr.sha256", false]], "sha256() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha256", false]], "sha256() (in module datafusion.functions)": [[5, "datafusion.functions.sha256", false]], "sha384() (datafusion.expr method)": [[7, "datafusion.Expr.sha384", false]], "sha384() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha384", false]], "sha384() (in module datafusion.functions)": [[5, "datafusion.functions.sha384", false]], "sha512() (datafusion.expr method)": [[7, "datafusion.Expr.sha512", false]], "sha512() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sha512", false]], "sha512() (in module datafusion.functions)": [[5, "datafusion.functions.sha512", false]], "show() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.show", false]], "show_truncation_message (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.show_truncation_message", false]], "signum() (datafusion.expr method)": [[7, "datafusion.Expr.signum", false]], "signum() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.signum", false]], "signum() (in module datafusion.functions)": [[5, "datafusion.functions.signum", false]], "similarto (in module datafusion.expr)": [[4, "datafusion.expr.SimilarTo", false]], "sin() (datafusion.expr method)": [[7, "datafusion.Expr.sin", false]], "sin() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sin", false]], "sin() (in module datafusion.functions)": [[5, "datafusion.functions.sin", false]], "sinh() (datafusion.expr method)": [[7, "datafusion.Expr.sinh", false]], "sinh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sinh", false]], "sinh() (in module datafusion.functions)": [[5, "datafusion.functions.sinh", false]], "skip_arrow_metadata (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.skip_arrow_metadata", false], [2, "id22", false]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", false], [7, "id23", false]], "snappy (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.SNAPPY", false]], "sort (in module datafusion.expr)": [[4, "datafusion.expr.Sort", false]], "sort() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.sort", false]], "sort() (datafusion.expr method)": [[7, "datafusion.Expr.sort", false]], "sort() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sort", false]], "sortexpr (class in datafusion.expr)": [[4, "datafusion.expr.SortExpr", false]], "split_part() (in module datafusion.functions)": [[5, "datafusion.functions.split_part", false]], "sql() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.sql", false]], "sql_with_options() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.sql_with_options", false]], "sqlite() (datafusion.unparser.dialect static method)": [[16, "datafusion.unparser.Dialect.sqlite", false]], "sqloptions (class in datafusion)": [[7, "datafusion.SQLOptions", false]], "sqloptions (class in datafusion.context)": [[1, "datafusion.context.SQLOptions", false]], "sqrt() (datafusion.expr method)": [[7, "datafusion.Expr.sqrt", false]], "sqrt() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.sqrt", false]], "sqrt() (in module datafusion.functions)": [[5, "datafusion.functions.sqrt", false]], "stable (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Stable", false]], "starts_with() (in module datafusion.functions)": [[5, "datafusion.functions.starts_with", false]], "state() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.state", false]], "state() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.state", false]], "statistics_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.statistics_enabled", false], [2, "id6", false]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false], [2, "id23", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false], [7, "id7", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false], [7, "id24", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false], [2, "id24", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", false], [7, "id25", false]], "stddev() (in module datafusion.functions)": [[5, "datafusion.functions.stddev", false]], "stddev_pop() (in module datafusion.functions)": [[5, "datafusion.functions.stddev_pop", false]], "stddev_samp() (in module datafusion.functions)": [[5, "datafusion.functions.stddev_samp", false]], "string_agg() (in module datafusion.functions)": [[5, "datafusion.functions.string_agg", false]], "string_literal() (datafusion.expr static method)": [[7, "datafusion.Expr.string_literal", false]], "string_literal() (datafusion.expr.expr static method)": [[4, "datafusion.expr.Expr.string_literal", false]], "strpos() (in module datafusion.functions)": [[5, "datafusion.functions.strpos", false]], "struct() (in module datafusion.functions)": [[5, "datafusion.functions.struct", false]], "style_provider (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.style_provider", false]], "styleprovider (class in datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter.StyleProvider", false]], "subquery (in module datafusion.expr)": [[4, "datafusion.expr.Subquery", false]], "subqueryalias (in module datafusion.expr)": [[4, "datafusion.expr.SubqueryAlias", false]], "substr() (in module datafusion.functions)": [[5, "datafusion.functions.substr", false]], "substr_index() (in module datafusion.functions)": [[5, "datafusion.functions.substr_index", false]], "substring() (in module datafusion.functions)": [[5, "datafusion.functions.substring", false]], "sum() (in module datafusion.functions)": [[5, "datafusion.functions.sum", false]], "supports_bounded_execution() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.supports_bounded_execution", false]], "table (class in datafusion)": [[7, "datafusion.Table", false]], "table (class in datafusion.catalog)": [[0, "datafusion.catalog.Table", false]], "table (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.table", false]], "table (datafusion.table attribute)": [[7, "datafusion.Table.table", false]], "table() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.table", false]], "table() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table", false]], "table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table", false]], "table_exist() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table_exist", false]], "table_exist() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table_exist", false]], "table_names() (datafusion.catalog.schema method)": [[0, "datafusion.catalog.Schema.table_names", false]], "table_names() (datafusion.catalog.schemaprovider method)": [[0, "datafusion.catalog.SchemaProvider.table_names", false]], "tablefunction (class in datafusion)": [[7, "datafusion.TableFunction", false]], "tablefunction (class in datafusion.user_defined)": [[17, "datafusion.user_defined.TableFunction", false]], "tableproviderexportable (class in datafusion.context)": [[1, "datafusion.context.TableProviderExportable", false]], "tablescan (in module datafusion.expr)": [[4, "datafusion.expr.TableScan", false]], "tail() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.tail", false]], "tan() (datafusion.expr method)": [[7, "datafusion.Expr.tan", false]], "tan() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.tan", false]], "tan() (in module datafusion.functions)": [[5, "datafusion.functions.tan", false]], "tanh() (datafusion.expr method)": [[7, "datafusion.Expr.tanh", false]], "tanh() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.tanh", false]], "tanh() (in module datafusion.functions)": [[5, "datafusion.functions.tanh", false]], "to_arrow_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_arrow_table", false]], "to_hex() (datafusion.expr method)": [[7, "datafusion.Expr.to_hex", false]], "to_hex() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.to_hex", false]], "to_hex() (in module datafusion.functions)": [[5, "datafusion.functions.to_hex", false]], "to_pandas() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pandas", false]], "to_polars() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_polars", false]], "to_proto() (datafusion.executionplan method)": [[7, "datafusion.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.to_proto", false]], "to_proto() (datafusion.plan.executionplan method)": [[13, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[14, "datafusion.record_batch.RecordBatch.to_pyarrow", false]], "to_pyarrow() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.to_pyarrow", false]], "to_pydict() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pydict", false]], "to_pylist() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_pylist", false]], "to_substrait_plan() (datafusion.substrait.producer static method)": [[15, "datafusion.substrait.Producer.to_substrait_plan", false]], "to_timestamp() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp", false]], "to_timestamp_micros() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_micros", false]], "to_timestamp_millis() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_millis", false]], "to_timestamp_nanos() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_nanos", false]], "to_timestamp_seconds() (in module datafusion.functions)": [[5, "datafusion.functions.to_timestamp_seconds", false]], "to_unixtime() (in module datafusion.functions)": [[5, "datafusion.functions.to_unixtime", false]], "to_variant() (datafusion.expr method)": [[7, "datafusion.Expr.to_variant", false]], "to_variant() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.to_variant", false]], "to_variant() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.to_variant", false]], "to_variant() (datafusion.plan.logicalplan method)": [[13, "datafusion.plan.LogicalPlan.to_variant", false]], "transactionaccessmode (in module datafusion.expr)": [[4, "datafusion.expr.TransactionAccessMode", false]], "transactionconclusion (in module datafusion.expr)": [[4, "datafusion.expr.TransactionConclusion", false]], "transactionend (in module datafusion.expr)": [[4, "datafusion.expr.TransactionEnd", false]], "transactionisolationlevel (in module datafusion.expr)": [[4, "datafusion.expr.TransactionIsolationLevel", false]], "transactionstart (in module datafusion.expr)": [[4, "datafusion.expr.TransactionStart", false]], "transform() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.transform", false]], "translate() (in module datafusion.functions)": [[5, "datafusion.functions.translate", false]], "trim() (datafusion.expr method)": [[7, "datafusion.Expr.trim", false]], "trim() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.trim", false]], "trim() (in module datafusion.functions)": [[5, "datafusion.functions.trim", false]], "trunc() (in module datafusion.functions)": [[5, "datafusion.functions.trunc", false]], "trycast (in module datafusion.expr)": [[4, "datafusion.expr.TryCast", false]], "types() (datafusion.expr method)": [[7, "datafusion.Expr.types", false]], "types() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.types", false]], "udaf (in module datafusion)": [[7, "datafusion.udaf", false]], "udaf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[17, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[7, "datafusion.udf", false]], "udf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udf", false]], "udf() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[17, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion)": [[7, "datafusion.udtf", false]], "udtf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[17, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion)": [[7, "datafusion.udwf", false]], "udwf (in module datafusion.user_defined)": [[17, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[17, "datafusion.user_defined.WindowUDF.udwf", false]], "udwf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.udwf", false]], "uncompressed (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.UNCOMPRESSED", false]], "union (in module datafusion.expr)": [[4, "datafusion.expr.Union", false]], "union() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.union", false]], "union_distinct() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.union_distinct", false]], "unnest (in module datafusion.expr)": [[4, "datafusion.expr.Unnest", false]], "unnest_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.unnest_columns", false]], "unnestexpr (in module datafusion.expr)": [[4, "datafusion.expr.UnnestExpr", false]], "unparser (class in datafusion.unparser)": [[16, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[16, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.update", false]], "update() (datafusion.user_defined.accumulator method)": [[17, "datafusion.user_defined.Accumulator.update", false]], "upper() (datafusion.expr method)": [[7, "datafusion.Expr.upper", false]], "upper() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.upper", false]], "upper() (in module datafusion.functions)": [[5, "datafusion.functions.upper", false]], "use_shared_styles (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.use_shared_styles", false]], "uses_window_frame() (datafusion.user_defined.windowevaluator method)": [[17, "datafusion.user_defined.WindowEvaluator.uses_window_frame", false]], "uuid() (in module datafusion.functions)": [[5, "datafusion.functions.uuid", false]], "values (in module datafusion.expr)": [[4, "datafusion.expr.Values", false]], "var() (in module datafusion.functions)": [[5, "datafusion.functions.var", false]], "var_pop() (in module datafusion.functions)": [[5, "datafusion.functions.var_pop", false]], "var_samp() (in module datafusion.functions)": [[5, "datafusion.functions.var_samp", false]], "var_sample() (in module datafusion.functions)": [[5, "datafusion.functions.var_sample", false]], "variant_name() (datafusion.expr method)": [[7, "datafusion.Expr.variant_name", false]], "variant_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.variant_name", false]], "volatile (datafusion.user_defined.volatility attribute)": [[17, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[17, "datafusion.user_defined.Volatility", false]], "when() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.when", false]], "when() (in module datafusion.functions)": [[5, "datafusion.functions.when", false]], "window (class in datafusion.expr)": [[4, "datafusion.expr.Window", false]], "window() (in module datafusion.functions)": [[5, "datafusion.functions.window", false]], "window_frame (datafusion.expr.windowframe attribute)": [[4, "datafusion.expr.WindowFrame.window_frame", false]], "window_frame (datafusion.windowframe attribute)": [[7, "datafusion.WindowFrame.window_frame", false]], "window_frame() (datafusion.expr method)": [[7, "datafusion.Expr.window_frame", false]], "window_frame() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.window_frame", false]], "windowevaluator (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowEvaluator", false]], "windowexpr (in module datafusion.expr)": [[4, "datafusion.expr.WindowExpr", false]], "windowframe (class in datafusion)": [[7, "datafusion.WindowFrame", false]], "windowframe (class in datafusion.expr)": [[4, "datafusion.expr.WindowFrame", false]], "windowframebound (class in datafusion.expr)": [[4, "datafusion.expr.WindowFrameBound", false]], "windowudf (class in datafusion)": [[7, "datafusion.WindowUDF", false]], "windowudf (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowUDF", false]], "windowudfexportable (class in datafusion.user_defined)": [[17, "datafusion.user_defined.WindowUDFExportable", false]], "with_allow_ddl() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_ddl", false]], "with_allow_ddl() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_ddl", false]], "with_allow_dml() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_dml", false]], "with_allow_dml() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_dml", false]], "with_allow_statements() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_statements", false]], "with_allow_statements() (datafusion.sqloptions method)": [[7, "datafusion.SQLOptions.with_allow_statements", false]], "with_batch_size() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_batch_size", false]], "with_batch_size() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_batch_size", false]], "with_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_column", false]], "with_column_renamed() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_column_renamed", false]], "with_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.with_columns", false]], "with_create_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_create_default_catalog_and_schema", false]], "with_create_default_catalog_and_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_create_default_catalog_and_schema", false]], "with_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_default_catalog_and_schema", false]], "with_default_catalog_and_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_default_catalog_and_schema", false]], "with_disk_manager_disabled() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_disabled", false]], "with_disk_manager_disabled() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_disabled", false]], "with_disk_manager_os() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_os", false]], "with_disk_manager_os() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_os", false]], "with_disk_manager_specified() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_disk_manager_specified", false]], "with_disk_manager_specified() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_disk_manager_specified", false]], "with_fair_spill_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_fair_spill_pool", false]], "with_fair_spill_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_fair_spill_pool", false]], "with_greedy_memory_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_greedy_memory_pool", false]], "with_greedy_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_greedy_memory_pool", false]], "with_information_schema() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_information_schema", false]], "with_information_schema() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_information_schema", false]], "with_parquet_pruning() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_parquet_pruning", false]], "with_parquet_pruning() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_parquet_pruning", false]], "with_pretty() (datafusion.unparser.unparser method)": [[16, "datafusion.unparser.Unparser.with_pretty", false]], "with_repartition_aggregations() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_aggregations", false]], "with_repartition_aggregations() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_aggregations", false]], "with_repartition_file_min_size() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_file_min_size", false]], "with_repartition_file_min_size() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_file_min_size", false]], "with_repartition_file_scans() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_file_scans", false]], "with_repartition_file_scans() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_file_scans", false]], "with_repartition_joins() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_joins", false]], "with_repartition_joins() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_joins", false]], "with_repartition_sorts() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_sorts", false]], "with_repartition_sorts() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_sorts", false]], "with_repartition_windows() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_windows", false]], "with_repartition_windows() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_repartition_windows", false]], "with_target_partitions() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_target_partitions", false]], "with_target_partitions() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.with_target_partitions", false]], "with_temp_file_path() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_temp_file_path", false]], "with_temp_file_path() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_temp_file_path", false]], "with_unbounded_memory_pool() (datafusion.context.runtimeenvbuilder method)": [[1, "datafusion.context.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "with_unbounded_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "write_batch_size (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.write_batch_size", false], [2, "id25", false]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", false], [7, "id26", false]], "write_csv() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_csv", false]], "write_json() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_json", false]], "write_parquet() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_parquet", false]], "write_parquet_with_options() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_parquet_with_options", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false], [2, "id26", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", false], [7, "id27", false]], "zstd (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.ZSTD", false]]}, "objects": {"": [[7, 0, 0, "-", "datafusion"]], "datafusion": [[7, 1, 1, "", "Accumulator"], [7, 1, 1, "", "AggregateUDF"], [7, 1, 1, "", "Catalog"], [7, 4, 1, "", "DFSchema"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "LogicalPlan"], [7, 1, 1, "", "ParquetColumnOptions"], [7, 1, 1, "", "ParquetWriterOptions"], [7, 1, 1, "", "RecordBatch"], [7, 1, 1, "", "RecordBatchStream"], [7, 1, 1, "", "RuntimeEnvBuilder"], [7, 1, 1, "", "SQLOptions"], [7, 1, 1, "", "ScalarUDF"], [7, 1, 1, "", "SessionConfig"], [7, 1, 1, "", "Table"], [7, 1, 1, "", "TableFunction"], [7, 1, 1, "", "WindowFrame"], [7, 1, 1, "", "WindowUDF"], [0, 0, 0, "-", "catalog"], [7, 4, 1, "", "col"], [7, 4, 1, "", "column"], [7, 6, 1, "", "configure_formatter"], [1, 0, 0, "-", "context"], [2, 0, 0, "-", "dataframe"], [3, 0, 0, "-", "dataframe_formatter"], [4, 0, 0, "-", "expr"], [5, 0, 0, "-", "functions"], [6, 0, 0, "-", "html_formatter"], [9, 0, 0, "-", "input"], [11, 0, 0, "-", "io"], [7, 6, 1, "", "lit"], [7, 6, 1, "", "literal"], [12, 0, 0, "-", "object_store"], [13, 0, 0, "-", "plan"], [7, 6, 1, "", "read_avro"], [7, 6, 1, "", "read_csv"], [7, 6, 1, "", "read_json"], [7, 6, 1, "", "read_parquet"], [14, 0, 0, "-", "record_batch"], [15, 0, 0, "-", "substrait"], [7, 4, 1, "", "udaf"], [7, 4, 1, "", "udf"], [7, 4, 1, "", "udtf"], [7, 4, 1, "", "udwf"], [16, 0, 0, "-", "unparser"], [17, 0, 0, "-", "user_defined"]], "datafusion.Accumulator": [[7, 2, 1, "", "evaluate"], [7, 2, 1, "", "merge"], [7, 2, 1, "", "state"], [7, 2, 1, "", "update"]], "datafusion.AggregateUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_udaf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udaf"]], "datafusion.Catalog": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "catalog"], [7, 2, 1, "", "database"], [7, 2, 1, "", "deregister_schema"], [7, 2, 1, "", "memory_catalog"], [7, 2, 1, "", "names"], [7, 2, 1, "", "register_schema"], [7, 2, 1, "", "schema"], [7, 2, 1, "", "schema_names"]], "datafusion.ExecutionPlan": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_raw_plan"], [7, 2, 1, "", "children"], [7, 2, 1, "", "display"], [7, 2, 1, "", "display_indent"], [7, 2, 1, "", "from_proto"], [7, 5, 1, "", "partition_count"], [7, 2, 1, "", "to_proto"]], "datafusion.Expr": [[7, 2, 1, "", "__add__"], [7, 2, 1, "", "__and__"], [7, 2, 1, "", "__eq__"], [7, 2, 1, "", "__ge__"], [7, 2, 1, "", "__getitem__"], [7, 2, 1, "", "__gt__"], [7, 2, 1, "", "__invert__"], [7, 2, 1, "", "__le__"], [7, 2, 1, "", "__lt__"], [7, 2, 1, "", "__mod__"], [7, 2, 1, "", "__mul__"], [7, 2, 1, "", "__ne__"], [7, 2, 1, "", "__or__"], [7, 3, 1, "", "__radd__"], [7, 3, 1, "", "__rand__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "__richcmp__"], [7, 3, 1, "", "__rmod__"], [7, 3, 1, "", "__rmul__"], [7, 3, 1, "", "__ror__"], [7, 3, 1, "", "__rsub__"], [7, 3, 1, "", "__rtruediv__"], [7, 2, 1, "", "__sub__"], [7, 2, 1, "", "__truediv__"], [7, 3, 1, "", "_to_pyarrow_types"], [7, 2, 1, "", "abs"], [7, 2, 1, "", "acos"], [7, 2, 1, "", "acosh"], [7, 2, 1, "", "alias"], [7, 2, 1, "", "array_dims"], [7, 2, 1, "", "array_distinct"], [7, 2, 1, "", "array_empty"], [7, 2, 1, "", "array_length"], [7, 2, 1, "", "array_ndims"], [7, 2, 1, "", "array_pop_back"], [7, 2, 1, "", "array_pop_front"], [7, 2, 1, "", "arrow_typeof"], [7, 2, 1, "", "ascii"], [7, 2, 1, "", "asin"], [7, 2, 1, "", "asinh"], [7, 2, 1, "", "atan"], [7, 2, 1, "", "atanh"], [7, 2, 1, "", "between"], [7, 2, 1, "", "bit_length"], [7, 2, 1, "", "btrim"], [7, 2, 1, "", "canonical_name"], [7, 2, 1, "", "cardinality"], [7, 2, 1, "", "cast"], [7, 2, 1, "", "cbrt"], [7, 2, 1, "", "ceil"], [7, 2, 1, "", "char_length"], [7, 2, 1, "", "character_length"], [7, 2, 1, "", "chr"], [7, 2, 1, "", "column"], [7, 2, 1, "", "column_name"], [7, 2, 1, "", "cos"], [7, 2, 1, "", "cosh"], [7, 2, 1, "", "cot"], [7, 2, 1, "", "degrees"], [7, 2, 1, "", "display_name"], [7, 2, 1, "", "distinct"], [7, 2, 1, "", "empty"], [7, 2, 1, "", "exp"], [7, 3, 1, "", "expr"], [7, 2, 1, "", "factorial"], [7, 2, 1, "", "fill_nan"], [7, 2, 1, "", "fill_null"], [7, 2, 1, "", "filter"], [7, 2, 1, "", "flatten"], [7, 2, 1, "", "floor"], [7, 2, 1, "", "from_unixtime"], [7, 2, 1, "", "initcap"], [7, 2, 1, "", "is_not_null"], [7, 2, 1, "", "is_null"], [7, 2, 1, "", "isnan"], [7, 2, 1, "", "iszero"], [7, 2, 1, "", "length"], [7, 2, 1, "", "list_dims"], [7, 2, 1, "", "list_distinct"], [7, 2, 1, "", "list_length"], [7, 2, 1, "", "list_ndims"], [7, 2, 1, "", "literal"], [7, 2, 1, "", "literal_with_metadata"], [7, 2, 1, "", "ln"], [7, 2, 1, "", "log10"], [7, 2, 1, "", "log2"], [7, 2, 1, "", "lower"], [7, 2, 1, "", "ltrim"], [7, 2, 1, "", "md5"], [7, 2, 1, "", "null_treatment"], [7, 2, 1, "", "octet_length"], [7, 2, 1, "", "order_by"], [7, 2, 1, "", "over"], [7, 2, 1, "", "partition_by"], [7, 2, 1, "", "python_value"], [7, 2, 1, "", "radians"], [7, 2, 1, "", "reverse"], [7, 2, 1, "", "rex_call_operands"], [7, 2, 1, "", "rex_call_operator"], [7, 2, 1, "", "rex_type"], [7, 2, 1, "", "rtrim"], [7, 2, 1, "", "schema_name"], [7, 2, 1, "", "sha224"], [7, 2, 1, "", "sha256"], [7, 2, 1, "", "sha384"], [7, 2, 1, "", "sha512"], [7, 2, 1, "", "signum"], [7, 2, 1, "", "sin"], [7, 2, 1, "", "sinh"], [7, 2, 1, "", "sort"], [7, 2, 1, "", "sqrt"], [7, 2, 1, "", "string_literal"], [7, 2, 1, "", "tan"], [7, 2, 1, "", "tanh"], [7, 2, 1, "", "to_hex"], [7, 2, 1, "", "to_variant"], [7, 2, 1, "", "trim"], [7, 2, 1, "", "types"], [7, 2, 1, "", "upper"], [7, 2, 1, "", "variant_name"], [7, 2, 1, "", "window_frame"]], "datafusion.LogicalPlan": [[7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_raw_plan"], [7, 2, 1, "", "display"], [7, 2, 1, "", "display_graphviz"], [7, 2, 1, "", "display_indent"], [7, 2, 1, "", "display_indent_schema"], [7, 2, 1, "", "from_proto"], [7, 2, 1, "", "inputs"], [7, 2, 1, "", "to_proto"], [7, 2, 1, "", "to_variant"]], "datafusion.ParquetColumnOptions": [[7, 3, 1, "id0", "bloom_filter_enabled"], [7, 3, 1, "id2", "bloom_filter_fpp"], [7, 3, 1, "id3", "bloom_filter_ndv"], [7, 3, 1, "id4", "compression"], [7, 3, 1, "id5", "dictionary_enabled"], [7, 3, 1, "id6", "encoding"], [7, 3, 1, "id7", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "id8", "allow_single_file_parallelism"], [7, 3, 1, "id9", "bloom_filter_fpp"], [7, 3, 1, "id10", "bloom_filter_ndv"], [7, 3, 1, "id11", "bloom_filter_on_write"], [7, 3, 1, "id12", "column_index_truncate_length"], [7, 3, 1, "id13", "column_specific_options"], [7, 3, 1, "", "compression"], [7, 3, 1, "id14", "created_by"], [7, 3, 1, "id15", "data_page_row_count_limit"], [7, 3, 1, "id16", "data_pagesize_limit"], [7, 3, 1, "id17", "dictionary_enabled"], [7, 3, 1, "id18", "dictionary_page_size_limit"], [7, 3, 1, "id19", "encoding"], [7, 3, 1, "id20", "max_row_group_size"], [7, 3, 1, "id21", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "id22", "maximum_parallel_row_group_writers"], [7, 3, 1, "id23", "skip_arrow_metadata"], [7, 3, 1, "id24", "statistics_enabled"], [7, 3, 1, "id25", "statistics_truncate_length"], [7, 3, 1, "id26", "write_batch_size"], [7, 3, 1, "id27", "writer_version"]], "datafusion.RecordBatch": [[7, 3, 1, "", "record_batch"], [7, 2, 1, "", "to_pyarrow"]], "datafusion.RecordBatchStream": [[7, 2, 1, "", "__aiter__"], [7, 2, 1, "", "__anext__"], [7, 2, 1, "", "__iter__"], [7, 2, 1, "", "__next__"], [7, 2, 1, "", "next"], [7, 3, 1, "", "rbs"]], "datafusion.RuntimeEnvBuilder": [[7, 3, 1, "", "config_internal"], [7, 2, 1, "", "with_disk_manager_disabled"], [7, 2, 1, "", "with_disk_manager_os"], [7, 2, 1, "", "with_disk_manager_specified"], [7, 2, 1, "", "with_fair_spill_pool"], [7, 2, 1, "", "with_greedy_memory_pool"], [7, 2, 1, "", "with_temp_file_path"], [7, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.SQLOptions": [[7, 3, 1, "", "options_internal"], [7, 2, 1, "", "with_allow_ddl"], [7, 2, 1, "", "with_allow_dml"], [7, 2, 1, "", "with_allow_statements"]], "datafusion.ScalarUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 3, 1, "", "_udf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udf"]], "datafusion.SessionConfig": [[7, 3, 1, "", "config_internal"], [7, 2, 1, "", "set"], [7, 2, 1, "", "with_batch_size"], [7, 2, 1, "", "with_create_default_catalog_and_schema"], [7, 2, 1, "", "with_default_catalog_and_schema"], [7, 2, 1, "", "with_information_schema"], [7, 2, 1, "", "with_parquet_pruning"], [7, 2, 1, "", "with_repartition_aggregations"], [7, 2, 1, "", "with_repartition_file_min_size"], [7, 2, 1, "", "with_repartition_file_scans"], [7, 2, 1, "", "with_repartition_joins"], [7, 2, 1, "", "with_repartition_sorts"], [7, 2, 1, "", "with_repartition_windows"], [7, 2, 1, "", "with_target_partitions"]], "datafusion.Table": [[7, 2, 1, "", "__repr__"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"], [7, 3, 1, "", "table"]], "datafusion.TableFunction": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "_create_table_udf"], [7, 2, 1, "", "_create_table_udf_decorator"], [7, 3, 1, "", "_udtf"], [7, 2, 1, "", "udtf"]], "datafusion.WindowFrame": [[7, 2, 1, "", "__repr__"], [7, 2, 1, "", "get_frame_units"], [7, 2, 1, "", "get_lower_bound"], [7, 2, 1, "", "get_upper_bound"], [7, 3, 1, "", "window_frame"]], "datafusion.WindowUDF": [[7, 2, 1, "", "__call__"], [7, 2, 1, "", "__repr__"], [7, 2, 1, "", "_create_window_udf"], [7, 2, 1, "", "_create_window_udf_decorator"], [7, 2, 1, "", "_get_default_name"], [7, 2, 1, "", "_normalize_input_types"], [7, 3, 1, "", "_udwf"], [7, 2, 1, "", "from_pycapsule"], [7, 2, 1, "", "udwf"]], "datafusion.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "CatalogProvider"], [0, 1, 1, "", "Schema"], [0, 1, 1, "", "SchemaProvider"], [0, 1, 1, "", "Table"]], "datafusion.catalog.Catalog": [[0, 2, 1, "", "__repr__"], [0, 3, 1, "", "catalog"], [0, 2, 1, "", "database"], [0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "memory_catalog"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.CatalogProvider": [[0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.Schema": [[0, 2, 1, "", "__repr__"], [0, 3, 1, "", "_raw_schema"], [0, 2, 1, "", "deregister_table"], [0, 2, 1, "", "memory_schema"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_table"], [0, 2, 1, "", "table"], [0, 2, 1, "", "table_names"]], "datafusion.catalog.SchemaProvider": [[0, 2, 1, "", "deregister_table"], [0, 2, 1, "", "owner_name"], [0, 2, 1, "", "register_table"], [0, 2, 1, "", "table"], [0, 2, 1, "", "table_exist"], [0, 2, 1, "", "table_names"]], "datafusion.catalog.Table": [[0, 2, 1, "", "__repr__"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"], [0, 3, 1, "", "table"]], "datafusion.context": [[1, 1, 1, "", "ArrowArrayExportable"], [1, 1, 1, "", "ArrowStreamExportable"], [1, 1, 1, "", "CatalogProviderExportable"], [1, 1, 1, "", "RuntimeConfig"], [1, 1, 1, "", "RuntimeEnvBuilder"], [1, 1, 1, "", "SQLOptions"], [1, 1, 1, "", "SessionConfig"], [1, 1, 1, "", "SessionContext"], [1, 1, 1, "", "TableProviderExportable"]], "datafusion.context.ArrowArrayExportable": [[1, 2, 1, "", "__arrow_c_array__"]], "datafusion.context.ArrowStreamExportable": [[1, 2, 1, "", "__arrow_c_stream__"]], "datafusion.context.CatalogProviderExportable": [[1, 2, 1, "", "__datafusion_catalog_provider__"]], "datafusion.context.RuntimeEnvBuilder": [[1, 3, 1, "", "config_internal"], [1, 2, 1, "", "with_disk_manager_disabled"], [1, 2, 1, "", "with_disk_manager_os"], [1, 2, 1, "", "with_disk_manager_specified"], [1, 2, 1, "", "with_fair_spill_pool"], [1, 2, 1, "", "with_greedy_memory_pool"], [1, 2, 1, "", "with_temp_file_path"], [1, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.context.SQLOptions": [[1, 3, 1, "", "options_internal"], [1, 2, 1, "", "with_allow_ddl"], [1, 2, 1, "", "with_allow_dml"], [1, 2, 1, "", "with_allow_statements"]], "datafusion.context.SessionConfig": [[1, 3, 1, "", "config_internal"], [1, 2, 1, "", "set"], [1, 2, 1, "", "with_batch_size"], [1, 2, 1, "", "with_create_default_catalog_and_schema"], [1, 2, 1, "", "with_default_catalog_and_schema"], [1, 2, 1, "", "with_information_schema"], [1, 2, 1, "", "with_parquet_pruning"], [1, 2, 1, "", "with_repartition_aggregations"], [1, 2, 1, "", "with_repartition_file_min_size"], [1, 2, 1, "", "with_repartition_file_scans"], [1, 2, 1, "", "with_repartition_joins"], [1, 2, 1, "", "with_repartition_sorts"], [1, 2, 1, "", "with_repartition_windows"], [1, 2, 1, "", "with_target_partitions"]], "datafusion.context.SessionContext": [[1, 2, 1, "", "__repr__"], [1, 2, 1, "", "_convert_table_partition_cols"], [1, 2, 1, "", "catalog"], [1, 2, 1, "", "catalog_names"], [1, 2, 1, "", "create_dataframe"], [1, 2, 1, "", "create_dataframe_from_logical_plan"], [1, 3, 1, "", "ctx"], [1, 2, 1, "", "deregister_table"], [1, 2, 1, "", "empty_table"], [1, 2, 1, "", "enable_url_table"], [1, 2, 1, "", "execute"], [1, 2, 1, "", "from_arrow"], [1, 2, 1, "", "from_arrow_table"], [1, 2, 1, "", "from_pandas"], [1, 2, 1, "", "from_polars"], [1, 2, 1, "", "from_pydict"], [1, 2, 1, "", "from_pylist"], [1, 2, 1, "", "global_ctx"], [1, 2, 1, "", "read_avro"], [1, 2, 1, "", "read_csv"], [1, 2, 1, "", "read_json"], [1, 2, 1, "", "read_parquet"], [1, 2, 1, "", "read_table"], [1, 2, 1, "", "register_avro"], [1, 2, 1, "", "register_catalog_provider"], [1, 2, 1, "", "register_csv"], [1, 2, 1, "", "register_dataset"], [1, 2, 1, "", "register_json"], [1, 2, 1, "", "register_listing_table"], [1, 2, 1, "", "register_object_store"], [1, 2, 1, "", "register_parquet"], [1, 2, 1, "", "register_record_batches"], [1, 2, 1, "", "register_table"], [1, 2, 1, "", "register_table_provider"], [1, 2, 1, "", "register_udaf"], [1, 2, 1, "", "register_udf"], [1, 2, 1, "", "register_udtf"], [1, 2, 1, "", "register_udwf"], [1, 2, 1, "", "register_view"], [1, 2, 1, "", "session_id"], [1, 2, 1, "", "sql"], [1, 2, 1, "", "sql_with_options"], [1, 2, 1, "", "table"], [1, 2, 1, "", "table_exist"]], "datafusion.context.TableProviderExportable": [[1, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[2, 1, 1, "", "Compression"], [2, 1, 1, "", "DataFrame"], [2, 1, 1, "", "ParquetColumnOptions"], [2, 1, 1, "", "ParquetWriterOptions"]], "datafusion.dataframe.Compression": [[2, 3, 1, "", "BROTLI"], [2, 3, 1, "", "GZIP"], [2, 3, 1, "", "LZ4"], [2, 3, 1, "", "LZ4_RAW"], [2, 3, 1, "", "SNAPPY"], [2, 3, 1, "", "UNCOMPRESSED"], [2, 3, 1, "", "ZSTD"], [2, 2, 1, "", "from_str"], [2, 2, 1, "", "get_default_level"]], "datafusion.dataframe.DataFrame": [[2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__repr__"], [2, 2, 1, "", "_repr_html_"], [2, 2, 1, "", "aggregate"], [2, 2, 1, "", "cache"], [2, 2, 1, "", "cast"], [2, 2, 1, "", "collect"], [2, 2, 1, "", "collect_partitioned"], [2, 2, 1, "", "count"], [2, 2, 1, "", "default_str_repr"], [2, 2, 1, "", "describe"], [2, 3, 1, "", "df"], [2, 2, 1, "", "distinct"], [2, 2, 1, "", "drop"], [2, 2, 1, "", "except_all"], [2, 2, 1, "", "execute_stream"], [2, 2, 1, "", "execute_stream_partitioned"], [2, 2, 1, "", "execution_plan"], [2, 2, 1, "", "explain"], [2, 2, 1, "", "fill_null"], [2, 2, 1, "", "filter"], [2, 2, 1, "", "head"], [2, 2, 1, "", "intersect"], [2, 2, 1, "", "into_view"], [2, 2, 1, "", "join"], [2, 2, 1, "", "join_on"], [2, 2, 1, "", "limit"], [2, 2, 1, "", "logical_plan"], [2, 2, 1, "", "optimized_logical_plan"], [2, 2, 1, "", "repartition"], [2, 2, 1, "", "repartition_by_hash"], [2, 2, 1, "", "schema"], [2, 2, 1, "", "select"], [2, 2, 1, "", "select_columns"], [2, 2, 1, "", "show"], [2, 2, 1, "", "sort"], [2, 2, 1, "", "tail"], [2, 2, 1, "", "to_arrow_table"], [2, 2, 1, "", "to_pandas"], [2, 2, 1, "", "to_polars"], [2, 2, 1, "", "to_pydict"], [2, 2, 1, "", "to_pylist"], [2, 2, 1, "", "transform"], [2, 2, 1, "", "union"], [2, 2, 1, "", "union_distinct"], [2, 2, 1, "", "unnest_columns"], [2, 2, 1, "", "with_column"], [2, 2, 1, "", "with_column_renamed"], [2, 2, 1, "", "with_columns"], [2, 2, 1, "", "write_csv"], [2, 2, 1, "", "write_json"], [2, 2, 1, "", "write_parquet"], [2, 2, 1, "", "write_parquet_with_options"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "id0", "bloom_filter_enabled"], [2, 3, 1, "id1", "bloom_filter_fpp"], [2, 3, 1, "id2", "bloom_filter_ndv"], [2, 3, 1, "id3", "compression"], [2, 3, 1, "id4", "dictionary_enabled"], [2, 3, 1, "id5", "encoding"], [2, 3, 1, "id6", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "id7", "allow_single_file_parallelism"], [2, 3, 1, "id8", "bloom_filter_fpp"], [2, 3, 1, "id9", "bloom_filter_ndv"], [2, 3, 1, "id10", "bloom_filter_on_write"], [2, 3, 1, "id11", "column_index_truncate_length"], [2, 3, 1, "id12", "column_specific_options"], [2, 3, 1, "", "compression"], [2, 3, 1, "id13", "created_by"], [2, 3, 1, "id14", "data_page_row_count_limit"], [2, 3, 1, "id15", "data_pagesize_limit"], [2, 3, 1, "id16", "dictionary_enabled"], [2, 3, 1, "id17", "dictionary_page_size_limit"], [2, 3, 1, "id18", "encoding"], [2, 3, 1, "id19", "max_row_group_size"], [2, 3, 1, "id20", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "id21", "maximum_parallel_row_group_writers"], [2, 3, 1, "id22", "skip_arrow_metadata"], [2, 3, 1, "id23", "statistics_enabled"], [2, 3, 1, "id24", "statistics_truncate_length"], [2, 3, 1, "id25", "write_batch_size"], [2, 3, 1, "id26", "writer_version"]], "datafusion.dataframe_formatter": [[3, 1, 1, "", "CellFormatter"], [3, 1, 1, "", "DataFrameHtmlFormatter"], [3, 1, 1, "", "DefaultStyleProvider"], [3, 1, 1, "", "FormatterManager"], [3, 1, 1, "", "StyleProvider"], [3, 6, 1, "", "_refresh_formatter_reference"], [3, 6, 1, "", "_validate_bool"], [3, 6, 1, "", "_validate_positive_int"], [3, 6, 1, "", "configure_formatter"], [3, 6, 1, "", "get_formatter"], [3, 6, 1, "", "reset_formatter"], [3, 6, 1, "", "set_formatter"]], "datafusion.dataframe_formatter.CellFormatter": [[3, 2, 1, "", "__call__"]], "datafusion.dataframe_formatter.DataFrameHtmlFormatter": [[3, 2, 1, "", "_build_expandable_cell"], [3, 2, 1, "", "_build_html_footer"], [3, 2, 1, "", "_build_html_header"], [3, 2, 1, "", "_build_regular_cell"], [3, 2, 1, "", "_build_table_body"], [3, 2, 1, "", "_build_table_container_start"], [3, 2, 1, "", "_build_table_header"], [3, 3, 1, "", "_custom_cell_builder"], [3, 3, 1, "", "_custom_header_builder"], [3, 2, 1, "", "_format_cell_value"], [3, 2, 1, "", "_get_cell_value"], [3, 2, 1, "", "_get_default_css"], [3, 2, 1, "", "_get_javascript"], [3, 3, 1, "", "_type_formatters"], [3, 3, 1, "", "custom_css"], [3, 3, 1, "", "enable_cell_expansion"], [3, 2, 1, "", "format_html"], [3, 2, 1, "", "format_str"], [3, 3, 1, "", "max_cell_length"], [3, 3, 1, "", "max_height"], [3, 3, 1, "", "max_memory_bytes"], [3, 3, 1, "", "max_width"], [3, 3, 1, "", "min_rows_display"], [3, 2, 1, "", "register_formatter"], [3, 3, 1, "", "repr_rows"], [3, 2, 1, "", "set_custom_cell_builder"], [3, 2, 1, "", "set_custom_header_builder"], [3, 3, 1, "", "show_truncation_message"], [3, 3, 1, "", "style_provider"], [3, 3, 1, "", "use_shared_styles"]], "datafusion.dataframe_formatter.DefaultStyleProvider": [[3, 2, 1, "", "get_cell_style"], [3, 2, 1, "", "get_header_style"]], "datafusion.dataframe_formatter.FormatterManager": [[3, 3, 1, "", "_default_formatter"], [3, 2, 1, "", "get_formatter"], [3, 2, 1, "", "set_formatter"]], "datafusion.dataframe_formatter.StyleProvider": [[3, 2, 1, "", "get_cell_style"], [3, 2, 1, "", "get_header_style"]], "datafusion.expr": [[4, 4, 1, "", "Aggregate"], [4, 4, 1, "", "AggregateFunction"], [4, 4, 1, "", "Alias"], [4, 4, 1, "", "Analyze"], [4, 4, 1, "", "Between"], [4, 4, 1, "", "BinaryExpr"], [4, 4, 1, "", "Case"], [4, 1, 1, "", "CaseBuilder"], [4, 4, 1, "", "Cast"], [4, 4, 1, "", "Column"], [4, 4, 1, "", "CopyTo"], [4, 4, 1, "", "CreateCatalog"], [4, 4, 1, "", "CreateCatalogSchema"], [4, 4, 1, "", "CreateExternalTable"], [4, 4, 1, "", "CreateFunction"], [4, 4, 1, "", "CreateFunctionBody"], [4, 4, 1, "", "CreateIndex"], [4, 4, 1, "", "CreateMemoryTable"], [4, 4, 1, "", "CreateView"], [4, 4, 1, "", "Deallocate"], [4, 4, 1, "", "DescribeTable"], [4, 4, 1, "", "Distinct"], [4, 4, 1, "", "DmlStatement"], [4, 4, 1, "", "DropCatalogSchema"], [4, 4, 1, "", "DropFunction"], [4, 4, 1, "", "DropTable"], [4, 4, 1, "", "DropView"], [4, 4, 1, "", "EmptyRelation"], [4, 4, 1, "", "Execute"], [4, 4, 1, "", "Exists"], [4, 4, 1, "", "Explain"], [4, 1, 1, "", "Expr"], [4, 4, 1, "", "Extension"], [4, 4, 1, "", "FileType"], [4, 4, 1, "", "Filter"], [4, 4, 1, "", "GroupingSet"], [4, 4, 1, "", "ILike"], [4, 4, 1, "", "InList"], [4, 4, 1, "", "InSubquery"], [4, 4, 1, "", "IsFalse"], [4, 4, 1, "", "IsNotFalse"], [4, 4, 1, "", "IsNotNull"], [4, 4, 1, "", "IsNotTrue"], [4, 4, 1, "", "IsNotUnknown"], [4, 4, 1, "", "IsNull"], [4, 4, 1, "", "IsTrue"], [4, 4, 1, "", "IsUnknown"], [4, 4, 1, "", "Join"], [4, 4, 1, "", "JoinConstraint"], [4, 4, 1, "", "JoinType"], [4, 4, 1, "", "Like"], [4, 4, 1, "", "Limit"], [4, 4, 1, "", "Literal"], [4, 4, 1, "", "Negative"], [4, 4, 1, "", "Not"], [4, 4, 1, "", "OperateFunctionArg"], [4, 4, 1, "", "Partitioning"], [4, 4, 1, "", "Placeholder"], [4, 4, 1, "", "Prepare"], [4, 4, 1, "", "Projection"], [4, 4, 1, "", "RecursiveQuery"], [4, 4, 1, "", "Repartition"], [4, 4, 1, "", "ScalarSubquery"], [4, 4, 1, "", "ScalarVariable"], [4, 4, 1, "", "SetVariable"], [4, 4, 1, "", "SimilarTo"], [4, 4, 1, "", "Sort"], [4, 1, 1, "", "SortExpr"], [4, 4, 1, "", "Subquery"], [4, 4, 1, "", "SubqueryAlias"], [4, 4, 1, "", "TableScan"], [4, 4, 1, "", "TransactionAccessMode"], [4, 4, 1, "", "TransactionConclusion"], [4, 4, 1, "", "TransactionEnd"], [4, 4, 1, "", "TransactionIsolationLevel"], [4, 4, 1, "", "TransactionStart"], [4, 4, 1, "", "TryCast"], [4, 4, 1, "", "Union"], [4, 4, 1, "", "Unnest"], [4, 4, 1, "", "UnnestExpr"], [4, 4, 1, "", "Values"], [4, 1, 1, "", "Window"], [4, 4, 1, "", "WindowExpr"], [4, 1, 1, "", "WindowFrame"], [4, 1, 1, "", "WindowFrameBound"]], "datafusion.expr.CaseBuilder": [[4, 3, 1, "", "case_builder"], [4, 2, 1, "", "end"], [4, 2, 1, "", "otherwise"], [4, 2, 1, "", "when"]], "datafusion.expr.Expr": [[4, 2, 1, "", "__add__"], [4, 2, 1, "", "__and__"], [4, 2, 1, "", "__eq__"], [4, 2, 1, "", "__ge__"], [4, 2, 1, "", "__getitem__"], [4, 2, 1, "", "__gt__"], [4, 2, 1, "", "__invert__"], [4, 2, 1, "", "__le__"], [4, 2, 1, "", "__lt__"], [4, 2, 1, "", "__mod__"], [4, 2, 1, "", "__mul__"], [4, 2, 1, "", "__ne__"], [4, 2, 1, "", "__or__"], [4, 3, 1, "", "__radd__"], [4, 3, 1, "", "__rand__"], [4, 2, 1, "", "__repr__"], [4, 2, 1, "", "__richcmp__"], [4, 3, 1, "", "__rmod__"], [4, 3, 1, "", "__rmul__"], [4, 3, 1, "", "__ror__"], [4, 3, 1, "", "__rsub__"], [4, 3, 1, "", "__rtruediv__"], [4, 2, 1, "", "__sub__"], [4, 2, 1, "", "__truediv__"], [4, 3, 1, "", "_to_pyarrow_types"], [4, 2, 1, "", "abs"], [4, 2, 1, "", "acos"], [4, 2, 1, "", "acosh"], [4, 2, 1, "", "alias"], [4, 2, 1, "", "array_dims"], [4, 2, 1, "", "array_distinct"], [4, 2, 1, "", "array_empty"], [4, 2, 1, "", "array_length"], [4, 2, 1, "", "array_ndims"], [4, 2, 1, "", "array_pop_back"], [4, 2, 1, "", "array_pop_front"], [4, 2, 1, "", "arrow_typeof"], [4, 2, 1, "", "ascii"], [4, 2, 1, "", "asin"], [4, 2, 1, "", "asinh"], [4, 2, 1, "", "atan"], [4, 2, 1, "", "atanh"], [4, 2, 1, "", "between"], [4, 2, 1, "", "bit_length"], [4, 2, 1, "", "btrim"], [4, 2, 1, "", "canonical_name"], [4, 2, 1, "", "cardinality"], [4, 2, 1, "", "cast"], [4, 2, 1, "", "cbrt"], [4, 2, 1, "", "ceil"], [4, 2, 1, "", "char_length"], [4, 2, 1, "", "character_length"], [4, 2, 1, "", "chr"], [4, 2, 1, "", "column"], [4, 2, 1, "", "column_name"], [4, 2, 1, "", "cos"], [4, 2, 1, "", "cosh"], [4, 2, 1, "", "cot"], [4, 2, 1, "", "degrees"], [4, 2, 1, "", "display_name"], [4, 2, 1, "", "distinct"], [4, 2, 1, "", "empty"], [4, 2, 1, "", "exp"], [4, 3, 1, "", "expr"], [4, 2, 1, "", "factorial"], [4, 2, 1, "", "fill_nan"], [4, 2, 1, "", "fill_null"], [4, 2, 1, "", "filter"], [4, 2, 1, "", "flatten"], [4, 2, 1, "", "floor"], [4, 2, 1, "", "from_unixtime"], [4, 2, 1, "", "initcap"], [4, 2, 1, "", "is_not_null"], [4, 2, 1, "", "is_null"], [4, 2, 1, "", "isnan"], [4, 2, 1, "", "iszero"], [4, 2, 1, "", "length"], [4, 2, 1, "", "list_dims"], [4, 2, 1, "", "list_distinct"], [4, 2, 1, "", "list_length"], [4, 2, 1, "", "list_ndims"], [4, 2, 1, "", "literal"], [4, 2, 1, "", "literal_with_metadata"], [4, 2, 1, "", "ln"], [4, 2, 1, "", "log10"], [4, 2, 1, "", "log2"], [4, 2, 1, "", "lower"], [4, 2, 1, "", "ltrim"], [4, 2, 1, "", "md5"], [4, 2, 1, "", "null_treatment"], [4, 2, 1, "", "octet_length"], [4, 2, 1, "", "order_by"], [4, 2, 1, "", "over"], [4, 2, 1, "", "partition_by"], [4, 2, 1, "", "python_value"], [4, 2, 1, "", "radians"], [4, 2, 1, "", "reverse"], [4, 2, 1, "", "rex_call_operands"], [4, 2, 1, "", "rex_call_operator"], [4, 2, 1, "", "rex_type"], [4, 2, 1, "", "rtrim"], [4, 2, 1, "", "schema_name"], [4, 2, 1, "", "sha224"], [4, 2, 1, "", "sha256"], [4, 2, 1, "", "sha384"], [4, 2, 1, "", "sha512"], [4, 2, 1, "", "signum"], [4, 2, 1, "", "sin"], [4, 2, 1, "", "sinh"], [4, 2, 1, "", "sort"], [4, 2, 1, "", "sqrt"], [4, 2, 1, "", "string_literal"], [4, 2, 1, "", "tan"], [4, 2, 1, "", "tanh"], [4, 2, 1, "", "to_hex"], [4, 2, 1, "", "to_variant"], [4, 2, 1, "", "trim"], [4, 2, 1, "", "types"], [4, 2, 1, "", "upper"], [4, 2, 1, "", "variant_name"], [4, 2, 1, "", "window_frame"]], "datafusion.expr.SortExpr": [[4, 2, 1, "", "__repr__"], [4, 2, 1, "", "ascending"], [4, 2, 1, "", "expr"], [4, 2, 1, "", "nulls_first"], [4, 3, 1, "", "raw_sort"]], "datafusion.expr.Window": [[4, 3, 1, "", "_null_treatment"], [4, 3, 1, "", "_order_by"], [4, 3, 1, "", "_partition_by"], [4, 3, 1, "", "_window_frame"]], "datafusion.expr.WindowFrame": [[4, 2, 1, "", "__repr__"], [4, 2, 1, "", "get_frame_units"], [4, 2, 1, "", "get_lower_bound"], [4, 2, 1, "", "get_upper_bound"], [4, 3, 1, "", "window_frame"]], "datafusion.expr.WindowFrameBound": [[4, 3, 1, "", "frame_bound"], [4, 2, 1, "", "get_offset"], [4, 2, 1, "", "is_current_row"], [4, 2, 1, "", "is_following"], [4, 2, 1, "", "is_preceding"], [4, 2, 1, "", "is_unbounded"]], "datafusion.functions": [[5, 6, 1, "", "abs"], [5, 6, 1, "", "acos"], [5, 6, 1, "", "acosh"], [5, 6, 1, "", "alias"], [5, 6, 1, "", "approx_distinct"], [5, 6, 1, "", "approx_median"], [5, 6, 1, "", "approx_percentile_cont"], [5, 6, 1, "", "approx_percentile_cont_with_weight"], [5, 6, 1, "", "array"], [5, 6, 1, "", "array_agg"], [5, 6, 1, "", "array_append"], [5, 6, 1, "", "array_cat"], [5, 6, 1, "", "array_concat"], [5, 6, 1, "", "array_dims"], [5, 6, 1, "", "array_distinct"], [5, 6, 1, "", "array_element"], [5, 6, 1, "", "array_empty"], [5, 6, 1, "", "array_except"], [5, 6, 1, "", "array_extract"], [5, 6, 1, "", "array_has"], [5, 6, 1, "", "array_has_all"], [5, 6, 1, "", "array_has_any"], [5, 6, 1, "", "array_indexof"], [5, 6, 1, "", "array_intersect"], [5, 6, 1, "", "array_join"], [5, 6, 1, "", "array_length"], [5, 6, 1, "", "array_ndims"], [5, 6, 1, "", "array_pop_back"], [5, 6, 1, "", "array_pop_front"], [5, 6, 1, "", "array_position"], [5, 6, 1, "", "array_positions"], [5, 6, 1, "", "array_prepend"], [5, 6, 1, "", "array_push_back"], [5, 6, 1, "", "array_push_front"], [5, 6, 1, "", "array_remove"], [5, 6, 1, "", "array_remove_all"], [5, 6, 1, "", "array_remove_n"], [5, 6, 1, "", "array_repeat"], [5, 6, 1, "", "array_replace"], [5, 6, 1, "", "array_replace_all"], [5, 6, 1, "", "array_replace_n"], [5, 6, 1, "", "array_resize"], [5, 6, 1, "", "array_slice"], [5, 6, 1, "", "array_sort"], [5, 6, 1, "", "array_to_string"], [5, 6, 1, "", "array_union"], [5, 6, 1, "", "arrow_cast"], [5, 6, 1, "", "arrow_typeof"], [5, 6, 1, "", "ascii"], [5, 6, 1, "", "asin"], [5, 6, 1, "", "asinh"], [5, 6, 1, "", "atan"], [5, 6, 1, "", "atan2"], [5, 6, 1, "", "atanh"], [5, 6, 1, "", "avg"], [5, 6, 1, "", "bit_and"], [5, 6, 1, "", "bit_length"], [5, 6, 1, "", "bit_or"], [5, 6, 1, "", "bit_xor"], [5, 6, 1, "", "bool_and"], [5, 6, 1, "", "bool_or"], [5, 6, 1, "", "btrim"], [5, 6, 1, "", "cardinality"], [5, 6, 1, "", "case"], [5, 6, 1, "", "cbrt"], [5, 6, 1, "", "ceil"], [5, 6, 1, "", "char_length"], [5, 6, 1, "", "character_length"], [5, 6, 1, "", "chr"], [5, 6, 1, "", "coalesce"], [5, 6, 1, "", "col"], [5, 6, 1, "", "concat"], [5, 6, 1, "", "concat_ws"], [5, 6, 1, "", "corr"], [5, 6, 1, "", "cos"], [5, 6, 1, "", "cosh"], [5, 6, 1, "", "cot"], [5, 6, 1, "", "count"], [5, 6, 1, "", "count_star"], [5, 6, 1, "", "covar"], [5, 6, 1, "", "covar_pop"], [5, 6, 1, "", "covar_samp"], [5, 6, 1, "", "cume_dist"], [5, 6, 1, "", "current_date"], [5, 6, 1, "", "current_time"], [5, 6, 1, "", "date_bin"], [5, 6, 1, "", "date_part"], [5, 6, 1, "", "date_trunc"], [5, 6, 1, "", "datepart"], [5, 6, 1, "", "datetrunc"], [5, 6, 1, "", "decode"], [5, 6, 1, "", "degrees"], [5, 6, 1, "", "dense_rank"], [5, 6, 1, "", "digest"], [5, 6, 1, "", "empty"], [5, 6, 1, "", "encode"], [5, 6, 1, "", "ends_with"], [5, 6, 1, "", "exp"], [5, 6, 1, "", "extract"], [5, 6, 1, "", "factorial"], [5, 6, 1, "", "find_in_set"], [5, 6, 1, "", "first_value"], [5, 6, 1, "", "flatten"], [5, 6, 1, "", "floor"], [5, 6, 1, "", "from_unixtime"], [5, 6, 1, "", "gcd"], [5, 6, 1, "", "in_list"], [5, 6, 1, "", "initcap"], [5, 6, 1, "", "isnan"], [5, 6, 1, "", "iszero"], [5, 6, 1, "", "lag"], [5, 6, 1, "", "last_value"], [5, 6, 1, "", "lcm"], [5, 6, 1, "", "lead"], [5, 6, 1, "", "left"], [5, 6, 1, "", "length"], [5, 6, 1, "", "levenshtein"], [5, 6, 1, "", "list_append"], [5, 6, 1, "", "list_cat"], [5, 6, 1, "", "list_concat"], [5, 6, 1, "", "list_dims"], [5, 6, 1, "", "list_distinct"], [5, 6, 1, "", "list_element"], [5, 6, 1, "", "list_except"], [5, 6, 1, "", "list_extract"], [5, 6, 1, "", "list_indexof"], [5, 6, 1, "", "list_intersect"], [5, 6, 1, "", "list_join"], [5, 6, 1, "", "list_length"], [5, 6, 1, "", "list_ndims"], [5, 6, 1, "", "list_position"], [5, 6, 1, "", "list_positions"], [5, 6, 1, "", "list_prepend"], [5, 6, 1, "", "list_push_back"], [5, 6, 1, "", "list_push_front"], [5, 6, 1, "", "list_remove"], [5, 6, 1, "", "list_remove_all"], [5, 6, 1, "", "list_remove_n"], [5, 6, 1, "", "list_repeat"], [5, 6, 1, "", "list_replace"], [5, 6, 1, "", "list_replace_all"], [5, 6, 1, "", "list_replace_n"], [5, 6, 1, "", "list_resize"], [5, 6, 1, "", "list_slice"], [5, 6, 1, "", "list_sort"], [5, 6, 1, "", "list_to_string"], [5, 6, 1, "", "list_union"], [5, 6, 1, "", "ln"], [5, 6, 1, "", "log"], [5, 6, 1, "", "log10"], [5, 6, 1, "", "log2"], [5, 6, 1, "", "lower"], [5, 6, 1, "", "lpad"], [5, 6, 1, "", "ltrim"], [5, 6, 1, "", "make_array"], [5, 6, 1, "", "make_date"], [5, 6, 1, "", "make_list"], [5, 6, 1, "", "max"], [5, 6, 1, "", "md5"], [5, 6, 1, "", "mean"], [5, 6, 1, "", "median"], [5, 6, 1, "", "min"], [5, 6, 1, "", "named_struct"], [5, 6, 1, "", "nanvl"], [5, 6, 1, "", "now"], [5, 6, 1, "", "nth_value"], [5, 6, 1, "", "ntile"], [5, 6, 1, "", "nullif"], [5, 6, 1, "", "nvl"], [5, 6, 1, "", "octet_length"], [5, 6, 1, "", "order_by"], [5, 6, 1, "", "overlay"], [5, 6, 1, "", "percent_rank"], [5, 6, 1, "", "pi"], [5, 6, 1, "", "pow"], [5, 6, 1, "", "power"], [5, 6, 1, "", "radians"], [5, 6, 1, "", "random"], [5, 6, 1, "", "range"], [5, 6, 1, "", "rank"], [5, 6, 1, "", "regexp_count"], [5, 6, 1, "", "regexp_like"], [5, 6, 1, "", "regexp_match"], [5, 6, 1, "", "regexp_replace"], [5, 6, 1, "", "regr_avgx"], [5, 6, 1, "", "regr_avgy"], [5, 6, 1, "", "regr_count"], [5, 6, 1, "", "regr_intercept"], [5, 6, 1, "", "regr_r2"], [5, 6, 1, "", "regr_slope"], [5, 6, 1, "", "regr_sxx"], [5, 6, 1, "", "regr_sxy"], [5, 6, 1, "", "regr_syy"], [5, 6, 1, "", "repeat"], [5, 6, 1, "", "replace"], [5, 6, 1, "", "reverse"], [5, 6, 1, "", "right"], [5, 6, 1, "", "round"], [5, 6, 1, "", "row_number"], [5, 6, 1, "", "rpad"], [5, 6, 1, "", "rtrim"], [5, 6, 1, "", "sha224"], [5, 6, 1, "", "sha256"], [5, 6, 1, "", "sha384"], [5, 6, 1, "", "sha512"], [5, 6, 1, "", "signum"], [5, 6, 1, "", "sin"], [5, 6, 1, "", "sinh"], [5, 6, 1, "", "split_part"], [5, 6, 1, "", "sqrt"], [5, 6, 1, "", "starts_with"], [5, 6, 1, "", "stddev"], [5, 6, 1, "", "stddev_pop"], [5, 6, 1, "", "stddev_samp"], [5, 6, 1, "", "string_agg"], [5, 6, 1, "", "strpos"], [5, 6, 1, "", "struct"], [5, 6, 1, "", "substr"], [5, 6, 1, "", "substr_index"], [5, 6, 1, "", "substring"], [5, 6, 1, "", "sum"], [5, 6, 1, "", "tan"], [5, 6, 1, "", "tanh"], [5, 6, 1, "", "to_hex"], [5, 6, 1, "", "to_timestamp"], [5, 6, 1, "", "to_timestamp_micros"], [5, 6, 1, "", "to_timestamp_millis"], [5, 6, 1, "", "to_timestamp_nanos"], [5, 6, 1, "", "to_timestamp_seconds"], [5, 6, 1, "", "to_unixtime"], [5, 6, 1, "", "translate"], [5, 6, 1, "", "trim"], [5, 6, 1, "", "trunc"], [5, 6, 1, "", "upper"], [5, 6, 1, "", "uuid"], [5, 6, 1, "", "var"], [5, 6, 1, "", "var_pop"], [5, 6, 1, "", "var_samp"], [5, 6, 1, "", "var_sample"], [5, 6, 1, "", "when"], [5, 6, 1, "", "window"]], "datafusion.input": [[9, 1, 1, "", "LocationInputPlugin"], [8, 0, 0, "-", "base"], [10, 0, 0, "-", "location"]], "datafusion.input.LocationInputPlugin": [[9, 2, 1, "", "build_table"], [9, 2, 1, "", "is_correct_input"]], "datafusion.input.base": [[8, 1, 1, "", "BaseInputSource"]], "datafusion.input.base.BaseInputSource": [[8, 2, 1, "", "build_table"], [8, 2, 1, "", "is_correct_input"]], "datafusion.input.location": [[10, 1, 1, "", "LocationInputPlugin"]], "datafusion.input.location.LocationInputPlugin": [[10, 2, 1, "", "build_table"], [10, 2, 1, "", "is_correct_input"]], "datafusion.io": [[11, 6, 1, "", "read_avro"], [11, 6, 1, "", "read_csv"], [11, 6, 1, "", "read_json"], [11, 6, 1, "", "read_parquet"]], "datafusion.object_store": [[12, 4, 1, "", "AmazonS3"], [12, 4, 1, "", "GoogleCloud"], [12, 4, 1, "", "Http"], [12, 4, 1, "", "LocalFileSystem"], [12, 4, 1, "", "MicrosoftAzure"]], "datafusion.plan": [[13, 1, 1, "", "ExecutionPlan"], [13, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[13, 2, 1, "", "__repr__"], [13, 3, 1, "", "_raw_plan"], [13, 2, 1, "", "children"], [13, 2, 1, "", "display"], [13, 2, 1, "", "display_indent"], [13, 2, 1, "", "from_proto"], [13, 5, 1, "", "partition_count"], [13, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[13, 2, 1, "", "__repr__"], [13, 3, 1, "", "_raw_plan"], [13, 2, 1, "", "display"], [13, 2, 1, "", "display_graphviz"], [13, 2, 1, "", "display_indent"], [13, 2, 1, "", "display_indent_schema"], [13, 2, 1, "", "from_proto"], [13, 2, 1, "", "inputs"], [13, 2, 1, "", "to_proto"], [13, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[14, 1, 1, "", "RecordBatch"], [14, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[14, 3, 1, "", "record_batch"], [14, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[14, 2, 1, "", "__aiter__"], [14, 2, 1, "", "__anext__"], [14, 2, 1, "", "__iter__"], [14, 2, 1, "", "__next__"], [14, 2, 1, "", "next"], [14, 3, 1, "", "rbs"]], "datafusion.substrait": [[15, 1, 1, "", "Consumer"], [15, 1, 1, "", "Plan"], [15, 1, 1, "", "Producer"], [15, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[15, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[15, 2, 1, "", "encode"], [15, 3, 1, "", "plan_internal"]], "datafusion.substrait.Producer": [[15, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[15, 2, 1, "", "deserialize"], [15, 2, 1, "", "deserialize_bytes"], [15, 2, 1, "", "serialize"], [15, 2, 1, "", "serialize_bytes"], [15, 2, 1, "", "serialize_to_plan"]], "datafusion.unparser": [[16, 1, 1, "", "Dialect"], [16, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[16, 2, 1, "", "default"], [16, 3, 1, "", "dialect"], [16, 2, 1, "", "duckdb"], [16, 2, 1, "", "mysql"], [16, 2, 1, "", "postgres"], [16, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[16, 2, 1, "", "plan_to_sql"], [16, 3, 1, "", "unparser"], [16, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[17, 1, 1, "", "Accumulator"], [17, 1, 1, "", "AggregateUDF"], [17, 1, 1, "", "AggregateUDFExportable"], [17, 1, 1, "", "ScalarUDF"], [17, 1, 1, "", "ScalarUDFExportable"], [17, 1, 1, "", "TableFunction"], [17, 1, 1, "", "Volatility"], [17, 1, 1, "", "WindowEvaluator"], [17, 1, 1, "", "WindowUDF"], [17, 1, 1, "", "WindowUDFExportable"], [17, 4, 1, "", "_R"], [17, 4, 1, "", "udaf"], [17, 4, 1, "", "udf"], [17, 4, 1, "", "udtf"], [17, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[17, 2, 1, "", "evaluate"], [17, 2, 1, "", "merge"], [17, 2, 1, "", "state"], [17, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 3, 1, "", "_udaf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udaf"]], "datafusion.user_defined.AggregateUDFExportable": [[17, 2, 1, "", "__datafusion_aggregate_udf__"]], "datafusion.user_defined.ScalarUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 3, 1, "", "_udf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udf"]], "datafusion.user_defined.ScalarUDFExportable": [[17, 2, 1, "", "__datafusion_scalar_udf__"]], "datafusion.user_defined.TableFunction": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 2, 1, "", "_create_table_udf"], [17, 2, 1, "", "_create_table_udf_decorator"], [17, 3, 1, "", "_udtf"], [17, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[17, 3, 1, "", "Immutable"], [17, 3, 1, "", "Stable"], [17, 3, 1, "", "Volatile"], [17, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[17, 2, 1, "", "evaluate"], [17, 2, 1, "", "evaluate_all"], [17, 2, 1, "", "evaluate_all_with_rank"], [17, 2, 1, "", "get_range"], [17, 2, 1, "", "include_rank"], [17, 2, 1, "", "is_causal"], [17, 2, 1, "", "memoize"], [17, 2, 1, "", "supports_bounded_execution"], [17, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[17, 2, 1, "", "__call__"], [17, 2, 1, "", "__repr__"], [17, 2, 1, "", "_create_window_udf"], [17, 2, 1, "", "_create_window_udf_decorator"], [17, 2, 1, "", "_get_default_name"], [17, 2, 1, "", "_normalize_input_types"], [17, 3, 1, "", "_udwf"], [17, 2, 1, "", "from_pycapsule"], [17, 2, 1, "", "udwf"]], "datafusion.user_defined.WindowUDFExportable": [[17, 2, 1, "", "__datafusion_window_udf__"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "data", "Python data"], "5": ["py", "property", "Python property"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:data", "5": "py:property", "6": "py:function"}, "terms": {"": [1, 2, 3, 4, 5, 7, 17, 19, 20, 25, 26, 28, 30, 31, 32, 33, 35], "0": [2, 4, 5, 7, 17, 22, 23, 24, 25, 26, 29, 30, 32, 33, 34, 36, 37, 44, 45], "007bff": 36, "01": [22, 26, 29], "01t00": 26, "02t15": 26, "038": 33, "04023": 5, "05": [26, 29], "06": [26, 29], "08": 26, "09": [22, 26], "1": [2, 4, 5, 7, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 45], "10": [3, 4, 5, 7, 17, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 45], "100": [3, 5, 21, 22, 23, 32, 34, 35, 36, 37], "1000": [1, 3, 7, 11, 24, 36], "10000000": 33, "1024": [1, 2, 3, 7, 36], "103": [21, 34, 37], "104": [21, 34, 37], "1048576": [2, 7], "105": [21, 23, 34, 37], "107": [23, 33], "109": [21, 34, 37, 45], "11": [21, 22, 23, 25, 26, 30, 32, 34, 37], "110": [23, 24], "111": [21, 34, 37], "112": 23, "115": [21, 23, 34, 37], "12": [20, 21, 22, 23, 25, 26, 30, 32, 34, 37], "120": [5, 21, 23, 34, 37], "121": 23, "122": [21, 34, 37], "123": [21, 34, 37], "12371": 5, "125": [5, 23, 26, 45], "128": [4, 5, 7], "13": [21, 23, 25, 26, 30, 32, 34, 37], "130": [21, 34, 37], "135": [21, 34, 37], "136": 23, "14": [21, 22, 23, 25, 26, 29, 30, 34, 37], "140": 23, "145": [21, 23, 34, 37], "149": [24, 45], "15": [21, 22, 23, 25, 26, 29, 30, 32, 34, 37], "150": [21, 32, 34, 37], "158": 45, "159": [21, 34, 37, 45], "16": [22, 23, 25, 26, 30, 33], "160": 45, "161": 45, "162": 45, "163": 45, "165": [26, 45], "17": [22, 23, 25, 26, 30, 32], "18": [22, 23, 25, 26, 30, 32], "19": [23, 25, 26, 45], "190": 45, "1902": 5, "1921": 26, "195": [21, 34, 37], "1970": 26, "1m": [2, 7], "1px": 36, "2": [2, 3, 4, 5, 7, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "20": [2, 3, 5, 7, 17, 21, 23, 25, 26, 31, 32, 34, 36, 37, 45], "200": 45, "20000": [2, 7], "2021": 22, "2025": 26, "205": [21, 34, 37], "2097152": [3, 36], "21": [22, 23, 25, 26, 32], "22": [2, 25, 34], "223": 45, "224": [4, 5, 7], "229": 45, "23": [22, 25, 32, 45], "23076923076923": 23, "2345": 5, "24": [22, 25], "25": [3, 5, 21, 23, 25, 26, 32, 34, 35, 36, 37], "256": [4, 5, 7], "25806451612904": 23, "26": [25, 32], "27": 25, "27272488603546": 24, "28": [22, 25, 32], "28571428571429": 23, "29": 25, "2mb": [3, 36], "3": [2, 5, 7, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "30": [21, 23, 25, 31, 32, 34, 37], "300": [3, 36], "309": [21, 26, 34, 37], "31": 25, "314": [21, 26, 34, 37], "318": [21, 26, 34, 37], "32": 25, "33": [22, 25], "333333333333332": 32, "333333333333336": 23, "34": [25, 26], "346": 24, "35": [21, 22, 23, 25, 29, 32, 34, 37], "36": [22, 25], "37": 25, "38": 25, "384": [4, 5, 7], "39": [21, 25, 34, 37, 45], "395": [21, 34, 37], "3rd": 5, "3x": 33, "4": [2, 5, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 45], "40": [5, 20, 21, 23, 25, 31, 34, 37], "405": [21, 26, 34, 37], "41": 25, "413": 24, "415": 24, "417": 24, "42": [23, 25, 32, 34], "42857142857143": 32, "43": [21, 25, 32, 34, 37, 44], "44": [21, 25, 34, 37], "45": [21, 23, 25, 26, 32, 34, 37], "4579": 26, "46": 23, "47": 23, "4732": 26, "48": [21, 23, 34, 37], "49": [21, 34, 37], "495": [21, 34, 37], "4mb": 36, "5": [2, 5, 17, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "50": [3, 5, 7, 21, 23, 31, 34, 36, 37], "500": [3, 7], "5000000": 33, "51": [22, 23], "512": [4, 5, 7], "5129": 26, "52": [21, 23, 34, 37], "525": [21, 26, 34, 37], "53": 23, "530": [21, 34, 37], "534": [21, 26, 34, 37], "54": [23, 25, 26], "55": [21, 23, 32, 34, 37], "56": 23, "58": [21, 23, 34, 37], "5811388300841898": 24, "59": [21, 34, 37], "6": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 35, 37, 38, 45], "60": [5, 21, 23, 32, 34, 37], "62": [21, 34, 37], "625": [21, 26, 34, 37], "63": [21, 23, 34, 37], "630": [21, 34, 37], "634": [21, 26, 34, 37], "64": [2, 7, 20, 21, 32, 34, 37], "65": [21, 23, 25, 29, 32, 34, 37], "66": [22, 23], "666666666666668": 32, "66666666666667": 23, "666667": 5, "67": [23, 25], "7": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 37, 38, 45], "70": [21, 23, 32, 34, 37], "71": [23, 25], "72": 23, "73": 22, "732": 26, "75": [5, 21, 23, 34, 37], "76": 32, "77777777777777": 23, "78": [21, 22, 34, 37], "785714285714285": 23, "78571428571429": 23, "79": [21, 22, 34, 37], "8": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38], "80": [5, 21, 23, 32, 34, 37], "81": 22, "82": [21, 34, 37], "83": [21, 23, 34, 37], "833333333333336": 23, "84": [21, 32, 34, 37], "85": [21, 23, 34, 37], "855": 26, "86": 23, "862152702z": 26, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "88888888888889": 23, "8px": 36, "9": [5, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 37, 38, 45], "90": [5, 21, 23, 32, 34, 37], "91": 23, "92": 22, "94": [22, 29], "95": [22, 23, 32, 45], "96": [22, 23], "972": 26, "977": 24, "98": [23, 45], "A": [1, 2, 4, 5, 7, 8, 13, 15, 17, 22, 24, 28, 32, 34, 35, 44], "AND": [2, 4, 5, 7, 17], "As": [5, 7, 17, 19, 25, 29, 34], "At": [5, 19], "BY": 17, "Be": 2, "By": [2, 7, 19, 20, 23, 34], "For": [1, 2, 5, 15, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 30, 33, 35, 36, 37], "INTO": [1, 7], "If": [0, 1, 2, 3, 4, 5, 7, 8, 11, 17, 19, 20, 23, 26, 28, 30, 32, 34, 37, 44], "In": [17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 36, 37, 38, 45], "It": [1, 2, 3, 4, 5, 7, 17, 19, 21, 22, 23, 25, 28, 38, 43], "Its": 21, "No": [2, 7], "Not": [4, 7], "OR": [4, 5, 7], "On": [2, 19, 34], "One": [2, 4, 19, 23, 32, 34], "Or": [33, 36], "That": [4, 7, 38], "The": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36], "Then": 30, "There": [5, 26, 30, 34], "These": [2, 5, 7, 14, 17, 23, 25, 30, 33, 36], "To": [2, 5, 19, 20, 25, 26, 29, 30, 32, 33, 34, 35, 37, 38, 44], "Will": [2, 36], "With": [4, 7, 37, 38], "__add__": [4, 7], "__aiter__": [7, 14], "__and__": [4, 7], "__anext__": [7, 14], "__arrow_c_array__": [1, 38], "__arrow_c_stream__": [1, 2, 38], "__call__": [3, 7, 17], "__datafusion_aggregate_udf__": 17, "__datafusion_catalog_provider__": 1, "__datafusion_scalar_udf__": 17, "__datafusion_table_function__": 30, "__datafusion_table_provider__": [1, 19, 44], "__datafusion_window_udf__": 17, "__eq__": [4, 7], "__ge__": [4, 7], "__getitem__": [2, 4, 7], "__gt__": [4, 7], "__init__": [7, 17, 30], "__invert__": [4, 7], "__iter__": [7, 14], "__le__": [4, 7], "__lt__": [4, 7], "__mod__": [4, 7], "__mul__": [4, 7], "__ne__": [4, 7], "__next__": [7, 14], "__or__": [4, 7], "__radd__": [4, 7], "__rand__": [4, 7], "__repr__": [0, 1, 2, 3, 4, 7, 13, 17, 36], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__str__": 17, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 37, "_aggreg": 5, "_build_expandable_cel": 3, "_build_html_foot": 3, "_build_html_head": 3, "_build_regular_cel": 3, "_build_table_bodi": 3, "_build_table_container_start": 3, "_build_table_head": 3, "_convert_table_partition_col": 1, "_create_table_udf": [7, 17], "_create_table_udf_decor": [7, 17], "_create_window_udf": [7, 17], "_create_window_udf_decor": [7, 17], "_custom_cell_build": 3, "_custom_header_build": 3, "_default_formatt": 3, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": [7, 17], "_get_javascript": 3, "_intern": [0, 2, 4, 7, 13, 14, 15, 16], "_io_custom_table_provid": 30, "_normalize_input_typ": [7, 17], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 17], "_raw_plan": [7, 13], "_raw_schema": 0, "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 36], "_sum": [7, 17, 30], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_udaf": [7, 17], "_udf": [7, 17], "_udtf": [7, 17], "_udwf": [7, 17], "_validate_bool": 3, "_validate_positive_int": 3, "_window_fram": 4, "_window_funct": 5, "a0": 25, "a_siz": 25, "ab": [4, 5, 7], "abc": [0, 8], "abi": 19, "abi3": 20, "abi_st": 19, "abil": 34, "abl": [7, 13], "about": [15, 16, 19, 21, 32, 33, 35], "abov": [5, 19, 23, 32], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 4, 7, 38], "access": [3, 7, 11, 19, 25, 34, 35], "access_key_id": 34, "account": 34, "accum": [7, 17], "accumul": [7, 17, 30], "accur": 33, "achiev": 21, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 19, "across": [3, 17, 19, 25, 33, 36], "act": [7, 13], "activ": [19, 20], "actual": [2, 33, 35], "ad": [2, 34], "adapt": 19, "add": [0, 1, 2, 3, 4, 5, 19, 20, 35], "add_3": 2, "addit": [2, 3, 4, 5, 7, 15, 16, 17, 19, 20, 30, 33, 34, 35], "addition": [19, 22], "adhoc": 20, "adopt": 19, "advanc": [2, 7, 34, 35, 36], "advantag": [19, 20, 21], "affect": [17, 23, 33, 36], "after": [2, 4, 5, 7, 17, 30, 36], "ag": [25, 35], "against": [1, 4, 5, 17, 19, 21, 31, 36], "age_col": 25, "age_in_year": 25, "agg": 2, "aggreg": [1, 2, 4, 5, 7, 17, 22, 27, 33, 35], "aggregatefunct": 4, "aggregateudf": [1, 7, 17], "aggregateudfexport": [7, 17], "aim": 37, "albert": 25, "algorithm": [2, 5], "alia": [0, 1, 2, 4, 5, 7, 22, 23, 25, 26, 29, 30, 32, 35, 38], "alias": 20, "alic": 28, "align": 36, "all": [0, 1, 2, 3, 4, 5, 7, 17, 19, 20, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36], "alloc": [2, 33], "allow": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 33, 34, 36], "allow_single_file_parallel": [2, 7], "alpha": [30, 34], "alreadi": [2, 5, 7, 19], "also": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 32, 36, 37, 45], "altern": [29, 40, 43], "alternate_a": 2, "alwai": [17, 36], "amazons3": [12, 34], "amount": [2, 17, 35], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 17, 19, 20, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 37, 38, 39, 40, 43], "analyt": 32, "analyz": [2, 4, 20], "ani": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 23, 28, 30, 32, 34, 38], "anoth": [2, 5, 7, 11, 19], "anti": [2, 27], "apach": [1, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [5, 30], "appli": [2, 3, 7, 36], "applic": [19, 33], "approach": [5, 23, 25, 33, 34], "appropri": [17, 20, 34, 36], "approx_distinct": [5, 23], "approx_median": [5, 23], "approx_percentile_cont": [5, 23], "approx_percentile_cont_with_weight": [5, 23], "approxim": [5, 23], "ar": [1, 2, 3, 4, 5, 7, 11, 13, 14, 17, 19, 20, 22, 23, 25, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38], "arbitrari": [2, 5], "arc": [4, 5, 7, 19, 30, 44], "architectur": 33, "area": 19, "arg": [1, 2, 5, 7, 15, 17, 20], "argument": [2, 4, 5, 7, 17, 23, 30], "around": [5, 20, 34], "arrai": [1, 2, 3, 4, 5, 7, 17, 23, 27, 30, 34, 35, 38], "array1": 5, "array2": 5, "array_agg": [5, 23], "array_append": [5, 20], "array_cat": [5, 25], "array_concat": [5, 25], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 25], "array_empti": [4, 5, 7, 25], "array_except": 5, "array_extract": 5, "array_ha": 5, "array_has_al": 5, "array_has_ani": 5, "array_indexof": 5, "array_intersect": 5, "array_join": 5, "array_length": [4, 5, 7], "array_ndim": [4, 5, 7], "array_pop_back": [4, 5, 7], "array_pop_front": [4, 5, 7], "array_posit": 5, "array_prepend": 5, "array_push_back": 5, "array_push_front": 5, "array_remov": 5, "array_remove_al": 5, "array_remove_n": 5, "array_repeat": [5, 25], "array_replac": 5, "array_replace_al": 5, "array_replace_n": 5, "array_res": 5, "array_slic": 5, "array_sort": 5, "array_to_str": 5, "array_union": 5, "arrow": [1, 2, 3, 4, 5, 7, 20, 21, 24, 34, 35, 37, 41], "arrow_cast": [4, 5, 7, 26], "arrow_datafusion_python_root": 20, "arrow_t": 35, "arrow_typeof": [4, 5, 7], "arrowarrayexport": 1, "arrowstreamexport": 1, "arxiv": 5, "as_pi": [7, 17, 30], "ascend": [4, 5, 7, 23, 32, 35], "ascii": [4, 5, 7], "asin": [4, 5, 7], "asinh": [4, 5, 7], "assembl": 1, "assign": [4, 5, 7], "assist": 20, "associ": [0, 1, 4, 5, 7, 19], "assum": [2, 5, 20, 34], "assumpt": 21, "async": [7, 14], "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [21, 34, 37], "attach": [4, 5, 7, 33], "attack": [21, 23, 26, 32, 34, 37, 45], "attempt": [1, 2, 7, 17, 19, 20], "auto": 18, "autoapi": 18, "automat": [1, 7, 33, 35, 36], "avail": [2, 3, 7, 23, 27, 30, 33, 35, 44], "averag": [5, 17, 32], "avg": [5, 17, 23, 32], "avoid": [1, 7, 11], "avro": [1, 7, 11, 34, 35, 36, 41], "awar": [2, 29], "aws_access_key_id": 34, "aws_secret_access_kei": 34, "b": [2, 5, 24, 25, 30, 31, 34, 35, 38], "back": [4, 7, 17, 19, 21, 30, 34, 36, 38], "background": 36, "balanc": 36, "bar": 33, "base": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 17, 18, 25, 28, 30, 33, 34], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 17, 30], "basic": [22, 27, 29, 30, 33, 34], "basic_typ": 26, "batch": [1, 2, 3, 7, 13, 14, 17, 24, 30, 31, 34, 35, 36, 38], "batch_arrai": 30, "batch_siz": [1, 7], "becaus": [4, 7, 30, 34], "becca": 25, "beedril": [21, 32, 34, 37], "beedrillmega": [21, 32, 34, 37], "been": [3, 19], "befor": [3, 5, 20, 25, 30, 36], "beforehand": [1, 7], "begin": [1, 4, 5, 7, 17, 36], "being": 2, "below": [22, 23, 34], "benefit": [2, 7, 33], "best": [1, 2, 7, 19], "beta": 34, "better": [2, 7, 36], "between": [1, 4, 5, 7, 17, 19, 21, 22, 28, 30, 32, 33], "bia": [7, 17], "bias_10": [7, 17], "biased_numb": [7, 17], "biasednumb": [7, 17], "bin": [5, 20], "binari": [4, 5, 7, 13, 19], "binaryexpr": [4, 7], "bind": [7, 17, 21, 37], "bit": [4, 5, 7], "bit_and": [5, 23], "bit_length": [4, 5, 7], "bit_or": [5, 23], "bit_pack": [2, 7], "bit_xor": [5, 23], "bitwis": [5, 25], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [21, 34, 37], "blastoisemega": [21, 34, 37], "blob": [4, 7], "blog": 20, "bloom": [2, 7], "bloom_filter_en": [2, 7], "bloom_filter_fpp": [2, 7], "bloom_filter_ndv": [2, 7], "bloom_filter_on_writ": [2, 7], "blue": 25, "bob": 28, "bodi": 3, "bool": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 16, 17], "bool_": 30, "bool_and": [5, 23], "bool_or": [5, 23], "boolean": [3, 4, 5, 7, 27], "boost": [2, 7], "bootstrap": 20, "border": 36, "both": [2, 4, 5, 7, 17, 19, 20, 25, 28, 30], "bottleneck": 33, "bound": [4, 7, 17, 30, 32, 44], "boundari": [17, 19, 32], "bow": 32, "box": 19, "bracket": 25, "break": 19, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 34, "bug": [21, 23, 32, 34, 37], "build": [3, 4, 5, 7, 19, 21, 22, 23, 32, 35], "build_flag": 20, "build_tabl": [8, 9, 10], "builder": [3, 4, 5, 23, 32], "built": [17, 19, 23, 25, 26, 30], "bulb": 26, "bulbafleur": 26, "bulbasaur": [21, 26, 32, 34, 37], "bulk": 19, "butterfre": [21, 32, 34, 37], "button": 3, "byte": [1, 2, 3, 4, 5, 7, 13, 15], "byte_stream_split": [2, 7], "c": [1, 2, 17, 19, 20, 21, 24, 34, 38], "cach": [2, 3, 7], "calcul": [2, 5, 17, 30], "call": [0, 1, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 23, 25, 30, 34, 35, 36, 38], "callabl": [2, 3, 7, 17], "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 20, 22, 23, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "can_retir": 25, "cannot": 5, "canon": 19, "canonical_nam": [4, 7], "capabl": 33, "capit": [4, 5, 7, 29], "capsul": 19, "cardin": [4, 5, 7, 25], "carefulli": 19, "cargo": 20, "carlo": 25, "cascad": [0, 7], "case": [2, 4, 5, 7, 17, 19, 23, 26, 29, 30, 32, 33, 34], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 27], "castabl": [4, 7], "catalog": [1, 7, 16, 18], "catalog_nam": 1, "catalogprovid": [0, 1, 34], "catalogproviderexport": 1, "categori": [2, 26], "caterpi": [21, 32, 34, 37], "caus": [1, 7, 20, 32, 38], "cbrt": [4, 5, 7], "cdatainterfac": 1, "ceil": [4, 5, 7], "cell": [3, 36], "cellformatt": 3, "certain": 17, "certainli": 20, "chain": 2, "challeng": 19, "chang": [3, 17, 20, 25, 36], "chansei": 23, "char": 26, "char_length": [4, 5, 7, 26], "charact": [3, 4, 5, 7, 36], "character_length": [4, 5, 7], "characterist": 33, "charizard": [21, 26, 32, 34, 37], "charizardmega": [21, 26, 32, 34, 37], "charli": 28, "charmand": [21, 26, 32, 34, 37], "charmeleon": [21, 26, 32, 34, 37], "check": [5, 25, 26], "checksum": [4, 5, 7], "child": 36, "children": [7, 13], "chr": [4, 5, 7], "chrono": 5, "chunk": [2, 7], "ci": [19, 20], "citycab": 28, "class": [30, 34, 36], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [17, 32], "clean": 20, "clefabl": 32, "clefairi": [23, 32], "click": 3, "clone": [20, 30, 44], "close": 32, "cloud": 33, "co": [4, 5, 7], "coalesc": [5, 26], "code": [3, 4, 5, 7, 19, 26, 34], "codebas": 20, "codec": [2, 7], "coeffici": 5, "coerc": 5, "col": [2, 3, 4, 5, 7, 17, 22, 23, 25, 26, 29, 30, 31, 32, 33, 38, 45], "col1": [17, 35], "col2": 35, "col_attack": 23, "col_diff": 30, "col_idx": 3, "col_spe": 23, "col_type_1": 23, "col_type_2": 23, "collaps": [3, 36], "collect": [2, 21, 22, 24, 31, 33, 35, 38, 45], "collect_partit": 2, "color": [25, 36], "column": [1, 2, 3, 4, 5, 7, 11, 17, 22, 23, 24, 26, 27, 28, 30, 32, 33, 35, 45], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [4, 7], "column_specific_opt": [2, 7], "com": [4, 5, 7, 20], "combin": [2, 5, 25, 28, 29, 30, 33], "come": [34, 42], "command": [1, 7, 20, 34], "common": [4, 5, 7, 8, 9, 10, 23, 26, 28, 32, 34, 38], "commun": [19, 20], "compar": [5, 32], "comparison": [4, 7, 23], "compat": [19, 25], "compet": 33, "compil": [19, 25], "complet": [4, 5, 7, 8, 19, 20, 30, 34, 35, 36, 44], "complex": [2, 21, 26, 33], "complic": 2, "compon": 5, "compos": 5, "composit": 3, "comprehens": 36, "compress": [1, 2, 7, 11], "compression_level": [2, 7], "comput": [2, 4, 5, 7, 17, 19, 25, 30, 35], "concat": 5, "concat_w": 5, "concaten": [5, 25], "concatenated_arrai": 25, "concept": [1, 2, 4, 7, 25, 33], "concis": 20, "concurr": [1, 7, 33], "condit": 27, "config": [1, 7, 20, 33], "config_intern": [1, 7], "config_opt": [1, 7], "configur": [1, 3, 7, 20], "configure_formatt": [3, 7, 36], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 22], "consecut": 5, "consid": 5, "consider": 36, "consist": [5, 36], "consol": [2, 35], "construct": [4, 7, 17, 30], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 38], "contain": [2, 3, 5, 7, 13, 17, 18, 19, 20, 23, 25, 28, 30, 36], "content": [20, 27, 36], "context": [3, 5, 7, 11, 13, 15, 18, 30, 31, 33, 36, 38, 45], "continu": [5, 19], "contribut": 20, "control": [1, 2, 7, 23, 32, 33], "conveni": [7, 17, 34], "convent": 19, "convers": [19, 20, 22], "convert": [1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 24, 25, 26, 30, 31, 35, 45], "copi": [19, 20, 21, 30, 38], "copyto": 4, "core": [2, 4, 7, 19, 33], "corr": [5, 23], "correctli": [2, 17], "correl": 5, "correspond": [5, 28], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": 21, "costli": 17, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [2, 4, 7, 19, 34], "count": [2, 5, 7, 23, 24, 33, 35], "count_star": 5, "counterpart": [5, 19], "coupl": [19, 32], "covar": 5, "covar_pop": [5, 23], "covar_samp": [5, 23], "covari": 5, "cover": [22, 26, 33], "cpython": 20, "cr": 30, "crate": 19, "creat": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 25, 31, 33, 38, 45], "create_datafram": [1, 30, 34], "create_dataframe_from_logical_plan": 1, "createcatalog": 4, "createcatalogschema": 4, "created_bi": [2, 7], "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "creation": 35, "credenti": 34, "criteria": [5, 32], "css": [3, 36], "cstream": 19, "cstring": [19, 44], "csv": [1, 2, 7, 11, 19, 21, 23, 26, 32, 33, 34, 35, 36, 37, 41, 45], "ctx": [1, 5, 7, 13, 15, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43, 44, 45], "cube": [4, 5, 7], "cubon": 23, "cume_dist": [5, 17, 32], "cumul": 5, "curr_valu": 30, "current": [2, 3, 4, 5, 7, 13, 17, 19, 26, 30, 32, 36], "current_d": 5, "current_tim": 5, "custom": [1, 3, 7, 8, 13, 19, 28, 30, 33, 35, 41], "custom_css": [3, 36], "custom_formatt": 3, "custom_html": 36, "customer_id": 28, "d": [2, 17, 38], "dai": [5, 26], "dant": 25, "dark": [23, 36], "data": [0, 1, 2, 3, 4, 5, 7, 11, 13, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 42, 44], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": 5, "databas": [0, 7, 25, 33], "dataflow": [7, 13], "datafram": [1, 3, 4, 5, 6, 7, 11, 13, 14, 17, 18, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 45], "dataframe_formatt": [7, 18], "dataframehtmlformatt": 3, "datafus": [18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "datafusion_df": 34, "datafusion_sql": 16, "datafusion_table_funct": 30, "datafusion_table_provid": [19, 44], "dataset": [0, 1, 7, 26, 32, 33, 34, 36, 37], "datasourc": 8, "datastructur": [4, 7], "datatyp": [1, 2, 4, 7, 11, 17], "datatypemap": [4, 7], "date": [5, 26, 35], "date32": 5, "date_bin": 5, "date_part": [5, 26], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "ddd": 36, "ddl": [1, 7], "dealloc": 4, "decid": [17, 19], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 17], "def": [2, 7, 17, 21, 30, 34, 36, 37], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 16, 17, 19, 20, 30, 32, 33, 34, 36], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [21, 26, 34, 37, 45], "defin": [0, 1, 4, 7, 17, 19, 20, 26, 27, 32], "definit": [1, 4, 7, 17, 19, 22, 30], "degre": [4, 5, 7], "delet": [1, 7], "delimit": [1, 5, 7, 11], "delta": 19, "delta_binary_pack": [2, 7], "delta_byte_arrai": [2, 7], "delta_length_byte_arrai": [2, 7], "delta_t": 34, "deltalak": 34, "deltat": 34, "demonstr": [1, 30, 32, 33, 37, 38], "dens": 5, "dense_rank": [5, 17, 32], "depend": [5, 19, 23, 30, 32], "deprec": [2, 5, 6, 32], "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "descend": 5, "describ": [2, 5, 19, 23, 24, 30, 34], "describet": 4, "descript": [5, 7, 17], "deseri": 15, "deserialize_byt": 15, "design": [19, 27], "desir": 5, "detafram": 1, "detail": [2, 4, 5, 7, 17, 20, 22, 24, 35], "determin": [2, 4, 5, 7, 17, 30], "dev": 20, "develop": [19, 34], "deviat": 5, "df": [1, 2, 4, 5, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 45], "df1": 35, "df2": 35, "df_filter": 31, "df_view": 31, "dfschema": 7, "dialect": 16, "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 25, 31, 34, 35], "dictionary_en": [2, 7], "dictionary_page_size_limit": [2, 7], "differ": [2, 4, 5, 7, 13, 17, 19, 26, 30, 33, 34, 35, 36], "difficult": 19, "digest": 5, "dimens": [4, 5, 7], "dimension": 2, "directli": [3, 4, 5, 7, 15, 17, 34, 38], "directori": [1, 7, 20], "disabl": [1, 7, 36], "discard": 2, "discuss": [19, 34], "disk": [1, 7, 9, 10], "displai": [3, 7, 13, 22, 24, 31, 35, 37], "display_graphviz": [7, 13], "display_ind": [7, 13], "display_indent_schema": [7, 13], "display_nam": [4, 7], "distanc": 5, "distinct": [2, 4, 5, 7, 34], "distinctli": 19, "distinguish": 19, "distribut": [5, 33], "div": 36, "divid": [5, 33], "divis": [4, 5, 7], "divisor": 5, "dml": [1, 7], "dmlstatement": 4, "do": [0, 1, 7, 17, 19, 20, 22, 23, 30, 32, 34, 44], "doc": [1, 5, 16], "docstr": 20, "document": [1, 2, 4, 5, 7, 17, 18, 19, 20, 22, 33, 35, 37], "doe": [2, 3, 5, 17, 19, 20, 32, 34], "doesn": 17, "dominant_typ": 26, "done": [2, 23, 30, 34], "dot": [7, 13], "doubl": [29, 38], "double_func": [7, 17], "double_it": [7, 17], "double_udf": [7, 17], "down": [19, 32, 34], "downcast": 19, "download": [22, 29, 37], "dragon": [21, 23, 26, 32, 34, 37], "dragonair": 32, "dratini": 32, "drop": [1, 2, 7, 35], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [2, 36], "duckdb": 16, "due": [1, 7, 11, 20], "duplic": [2, 4, 5, 7, 28, 36], "dure": [7, 17, 20], "dynamic_lookup": 20, "e": [4, 5, 7, 17, 30, 44], "each": [2, 4, 5, 7, 17, 19, 20, 23, 26, 32, 36], "earli": 19, "easi": [19, 42], "easier": [19, 26, 37], "easili": [4, 7, 19], "east": 34, "effect": [29, 37], "effici": 33, "effort": [2, 7, 19], "either": [1, 2, 4, 7, 17, 19, 23, 34], "electr": [23, 32], "element": [2, 3, 4, 5, 7, 25], "ellipsi": [2, 7, 17], "els": 30, "else_expr": 4, "embed": [2, 7], "employe": 25, "empti": [1, 4, 5, 7, 13, 23, 25, 35], "empty_t": 1, "emptyrel": 4, "enabl": [1, 2, 7, 19, 33, 36], "enable_cell_expans": [3, 7, 36], "enable_url_t": 1, "encod": [2, 5, 7, 15], "encourag": 20, "end": [0, 2, 4, 5, 7, 13, 14, 16, 17, 32, 33], "end_bound": [4, 7], "ends_with": 5, "engin": [1, 7, 21, 22], "enough": 17, "ensur": [3, 8, 33], "entir": [2, 7, 17, 23, 30, 32], "entri": [2, 5, 23, 32, 35], "enum": [2, 4, 7, 17], "enumer": 17, "environ": [20, 21, 33, 35, 36], "equal": [2, 4, 5, 7], "equival": [5, 17, 19, 23, 32], "error": [1, 3, 4, 7, 20], "especi": 20, "essenti": [7, 14, 24], "etc": [1, 3, 4, 7, 9, 10, 17], "eval_rang": 17, "evalu": [2, 4, 5, 7, 17, 22, 23, 25, 30, 32, 33, 35], "evaluate_al": [7, 17, 30], "evaluate_all_with_rank": [17, 30], "even": [1, 7, 19, 28, 36], "evenli": 33, "everi": [5, 7, 17], "everyth": [9, 10], "ex": [4, 7, 29], "exact": 19, "exactli": [2, 32], "examin": [4, 7], "exampl": [1, 2, 3, 4, 5, 7, 13, 17, 19, 22, 23, 25, 26, 28, 30, 31, 32, 34, 37, 44], "excel": 19, "except": [2, 4, 5, 7, 25], "except_al": 2, "exclud": [2, 28], "execut": [1, 2, 4, 7, 17, 20, 21, 22, 33, 35, 38], "execute_stream": [2, 7, 14], "execute_stream_partit": 2, "execution_plan": 2, "executionplan": [1, 2, 7, 13], "exeggcut": 23, "exist": [0, 1, 2, 3, 4, 5, 7, 19], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 22], "explicit": [33, 36], "explicitli": [7, 17], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 30, "export": [1, 2, 7, 17, 19, 20, 34, 41], "expos": [1, 19, 30, 34, 44], "expr": [1, 2, 5, 7, 11, 17, 18, 30, 32, 35], "expr1": 5, "expr2": 5, "express": [2, 4, 5, 7, 17, 23, 26, 27, 30, 32], "exprfuncbuild": [4, 7], "extend": [5, 8, 19], "extens": [1, 3, 4, 7, 11, 36], "extract": [3, 4, 5, 7, 26], "extraenv": 20, "f": [4, 22, 23, 25, 26, 32, 34, 35], "f2f2f2": 36, "face": 19, "fact": [19, 30], "factor": 33, "factori": [4, 5, 7, 17], "fail": [2, 20, 26], "fair": [1, 7], "fairi": [23, 32], "fals": [2, 3, 4, 5, 7, 17, 19, 20, 21, 25, 26, 29, 30, 33, 34, 35, 36, 37, 44], "familiar": 20, "far": 2, "faster": [2, 5, 7, 17, 33], "featur": [5, 19, 20, 34, 38], "fetch": 20, "few": [19, 20, 22], "ffi": [7, 17, 34], "ffi_": 19, "ffi_provid": 19, "ffi_tablefunct": 30, "ffi_tableprovid": [1, 19, 44], "field": [2, 3, 5, 7, 26], "fight": [23, 32], "file": [1, 2, 7, 9, 10, 11, 15, 19, 20, 21, 22, 29, 33, 35, 36, 37, 39, 40, 42, 43], "file_compression_typ": [1, 7, 11], "file_extens": [1, 7, 11], "file_partition_col": [1, 7, 11], "file_sort_ord": [1, 7, 11], "filenam": 20, "filetyp": 4, "fill": [2, 4, 5, 7, 26, 32], "fill_nan": [4, 7], "fill_nul": [2, 4, 7, 27], "filter": [2, 4, 5, 7, 13, 22, 25, 31, 32, 34, 35], "final": [22, 30], "find": [5, 19, 20, 22, 23, 32], "find_in_set": 5, "finish": [4, 23], "fire": [21, 23, 26, 34, 37], "first": [1, 2, 4, 5, 7, 19, 20, 22, 23, 25, 32, 34, 37], "first_1": 23, "first_2": 23, "first_arrai": 5, "first_nam": 35, "first_valu": [5, 17, 23], "fix": [0, 17], "flag": [5, 16, 17, 20], "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 4, 5, 7, 17, 30, 36], "float64": [7, 17, 26, 30], "floor": [4, 5, 7], "flow": [7, 13], "flower": 26, "fly": [21, 23, 32, 34, 37], "fn": [30, 44], "focus": 19, "folder": [19, 30, 34, 44], "follow": [1, 2, 4, 5, 7, 17, 19, 20, 22, 23, 25, 26, 28, 30, 32, 34, 37], "foo": 33, "footer": 3, "fora": [4, 7], "foreign": 19, "foreign_provid": 19, "foreigntableprovid": 19, "form": [2, 5, 7, 13, 23, 34], "format": [1, 2, 3, 4, 5, 6, 7, 13, 22, 33, 34, 35, 39, 42], "format_argu": 5, "format_html": [3, 36], "format_str": 3, "formatt": [2, 3, 5, 7], "formatted_valu": 3, "formatter_class": 36, "formattermanag": 3, "formatting_context": 36, "forth": 38, "found": [5, 20, 32, 44], "four": 30, "frame": [2, 4, 5, 7, 17, 24, 30], "frame_bound": 4, "framework": 20, "free": [1, 7], "frequent": [19, 20], "fresh": 36, "from": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "from_arrai": [30, 34, 35], "from_arrow": [1, 34, 35, 38], "from_arrow_t": 1, "from_dataset": [0, 7], "from_panda": [1, 35], "from_polar": [1, 34], "from_proto": [7, 13], "from_pycapsul": [7, 17], "from_pydict": [1, 24, 25, 28, 30, 31, 34, 38], "from_pylist": [1, 28, 34], "from_str": 2, "from_substrait_plan": 15, "from_unixtim": [4, 5, 7], "from_val": 5, "full": [2, 5, 27, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 4, 12, 14, 17, 18, 19, 22, 24, 27, 33, 34, 36, 43], "function_to_impl": [17, 30], "further": [5, 19], "futur": [17, 32], "g": [5, 17], "gamma": 34, "gcd": 5, "gener": [4, 7, 13, 14, 15, 17, 18, 19, 20, 21, 34, 37], "geodud": 32, "get": [2, 3, 7, 13, 17, 20, 25, 34, 36], "get_cell_styl": 3, "get_default_level": 2, "get_formatt": [3, 36], "get_frame_unit": [4, 7], "get_header_styl": 3, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 17, "get_table_styl": 36, "get_upper_bound": [4, 7], "get_value_styl": 36, "getenv": 34, "ghost": 23, "gil": 21, "git": 20, "github": [4, 5, 7, 20], "give": [5, 23, 29, 37], "given": [0, 1, 3, 4, 5, 7, 17, 30], "glanc": 19, "global": [1, 2, 3, 7, 11, 35, 36], "global_ctx": 1, "go": [19, 24, 26], "goe": 19, "gold": 5, "good": [19, 20], "googlecloud": [12, 34], "graph": [7, 13], "graphic": [7, 13], "graphviz": [7, 13], "grass": [21, 23, 26, 32, 34, 37], "great": 20, "greater": [4, 5, 7], "greatest": 5, "greatli": [30, 33], "greedi": [1, 7], "green": 25, "grimer": 32, "ground": 23, "group": [1, 2, 4, 5, 7, 11, 17, 22, 23, 24, 32, 35], "group_bi": [2, 23], "groupingset": 4, "guarante": 19, "guid": [1, 27, 33, 35, 36, 37], "gzip": [2, 7], "ha": [1, 2, 3, 5, 7, 17, 19, 25, 29, 34], "handl": [3, 14, 23, 27, 32, 33], "happen": [20, 38], "hardwar": 33, "has_head": [1, 7, 11], "has_mor": [2, 3, 36], "hash": [2, 4, 5, 7, 33], "haskel": 24, "have": [1, 2, 5, 7, 11, 15, 17, 19, 20, 21, 23, 28, 30, 32, 33, 34, 44], "head": 2, "header": [1, 2, 3, 7, 11], "healthi": 20, "heavy_red_unit": 25, "height": [3, 36], "help": [1, 3, 7, 11, 20, 25, 26, 33, 36], "helper": [7, 17], "henc": 17, "here": [2, 5, 7, 19, 26, 29, 30, 32, 33, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 34, "high": [4, 7], "higher": [2, 4, 7, 33], "highli": 30, "highlight": 37, "hint": [1, 17, 20], "homebrew": 20, "host": 1, "how": [1, 2, 4, 5, 7, 17, 19, 23, 24, 27, 28, 30, 32, 33, 34, 35, 36, 37], "howev": [17, 30], "hp": [21, 34, 37], "html": [1, 3, 5, 7, 16], "html_formatt": [3, 7, 18, 36], "http": [1, 4, 5, 7, 12, 13, 15, 16, 34], "hyperbol": [4, 5, 7], "i": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43], "ic": 23, "id": [1, 3, 20, 28], "ideal": 19, "ident": 34, "identifi": [1, 4, 7, 19, 29, 33, 34], "idl": [2, 7], "idx": [17, 30], "ignor": [5, 7, 17, 20, 23, 32], "ignore_nul": [23, 32], "ilik": 4, "immut": [7, 17, 30], "impact": 33, "impl": [30, 44], "implement": [0, 1, 2, 3, 17, 20, 30, 34, 36, 38, 44], "import": [1, 3, 4, 7, 17, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [1, 7, 17, 30, 33, 34, 36], "in_list": [5, 26], "includ": [1, 2, 3, 4, 7, 19, 22, 23, 26, 28, 33, 36], "include_rank": [17, 30], "inclus": [1, 4, 5, 7], "incorpor": 30, "increas": [1, 2, 3, 7, 23, 33], "increment": [17, 19, 30], "indent": [7, 13], "independ": [5, 32], "index": [2, 3, 4, 5, 7, 16, 17, 25], "indic": [3, 4, 5, 7, 25], "individu": [2, 7, 25, 32], "infer": [1, 7, 11], "inform": [1, 2, 4, 7, 8, 15, 16, 17, 19, 30, 33, 35], "information_schema": [1, 7], "infrastructur": 33, "inherit": 34, "init": 20, "initcap": [4, 5, 7], "initi": [2, 3, 4, 5, 7], "inlin": 17, "inlist": 4, "inner": [2, 27, 35], "input": [1, 2, 4, 5, 7, 11, 13, 17, 18, 25, 30], "input_item": [8, 9, 10], "input_typ": [7, 17], "inputsourc": 8, "insert": [1, 7], "insight": 33, "instanc": [1, 3, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19, 33], "insubqueri": 4, "insuffici": 34, "int": [1, 2, 3, 4, 5, 7, 11, 13, 17, 30], "int32": [7, 17, 26], "int64": [7, 17, 24, 26, 30], "integ": [3, 4, 5, 7, 25], "integr": [19, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25], "intercept": 5, "interchang": 42, "interest": 25, "interfac": [1, 5, 19, 21, 22, 30, 32, 34, 38, 44], "intermedi": [7, 17], "intern": 30, "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 20, "introduc": [20, 22, 33], "intuit": 19, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 17, "io": [1, 7, 15, 18, 36], "io_avro": 35, "io_csv": 35, "io_json": 35, "io_parquet": 35, "is_caus": 17, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 25, "is_follow": 4, "is_not_nul": [4, 7, 23], "is_nul": [4, 7, 30], "is_null_arr": 30, "is_preced": 4, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [5, 20, 32, 36], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "iter": [2, 7, 14], "iterat": 2, "its": [2, 5, 7, 13, 17, 19, 21, 32, 36], "itself": 25, "ivi": 26, "ivyfleur": 26, "ivysaur": [21, 26, 32, 34, 37], "java": 24, "javascript": [3, 36, 42], "jigglypuff": 32, "join": [1, 2, 4, 7, 13, 27, 33, 35], "join_kei": [2, 28], "join_on": 2, "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 34, 35, 36, 41], "jupyt": [3, 35, 37], "jupyterlab": 37, "just": 36, "jynx": 23, "kakuna": [21, 32, 34, 37], "keep": [20, 31, 34, 36], "kei": [1, 2, 3, 4, 7, 19, 22, 25, 28, 33, 35], "kept": 2, "kind": [0, 7, 19, 20], "know": [1, 7], "known": 25, "kv_meta": [2, 7], "kwarg": [3, 7, 8, 9, 10], "kwd": [2, 17], "l179": [4, 7], "lab": 37, "label": 2, "lack": 21, "lag": [5, 17, 32], "lambda": [7, 17], "languag": [1, 7, 13, 19], "larg": [2, 7, 26, 33, 36], "large_trip_dist": 29, "larger": [2, 7], "last": [4, 5, 7, 32], "last_nam": 35, "last_valu": [5, 23, 32], "last_with_nul": 32, "last_wo_nul": 32, "latenc": 33, "later": [34, 37, 44], "latest": [1, 5, 16, 19], "latter": 1, "lazi": 22, "lazili": 35, "lcm": 5, "lead": [5, 17, 19, 30, 32, 34], "leaf": [7, 13], "leak": 21, "learn": [19, 24, 32], "least": [5, 17, 23, 28, 30, 36], "leav": [7, 13], "left": [2, 5, 26, 27, 36], "left_on": [2, 28], "leftmost": 5, "legendari": [21, 34, 37], "len": [17, 26], "length": [2, 3, 4, 5, 7, 17], "less": [4, 5, 7], "lesson": 19, "let": [19, 30, 33, 44], "letter": [4, 5, 7, 29], "level": [2, 5, 7, 19, 34], "levenshtein": 5, "leverag": [2, 7, 19], "lib": 20, "lib_dir": 20, "lib_nam": 20, "librari": [7, 8, 19, 21, 37, 38, 44], "lightweight": 42, "like": [1, 2, 3, 4, 5, 7, 8, 19, 20, 21, 26, 34, 35], "limit": [2, 4, 5, 20, 22, 24, 26, 33, 35, 36], "line": [1, 2, 7, 11, 13, 19], "linear": [5, 23], "link": [20, 32], "lint": 20, "linter": 20, "list": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17, 23, 30, 31, 32, 34, 35], "list_append": [5, 20], "list_cat": 5, "list_concat": 5, "list_dim": [4, 5, 7], "list_distinct": [4, 5, 7], "list_el": 5, "list_except": 5, "list_extract": 5, "list_indexof": 5, "list_intersect": 5, "list_join": 5, "list_length": [4, 5, 7], "list_ndim": [4, 5, 7], "list_posit": 5, "list_prepend": 5, "list_push_back": 5, "list_push_front": 5, "list_remov": 5, "list_remove_al": 5, "list_remove_n": 5, "list_repeat": 5, "list_replac": 5, "list_replace_al": 5, "list_replace_n": 5, "list_res": 5, "list_slic": 5, "list_sort": 5, "list_to_str": 5, "list_union": 5, "listingt": 1, "lit": [2, 4, 5, 7, 20, 22, 23, 25, 29, 32, 38], "liter": [2, 4, 7, 26, 27, 29, 30, 31, 35], "literal_with_metadata": [4, 7], "ll": [26, 28, 32], "ln": [4, 5, 7], "load": [3, 33], "local": [1, 19, 20, 33], "localfilesystem": [12, 34], "locat": [1, 9, 18], "locationinputplugin": [9, 10], "lock": 21, "log": [5, 26], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [1, 2, 4, 7, 13, 15, 16, 22, 23, 29, 35, 36], "logical_plan": [2, 15], "logicalplan": [1, 2, 4, 7, 13, 15, 16], "lonely_trip": 29, "long": [3, 19], "long_tim": 25, "longer": [5, 36], "look": [20, 33], "low": [4, 7, 23], "low_passenger_count": 29, "lower": [4, 5, 7, 17, 26, 29], "lowercas": [2, 4, 5, 7], "lowest": [19, 23], "lpad": 5, "ltrim": [4, 5, 7], "lz4": [2, 7], "lz4_raw": [2, 7], "lzo": [2, 7], "m": 20, "mac": 20, "machin": 20, "machop": 32, "made": 29, "magikarp": 23, "magnemit": 32, "mai": [1, 2, 5, 7, 11, 17, 19, 30, 33, 34, 36, 37, 38], "main": [1, 22, 35], "maintain": [1, 2, 19, 22], "major": [20, 21], "make": [5, 19, 20, 21, 26], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [1, 3, 7, 20, 33], "mani": [19, 23, 30, 33, 35, 36], "manipul": [1, 7, 26, 35], "mankei": 32, "manner": 19, "manual": [20, 33], "map": 2, "map_err": 44, "match": [2, 4, 5, 26, 28, 33], "materi": 35, "math": 23, "mathemat": [27, 29, 35], "maturin": 20, "max": [5, 23, 24], "max_cell_length": [3, 7, 36], "max_cpu_usag": 33, "max_height": [3, 7, 36], "max_memory_byt": [3, 36], "max_row": 36, "max_row_group_s": [2, 7], "max_width": [3, 7, 36], "maximum": [1, 2, 3, 5, 7, 11, 36], "maximum_buffered_record_batches_per_stream": [2, 7], "maximum_parallel_row_group_writ": [2, 7], "md5": [4, 5, 7], "mean": [5, 19, 20, 24], "meaning": [5, 29], "meant": [7, 13], "measur": 33, "medal": 5, "median": [5, 23, 24], "member": 20, "memoiz": 17, "memori": [0, 1, 2, 3, 7, 13, 17, 21, 33], "memory_catalog": [0, 7, 34], "memory_schema": [0, 34], "mention": 25, "merg": [7, 17, 28, 30], "messag": [3, 36], "metadata": [1, 2, 4, 5, 7, 11], "metapod": [21, 23, 32, 34, 37], "method": [0, 1, 2, 3, 5, 7, 17, 22, 24, 26, 28, 30, 31, 35, 36], "metric": 2, "metrorid": 28, "microsecond": 5, "microsoftazur": [12, 34], "might": [3, 17, 23, 36], "millisecond": 5, "min": [5, 23, 24], "min_rows_displai": [3, 36], "minimum": [1, 2, 3, 5, 7, 36], "miss": [2, 27], "model": 2, "modifi": [2, 22], "modify_df": 2, "modul": [6, 32, 35, 36], "modulo": [4, 7], "moment": [2, 19], "monitor": 33, "month": [5, 26], "more": [1, 2, 3, 4, 7, 15, 17, 19, 20, 22, 23, 26, 30, 33, 35], "most": [17, 19, 25, 32, 37], "mostli": 20, "much": [17, 20, 36], "multi": 21, "multipl": [1, 2, 3, 4, 5, 7, 17, 23, 26, 28, 30, 32, 33, 34, 35, 36], "must": [1, 2, 4, 5, 7, 17, 23, 25, 29, 30, 32, 38, 44], "my": 36, "my_capsul": 19, "my_catalog": 34, "my_catalog_nam": 34, "my_delta_t": 34, "my_provid": 19, "my_schema": 34, "my_schema_nam": 34, "my_tabl": [31, 34, 44], "my_udaf": 30, "myaccumul": 30, "myformatt": 36, "mysql": 16, "mystyleprovid": 36, "mytablefunct": 30, "mytableprovid": [19, 44], "myusernam": 20, "n": [2, 5, 7], "n_column": [2, 7], "n_file": [2, 7], "n_row_group": [2, 7], "name": [0, 1, 2, 3, 4, 5, 7, 11, 17, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 34, 35, 37, 44], "name_pair": 5, "named_expr": 2, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": 19, "natur": [4, 5, 7], "nearest": [4, 5, 7], "nearli": [33, 34], "necessari": [19, 34], "need": [0, 1, 2, 3, 4, 7, 11, 17, 19, 20, 30, 32, 33, 34, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": 33, "network": 33, "new": [1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 25, 27, 30, 44, 45], "new_bound": [19, 44], "new_err": 44, "new_nam": 2, "next": [5, 7, 14], "nice": 36, "node": [7, 13], "non": [2, 4, 5, 23, 32], "none": [0, 1, 2, 3, 4, 5, 7, 11, 15, 17, 19, 30, 32, 34, 36], "normal": 23, "not_red_unit": 25, "notat": [25, 42], "note": [1, 2, 4, 7, 22, 25, 34, 38], "notebook": [3, 35, 36, 37], "now": [5, 17, 26, 31], "nr": 24, "nth": 36, "nth_valu": [5, 17, 23], "ntile": [5, 32], "null": [2, 4, 5, 7, 24, 26, 28, 30, 38], "null_count": 24, "null_first": 5, "null_treat": [4, 5, 7, 23, 32], "nullabl": 2, "nullif": [5, 26], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 23, 32], "num": [2, 5, 33], "num_centroid": 5, "num_el": 25, "num_row": [7, 17, 30], "number": [1, 2, 3, 4, 5, 7, 11, 13, 17, 20, 25, 26, 30, 32, 33, 36], "numer": [2, 4, 5, 7, 33], "nvl": 5, "o": [33, 34, 35, 36], "object": [1, 2, 3, 4, 7, 12, 17, 19, 25, 30, 33, 36, 38, 42], "object_stor": [7, 18, 34], "objectstor": 1, "obtain": [8, 21], "obviou": 19, "occur": [7, 17, 35, 38], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 32, "offend": 20, "offer": [26, 35, 45], "offici": 19, "offset": [2, 4], "often": [32, 33], "old": 2, "old_nam": 2, "older": 34, "olymp": 5, "omit": 28, "on_expr": 2, "onc": [3, 5, 8, 17, 30, 36, 44], "one": [2, 4, 5, 7, 17, 19, 23, 28, 30, 32, 34], "onli": [1, 2, 3, 4, 5, 7, 11, 17, 19, 23, 26, 28, 30, 32, 35, 36], "onlin": [1, 2, 4, 5, 7, 17, 19, 33], "op": [2, 4, 7], "open": 3, "oper": [1, 2, 4, 5, 7, 13, 14, 17, 19, 21, 23, 25, 29, 30, 32, 33, 34, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 20, "optim": [2, 17, 19, 33], "optimized_logical_plan": 2, "option": [0, 1, 2, 3, 4, 5, 7, 11, 17, 20, 22, 23, 26, 33, 34, 35, 36, 37], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 17, 19, 25], "order_bi": [4, 5, 7, 23, 32], "org": [1, 5, 7, 13], "organ": 34, "origin": [2, 5, 30, 34], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "otherwis": [4, 5, 7], "our": [19, 20, 23, 34, 37], "out": [2, 5, 7, 19, 23, 24, 25, 26, 28, 29, 32, 37, 38, 45], "output": [2, 3, 4, 7, 13, 17, 20, 23, 25, 30, 31, 36], "over": [2, 4, 7, 17, 19, 21, 23, 32, 34, 36], "overhead": 17, "overlai": 5, "overlap": 5, "overrid": [2, 7, 30], "overridden": 23, "own": [8, 30, 36], "owner": 0, "owner_nam": 0, "pa": [1, 4, 7, 14, 17, 30, 34, 35, 38], "packag": [5, 19, 20], "pad": [5, 36], "page": [2, 7, 18, 19, 30], "pair": 5, "panda": [1, 2, 22, 24, 34, 35, 45], "pandas_df": [34, 35], "para": 32, "parallel": [1, 2, 7, 33], "param_nam": 3, "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 15, 17, 20, 25, 27, 28, 36], "parasect": 32, "parquet": [1, 2, 7, 11, 19, 21, 22, 29, 33, 34, 35, 36, 41], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "part": [2, 5, 7, 26], "particular": [5, 33], "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23, 33], "partition_bi": [4, 5, 7, 32], "partition_count": [7, 13], "pass": [2, 7, 17, 19, 20, 24, 25, 30, 33, 34], "passenger_count": 29, "path": [1, 2, 7, 11, 15, 20, 34, 35], "path_to_t": 34, "pathlib": [1, 2, 7, 11, 15], "pattern": [5, 19, 33], "pc": [7, 17], "pcre": 5, "pd": [34, 35], "peopl": 5, "per": [2, 3, 17, 32, 36], "percent": 5, "percent_rank": [5, 17, 32], "percentag": 5, "percentil": 5, "perform": [1, 2, 4, 5, 7, 17, 19, 20, 22, 23, 26, 30, 32, 33, 34], "period": 19, "person": 20, "physic": [2, 7, 13, 22], "pi": 5, "pick": 5, "pinsir": 32, "pip": [21, 37], "pixel": [3, 36], "pl": 34, "place": [5, 20, 37], "placehold": 4, "plain": [2, 7, 36], "plain_dictionari": [2, 7], "plan": [1, 2, 4, 7, 15, 16, 17, 18, 21, 22, 35], "plan_intern": 15, "plan_to_sql": 16, "planner": [7, 13], "pleas": 29, "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 20, 35], "pointer_width": 20, "poison": [21, 23, 32, 34, 37], "pokemon": [21, 23, 26, 32, 34, 37, 45], "polar": [1, 2, 34, 35], "polars_df": [34, 35], "pool": [1, 7], "popul": 5, "popular": [26, 34], "portion": 19, "posit": [2, 3, 5, 7, 23], "possibl": [2, 4, 7, 17, 19, 26, 30, 32], "post": 20, "postgr": 16, "postgresql": 16, "potenti": [2, 7, 13], "pow": [5, 26], "power": [5, 26, 30, 32], "pr": 20, "practic": [19, 33], "preced": [4, 5, 7, 17, 32], "precis": [5, 33], "predic": [1, 2, 7, 11], "prefer": 20, "prefix": [5, 19], "prepar": 4, "prepend": 5, "presenc": 26, "present": 28, "preserve_nul": 2, "pretti": 16, "prevent": [20, 36], "previou": [5, 30, 32], "previous": 1, "primari": [9, 25, 35], "principl": 33, "print": [0, 1, 2, 4, 7, 13, 17, 31, 33, 35, 36], "printabl": [7, 13, 17], "prior": [2, 34], "probabl": [2, 7, 23], "process": [17, 23, 32, 33], "processor": 33, "produc": [5, 7, 13, 15, 17, 19, 32], "product": [5, 33, 35], "program": 19, "programmat": [7, 13], "project": [2, 4, 7, 13, 19, 20, 35, 38], "proper": 33, "properti": [0, 2, 4, 7, 13], "proto_byt": 15, "protobuf": [7, 13], "protocol": [1, 3, 17], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 14, 15, 16, 17, 19, 22, 23, 26, 30, 32, 33, 35, 37, 41], "prune": [1, 7, 11], "psychic": 23, "public": [0, 7], "pull": 20, "pure": 20, "push": [20, 34], "pushdown_filt": 33, "put": 29, "py": [1, 2, 7, 15, 19, 30, 33, 44], "py_dict": 35, "py_list": 35, "pyarrow": [0, 1, 2, 4, 7, 11, 14, 17, 19, 24, 30, 34, 35, 38, 45], "pycapsul": [1, 2, 7, 17, 19, 30, 34, 38, 44], "pycapsuleinterfac": 1, "pymethod": [30, 44], "pyo3": [19, 20, 30, 34], "pyo3_build_config": 20, "pyo3_config_fil": 20, "pyo3_print_config": 20, "pyobject": [4, 7], "pypi": 37, "pyproject": 20, "pyresult": [30, 44], "pyruntimeerror": 44, "pyspark": 21, "pytabl": 19, "pytest": 20, "python": [0, 1, 2, 4, 7, 17, 24, 25, 30, 33, 34, 35, 37, 38, 44], "python3": 20, "python_valu": [4, 7], "pythontyp": [4, 7], "queri": [1, 7, 13, 15, 17, 19, 21, 22, 26, 31, 33, 35], "quick": 24, "quit": 43, "quot": 29, "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 5, 7], "ram": 33, "random": [5, 17, 24, 25], "rang": [1, 2, 4, 5, 7, 17, 24, 25, 26, 30, 32, 33, 35], "rank": [5, 17, 30, 32], "ranks_in_partit": 17, "rather": [5, 15], "ratio": 5, "raw": [3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawexpr": [4, 7], "rawschema": [0, 7], "rawtabl": [0, 7], "rb": [7, 14], "re": 19, "read": [1, 2, 7, 9, 10, 11, 15, 19, 34, 35, 36, 37, 39, 40, 42, 43, 45], "read_avro": [1, 7, 11, 35, 39], "read_csv": [1, 7, 11, 21, 22, 23, 32, 34, 35, 37, 40], "read_json": [1, 7, 11, 35, 42], "read_parquet": [1, 7, 11, 22, 29, 33, 35, 43], "read_tabl": 1, "reader": [1, 7, 11, 38], "realiti": 23, "reason": [2, 20], "rebuild": 20, "receiv": [5, 17, 19], "recent": [32, 34], "recommend": [2, 19, 20, 30, 33, 36], "record": [1, 2, 3, 7, 13, 14, 22, 29, 30, 34, 38, 39], "record_batch": [1, 2, 7, 18], "record_batch_stream": [7, 14], "recordbatch": [1, 2, 3, 7, 14, 30, 34, 35], "recordbatchstream": [1, 2, 7, 14], "recursivequeri": 4, "red": [25, 36], "red_or_green_unit": 25, "red_unit": 25, "reduc": [20, 30, 36], "ref": [5, 30, 35], "refer": [2, 3, 5, 19, 22, 26, 35, 36, 45], "referenc": [1, 22], "reflect": 3, "refresh": 3, "regardless": 17, "regener": 20, "regex": 5, "regexp_count": 5, "regexp_lik": 5, "regexp_match": [5, 26], "regexp_replac": [5, 26], "region": 34, "regist": [0, 1, 3, 7, 8, 11, 19, 22, 27, 30, 34, 35, 44, 45], "register_avro": 1, "register_catalog": 34, "register_catalog_provid": 1, "register_csv": [1, 26, 40, 45], "register_dataset": [1, 34], "register_formatt": 3, "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 34], "register_parquet": [1, 34, 43], "register_record_batch": 1, "register_schema": [0, 7, 34], "register_t": [0, 1, 2], "register_table_provid": [1, 34, 44], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 30], "register_udwf": 1, "register_view": [1, 31], "regr_avgi": [5, 23], "regr_avgx": [5, 23], "regr_count": [5, 23], "regr_intercept": [5, 23], "regr_r2": [5, 23], "regr_slop": [5, 23], "regr_sxi": 5, "regr_sxx": [5, 23], "regr_syi": [5, 23], "regress": [5, 23], "regular": [3, 5, 26], "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": 20, "remain": [4, 5, 7, 26], "remot": [9, 10, 33], "remov": [0, 1, 2, 4, 5, 7, 23], "renam": 2, "renamed_ag": 25, "render": 3, "repartit": [1, 2, 4, 7, 33], "repartition_by_hash": [2, 33], "repeat": [5, 25], "repeated_arrai": 25, "replac": [2, 5, 7, 26], "repo": 20, "report": [2, 20], "repositori": [19, 30, 33, 34], "repr": 3, "repr_row": [3, 36], "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 22, 25, 30, 33, 35], "represent": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17], "request": [2, 20], "requested_schema": [1, 2], "requir": [2, 4, 7, 17, 19, 26, 33, 34], "reserv": [1, 7], "reset": [3, 36], "reset_formatt": [3, 36], "resolv": [20, 32], "resourc": [19, 33], "respect": [2, 5, 23, 34], "respect_nul": [5, 23, 32], "rest": [7, 17], "result": [1, 2, 5, 7, 13, 14, 17, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "result_batch": 35, "result_dict": 31, "retriev": [0, 1, 4, 7, 28], "return": [0, 1, 2, 3, 8, 9, 10, 11, 13, 15, 17, 25, 28, 30, 34, 36, 38], "return_typ": [7, 17], "reus": 19, "reusabl": 4, "revers": [4, 5, 7], "review": [19, 20], "rex": [4, 7], "rex_call_oper": [4, 7], "rex_call_operand": [4, 7], "rex_typ": [4, 7], "rextyp": [4, 7], "rfc3339": [4, 5, 7], "rh": [4, 7], "rhyhorn": 32, "rich": [3, 36], "richer": 36, "right": [2, 5, 28], "right_on": [2, 28], "ritchi": 32, "rle": [2, 7], "rle_dictionari": [2, 7], "robin": 2, "rock": 23, "roll": 32, "root": [4, 5, 7, 13], "roption": 19, "round": [2, 5, 22], "rout": 19, "row": [1, 2, 3, 4, 5, 7, 11, 17, 22, 23, 24, 25, 28, 30, 31, 32, 33, 35, 36, 45], "row_count": 3, "row_idx": 3, "row_numb": [5, 17, 32], "rpad": 5, "rresult": 19, "rstring": 19, "rtrim": [4, 5, 7], "rubi": 24, "run": [1, 2, 7, 11, 21, 31, 33, 37], "runnabl": 20, "runtim": [1, 7, 17, 33], "runtimeconfig": 1, "runtimeenvbuild": [1, 7, 33], "rust": [2, 5, 7, 17, 19, 21, 30, 33, 34, 44], "rustc": 19, "rustflag": 20, "rustonomicon": 19, "rvec": 19, "s3": 34, "safe": 19, "safeti": 21, "same": [2, 5, 7, 17, 19, 22, 30], "sampl": [5, 24, 31], "saur": 26, "save": 17, "scalar": [4, 7, 17, 25, 27], "scalarsubqueri": 4, "scalarudf": [1, 7, 17], "scalarudfexport": [7, 17], "scalarvalu": 17, "scalarvari": 4, "scan": [1, 7, 13], "schema": [0, 1, 2, 3, 4, 7, 11, 13, 24, 36], "schema_infer_max_record": [1, 7, 11], "schema_nam": [0, 4, 7], "schemaprovid": 0, "schemaproviderexport": 0, "scheme": 2, "scienc": 26, "score": 5, "script": [3, 33], "search": 5, "second": [5, 22, 23, 25, 34], "second_arrai": 5, "secret_access_kei": 34, "section": [19, 22, 24, 27, 28, 32, 34], "see": [1, 2, 4, 5, 7, 14, 15, 16, 17, 19, 20, 22, 23, 25, 30, 32, 33, 35, 36], "seen": [17, 23], "select": [1, 2, 4, 5, 7, 11, 17, 22, 25, 26, 27, 30, 31, 32, 34, 35, 38, 45], "select_column": 2, "self": [7, 14, 17, 30, 36, 44], "semi": [2, 27], "sensit": [2, 7], "separ": 5, "sequenc": 2, "serd": 15, "seri": 25, "serial": [2, 7, 15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 19, "session": [1, 3, 7, 30, 33, 36, 37], "session_id": 1, "sessionconfig": [1, 7, 33], "sessioncontext": [1, 2, 5, 7, 8, 13, 15, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43, 44, 45], "sessioncontextintern": 1, "set": [0, 1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 22, 27, 30, 33, 36], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setvari": 4, "sever": [29, 33, 35], "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 19, "share": [3, 19, 20, 22, 25, 38], "shift_offet": 5, "shift_offset": 5, "shot": 17, "should": [1, 4, 5, 7, 8, 11, 13, 15, 20, 23, 28, 30, 32], "show": [2, 3, 19, 21, 22, 24, 25, 28, 30, 32, 33, 34, 35, 36, 37, 44], "show_truncation_messag": [3, 36], "showcas": 33, "shown": 3, "side": [4, 5, 7, 19], "sign": [4, 5, 7], "signific": 34, "significantli": [5, 33], "signum": [4, 5, 7], "silver": 5, "similar": [5, 19, 22, 25, 32], "similarto": 4, "simpl": [5, 20, 29, 33, 42, 43], "simplest": [17, 30], "simpli": [2, 7, 17, 19, 20, 34, 36], "simplifi": 32, "simultan": 33, "sin": [4, 5, 7], "sinc": [2, 23, 30, 34], "sine": [4, 5, 7], "singl": [1, 2, 4, 5, 7, 13, 17, 23, 25, 30, 32, 33, 34], "sinh": [4, 5, 7], "size": [1, 2, 5, 7, 25, 33, 36], "skew": 33, "skip": [1, 2, 7, 11, 17], "skip_arrow_metadata": [2, 7], "skip_metadata": [1, 7, 11], "slice": 5, "slightli": 30, "slope": 5, "slow": 2, "slower": [2, 33], "slowest": 30, "slowpok": 32, "small": [33, 34], "smallest": [17, 23], "smooth_a": 30, "snappi": [2, 7], "snorlax": 32, "so": [1, 2, 7, 19, 20, 29, 30, 32, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 37, 44], "sometim": [1, 7, 19, 34], "soon": [5, 34], "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sortexpr": [1, 2, 4, 5, 7], "sound": 19, "sourc": [1, 5, 7, 8, 9, 10, 11, 19, 20, 22, 33, 35, 36, 37, 38, 44], "sp": [21, 34, 37], "space": [4, 5, 7], "sparingli": 30, "special": [3, 17], "specif": [0, 2, 3, 4, 7, 13, 24, 25, 26, 32, 33, 35, 36], "specifi": [1, 2, 4, 5, 7, 25, 26, 28, 30, 32, 33], "speed": [2, 7, 21, 23, 32, 34, 37], "sphinx": 18, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 30], "split_part": 5, "sql": [1, 7, 13, 15, 16, 17, 21, 22, 25, 29, 31, 34, 35], "sql_with_opt": 1, "sqlite": 16, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 26, "squirtl": [21, 26, 32, 34, 37], "src": [4, 7, 20], "ssd": 33, "stabl": [17, 19, 30], "standard": [5, 19], "start": [4, 5, 7, 17, 25, 29, 32, 36, 37], "start_ag": 25, "start_bound": [4, 7], "started_young": 25, "starts_with": 5, "state": [1, 7, 17, 22, 30], "state_typ": [7, 17], "statement": [1, 4, 5, 7, 22, 45], "static": [0, 1, 2, 4, 7, 13, 15, 16, 17], "statist": [2, 7, 23, 24], "statistics_en": [2, 7], "statistics_truncate_length": [2, 7], "std": 24, "stddev": [5, 23], "stddev_pop": [5, 23], "stddev_samp": 5, "steel": 23, "step": [5, 19], "still": [30, 34], "stop": 5, "storag": [33, 34], "store": [1, 4, 7, 12], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17], "str_lit": 26, "straightforward": [39, 40], "strategi": 33, "stream": [1, 2, 7, 14, 19], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 16, 17, 19, 20, 23, 24, 25, 27, 35], "string1": 5, "string2": 5, "string_agg": [5, 23], "string_list": 5, "string_liter": [4, 7, 26], "string_view": [4, 7, 38], "strong": 21, "strongli": 33, "strpo": 5, "struct": [1, 4, 5, 7, 19, 27, 38], "structarrai": 38, "structur": [7, 13, 19], "style": [3, 19, 25, 35], "style_provid": [3, 36], "styleprovid": [3, 36], "sub": [4, 7], "subfield": [4, 5, 7], "submit": 20, "submodul": 20, "subqueri": 4, "subqueryalia": 4, "subset": [2, 26, 29], "substr": 5, "substr_index": 5, "substrait": [7, 18], "subtract": [4, 7], "suffici": [1, 7, 33], "suffix": 5, "suggest": 34, "sum": [5, 7, 17, 23, 30, 33, 35], "sum_bias_10": [7, 17], "summar": [2, 7, 17], "summari": [2, 23, 24], "support": [2, 3, 4, 5, 7, 13, 15, 16, 19, 28, 30, 34, 35, 36], "supports_bounded_execut": [17, 30], "suppos": [5, 19, 23], "suppress_build_script_link_lin": 20, "sure": 20, "symbol": 2, "sync": 20, "synchron": 19, "syntax": 5, "synthet": 33, "system": [1, 2, 7, 19, 20, 33], "t": [5, 17, 29], "t1": 17, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 17, 19, 22, 24, 26, 27, 28, 33, 35, 36, 37, 38, 40, 41, 43], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 8, 9, 10], "table_partition_col": [1, 7, 11], "table_provid": 1, "table_uuid": [2, 3, 36], "tablefunct": [1, 7, 17], "tableprovid": [19, 44], "tableproviderexport": 1, "tablescan": 4, "tabular": 35, "tag": 3, "tail": 2, "take": [2, 3, 17, 19, 20, 23, 25, 30, 32, 34], "taken": 33, "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7, 33], "target_partit": [1, 7], "task": [26, 38], "taxi": 22, "td": 36, "technic": 21, "techniqu": [33, 34], "tempor": 27, "temporari": [1, 7, 36], "temporarili": 36, "temporary_column": 35, "term": 32, "terminologi": 19, "test": [5, 20, 33, 34], "text": [1, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 33, 36], "thei": [7, 8, 17, 19, 25, 30], "them": [2, 5, 7, 19, 20, 22, 24, 34], "theme": 36, "then_expr": 4, "therefor": 2, "thi": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 44], "third": 22, "thoroughli": 19, "those": [2, 4, 7, 21, 23, 30, 34], "though": 30, "thread": 21, "three": [30, 32, 34], "through": [3, 19, 21, 27, 34, 35, 36, 37], "thu": 17, "thusli": 19, "ticket": 20, "tie": 5, "tight": 19, "tile": 5, "time": [5, 17, 19, 20, 23, 25, 26, 30, 33, 35, 38], "time64": 5, "timestamp": [4, 5, 7, 26], "tip_amount": [22, 29], "tip_perc": 22, "tips_plus_tol": 29, "tlc": [22, 29], "tmp": [1, 7], "to_arrow_t": [2, 35], "to_hex": [4, 5, 7], "to_panda": [2, 24, 26, 35, 45], "to_polar": [2, 35], "to_proto": [7, 13], "to_pyarrow": [7, 14], "to_pyarrow_dataset": 34, "to_pydict": [2, 31, 35], "to_pylist": [2, 35], "to_str": 44, "to_substrait_plan": 15, "to_timestamp": [5, 26], "to_timestamp_micro": 5, "to_timestamp_milli": 5, "to_timestamp_nano": 5, "to_timestamp_second": 5, "to_unixtim": 5, "to_val": 5, "to_vari": [4, 7, 13], "togeth": [2, 5, 23], "toler": [2, 7], "tolls_amount": 29, "toml": 20, "top": 24, "topic": 34, "total": [2, 4, 5, 7, 21, 22, 25, 26, 34, 37], "total_amount": [22, 35], "total_as_float": 26, "total_as_int": 26, "toward": 5, "tr": 36, "tracker": 5, "tradit": 20, "trait": [1, 17, 19], "transact": [1, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 19, "transform": [2, 7, 13, 22, 35], "translat": [5, 19], "treat": [4, 32], "treatment": [4, 7], "tree": [7, 13, 25], "trigger": [2, 36], "trim": [4, 5, 7], "trip": [22, 29, 34], "trip_dist": [22, 29], "trivial": [2, 20], "true": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 17, 20, 23, 25, 26, 29, 30, 32, 33, 36], "trunc": 5, "truncat": [2, 3, 5, 7, 23, 26, 29, 32, 36], "try": [1, 7, 11, 19], "trycast": 4, "tune": [2, 7, 33], "tupl": [1, 2, 5, 7, 11, 17], "turn": [0, 2, 4, 7, 19], "tutori": 37, "two": [2, 4, 5, 7, 13, 19, 23, 25, 28, 30, 32, 33, 34], "type": [1, 2, 3, 4, 5, 7, 11, 17, 19, 20, 21, 23, 25, 26, 29, 30, 32, 33, 34, 37], "type_class": 3, "typeerror": 3, "typic": [0, 4, 7, 14, 16, 17, 22, 34], "typing_extens": [7, 14], "u": [19, 23, 25, 34], "udaf": [1, 7, 17, 21, 30], "udaf1": [7, 17], "udaf2": [7, 17], "udaf3": [7, 17], "udf": [1, 7, 17, 21, 30], "udf4": [7, 17], "udtf": [7, 17], "udwf": [1, 7, 17], "udwf1": [7, 17], "udwf2": [7, 17], "udwf3": [7, 17], "ultim": 20, "unari": [7, 13], "unbound": [1, 4, 7, 17, 32], "unchang": [2, 26], "uncompress": [2, 7], "undefin": 20, "under": [1, 19], "underli": [4, 7, 17, 19], "understand": 33, "unfortun": 19, "unicod": [4, 5, 7], "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 3, 5, 17, 23], "unit": [4, 7, 32, 34], "unixtim": 5, "unknown": 4, "unlik": [4, 7, 32], "unmatch": 28, "unnest": [2, 4], "unnest_column": 2, "unnestexpr": 4, "unoptim": 2, "unpars": [7, 18], "unsaf": 19, "unspil": [1, 7], "until": 22, "unwrap": 44, "up": [2, 7, 13, 17, 22, 25, 32, 33, 36], "updat": [1, 2, 7, 17, 30], "upon": [5, 19, 30], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 19, "urbango": 28, "url": 1, "us": [1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "usag": [1, 2, 4, 5, 7, 17, 23, 32], "use_shared_styl": [3, 7, 36], "user": [0, 1, 2, 4, 5, 7, 8, 13, 14, 15, 16, 17, 19, 20, 22, 25, 26, 27, 36, 37], "user_defin": [1, 7, 18, 30], "user_id": 35, "uses_window_fram": [17, 30], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [3, 19, 32, 33], "uuid": 5, "uv": 20, "v": [20, 33], "v4": 5, "valid": [1, 2, 3, 4, 7, 8, 9, 10, 17], "valu": [1, 2, 3, 4, 5, 7, 13, 17, 23, 25, 27, 28, 29, 30, 32, 35, 36], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 30, "values_b": 30, "var": 5, "var_pop": [5, 23], "var_samp": [5, 23], "var_sampl": 5, "vari": 33, "variabl": [1, 5, 7, 20, 25], "varianc": 5, "variant": [4, 7, 13, 28], "variant_nam": [4, 7], "varieti": [25, 30, 34], "variou": [35, 36, 37], "vastli": [20, 33], "vec": 19, "vendorid": 29, "venomoth": 32, "venonat": 32, "venu": 26, "venufleur": 26, "venufleurmega": 26, "venusaur": [21, 26, 32, 34, 37], "venusaurmega": [21, 26, 32, 34, 37], "venv": 20, "verbos": 2, "veri": [39, 40], "verifi": 37, "version": [2, 7, 19, 20, 34], "versu": 33, "via": [1, 7, 15, 17, 19, 20, 21, 25, 28, 30, 34, 35, 37, 44, 45], "view": [1, 24, 26, 27, 37], "view1": 31, "viewtabl": 2, "vink": 32, "virtual": [1, 7, 20], "visual": [7, 13, 22, 36], "volatil": [7, 17, 30], "voltorb": [23, 32], "volum": 33, "vulpix": 23, "wa": [1, 7], "wai": [19, 20, 23, 34, 35, 37], "wait": 19, "want": [19, 20, 23, 26, 30, 32, 36, 44], "wartortl": [21, 34, 37], "water": [21, 23, 26, 34, 37], "we": [2, 19, 20, 22, 23, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38], "weedl": [21, 32, 34, 37], "weight": [5, 25], "welcom": [20, 37], "well": [1, 7, 19, 20], "were": [19, 25], "what": [19, 22], "whatev": 17, "when": [1, 2, 3, 4, 5, 7, 11, 17, 19, 20, 21, 23, 25, 28, 30, 32, 33, 34, 35, 36, 42], "when_expr": 4, "whenev": 20, "where": [2, 4, 5, 7, 13, 23, 25, 26, 30, 31, 32, 34], "wherea": 25, "wherev": 19, "whether": [1, 2, 3, 4, 5, 7, 11, 17, 25], "which": [1, 2, 4, 5, 7, 17, 19, 20, 21, 23, 25, 29, 30, 32, 34, 36, 38], "while": [17, 28, 33], "white": 36, "who": 19, "whole": 23, "wide": [25, 33, 34, 35], "width": [3, 36], "window": [1, 4, 5, 7, 17, 23, 27, 33], "window_fram": [4, 5, 7, 32], "windowevalu": [7, 17, 30], "windowexpr": 4, "windowfram": [4, 5, 7, 32], "windowframebound": [4, 7], "windowudf": [1, 7, 17], "windowudfexport": [7, 17], "wish": [19, 30], "with_allow_ddl": [1, 7], "with_allow_dml": [1, 7], "with_allow_stat": [1, 7], "with_batch_s": [1, 7], "with_column": [2, 35], "with_column_renam": 2, "with_create_default_catalog_and_schema": [1, 7, 33], "with_default_catalog_and_schema": [1, 7, 33], "with_disk_manager_dis": [1, 7], "with_disk_manager_o": [1, 7, 33], "with_disk_manager_specifi": [1, 7], "with_fair_spill_pool": [1, 7, 33], "with_greedy_memory_pool": [1, 7], "with_head": 2, "with_information_schema": [1, 7, 33], "with_parquet_prun": [1, 7, 33], "with_pretti": 16, "with_repartition_aggreg": [1, 7, 33], "with_repartition_file_min_s": [1, 7], "with_repartition_file_scan": [1, 7], "with_repartition_join": [1, 7, 33], "with_repartition_sort": [1, 7], "with_repartition_window": [1, 7, 33], "with_target_partit": [1, 7, 33], "with_temp_file_path": [1, 7], "with_unbounded_memory_pool": [1, 7], "within": [0, 5, 7, 9, 17, 23, 25], "within_limit": 2, "without": [4, 5, 7, 19, 20, 23, 26, 28, 29, 30], "won": 29, "word": [4, 5, 7], "work": [1, 5, 7, 22, 26, 29, 33, 35, 36, 37], "workflow": 20, "workload": 33, "worthwhil": [2, 7], "would": [4, 5, 8, 17, 19], "wrap": [1, 2, 19], "wrapper": [1, 7, 14, 20, 34], "write": [2, 7, 8, 15, 19, 30, 34], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [19, 21, 34], "x": [5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [5, 17, 21, 26, 32, 34, 37], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": 2, "yield": 5, "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 36, 37, 38, 44], "your": [0, 2, 7, 17, 19, 20, 23, 24, 29, 30, 33, 34, 35, 36, 44], "your_tabl": 35, "yourself": 19, "z": [1, 7, 17], "zero": [2, 5, 21, 38], "zstandard": [2, 7], "zstd": [2, 7], "zubat": 23, "\u03c0": 5}, "titles": ["datafusion.catalog", "datafusion.context", "datafusion.dataframe", "datafusion.dataframe_formatter", "datafusion.expr", "datafusion.functions", "datafusion.html_formatter", "datafusion", "datafusion.input.base", "datafusion.input", "datafusion.input.location", "datafusion.io", "datafusion.object_store", "datafusion.plan", "datafusion.record_batch", "datafusion.substrait", "datafusion.unparser", "datafusion.user_defined", "API Reference", "Python Extensions", "Introduction", "DataFusion in Python", "Concepts", "Aggregation", "Basic Operations", "Expressions", "Functions", "Common Operations", "Joins", "Column Selections", "User-Defined Functions", "Registering Views", "Window Functions", "Configuration", "Data Sources", "DataFrames", "HTML Rendering in Jupyter", "Introduction", "Arrow", "Avro", "CSV", "IO", "JSON", "Parquet", "Custom Table Provider", "SQL"], "titleterms": {"The": 19, "addit": 36, "aggreg": [23, 30, 32], "altern": 19, "anti": 28, "api": 18, "approach": 19, "arrai": 25, "arrow": [19, 38], "attribut": [4, 7, 12, 17], "avail": 32, "avro": 39, "base": 8, "basic": [24, 36], "benchmark": 33, "best": 36, "boolean": 25, "build": 20, "built": 35, "cast": 26, "catalog": [0, 34], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 13, 14, 15, 16, 17, 35], "code": 20, "column": [25, 29], "commit": 20, "common": [27, 35], "concept": 22, "condit": 26, "configur": [33, 36], "consider": 33, "content": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "context": [1, 22], "contextu": 36, "control": 36, "core": 35, "cpu": 33, "creat": [34, 35, 36], "csv": 40, "custom": [34, 36, 44], "data": 34, "datafram": [2, 22, 34, 35], "dataframe_formatt": 3, "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 21, 38], "defin": [30, 34], "delta": 34, "depend": 20, "detail": 19, "develop": 20, "displai": 36, "distinct": 23, "exampl": [21, 33], "export": 38, "expr": 4, "express": [22, 25, 35], "extens": 19, "ffi": 19, "file": 34, "fill_nul": 26, "filter": 23, "format": 36, "formatt": 36, "frame": 32, "from": [19, 38], "full": 28, "function": [3, 5, 7, 11, 23, 25, 26, 30, 32, 35], "guidelin": 20, "handl": 26, "hook": 20, "how": 20, "html": [35, 36], "html_formatt": 6, "iceberg": 34, "implement": 19, "import": [33, 38], "improv": 20, "inner": 28, "input": [8, 9, 10], "inspir": 19, "instal": [20, 21, 37], "introduct": [20, 37], "io": [11, 41], "issu": 19, "join": 28, "json": 42, "jupyt": 36, "lake": 34, "left": 28, "librari": 34, "liter": 25, "local": 34, "locat": 10, "manag": 36, "mathemat": 26, "maxim": 33, "memori": [34, 36], "miss": 26, "modul": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17], "null": [23, 32], "object": 34, "object_stor": 12, "oper": [24, 27, 35], "optim": 36, "option": 30, "order": [23, 32], "other": [26, 34], "overview": 35, "packag": [7, 9], "paramet": [23, 32], "parquet": 43, "partit": 32, "perform": 36, "plan": 13, "practic": 36, "pre": 20, "primari": 19, "provid": [34, 36, 44], "python": [19, 20, 21], "record_batch": 14, "refer": 18, "regist": 31, "render": [35, 36], "resourc": 36, "return": [4, 5, 7], "run": 20, "rust": 20, "scalar": 30, "schema": 34, "select": 29, "semi": 28, "separ": 20, "session": 22, "set": [23, 32], "share": 36, "sourc": 34, "speed": 20, "sql": 45, "statu": 19, "store": 34, "string": 26, "struct": 25, "style": 36, "submodul": [7, 9], "substrait": 15, "tabl": [30, 34, 44], "tempor": 26, "termin": 35, "treatment": [23, 32], "udwf": 30, "unpars": 16, "updat": 20, "usag": 33, "user": [30, 34], "user_defin": 17, "valu": 26, "view": 31, "window": [30, 32], "work": 19}})
\ No newline at end of file
diff --git a/user-guide/common-operations/aggregations.html b/user-guide/common-operations/aggregations.html
index 056c412..f542029 100644
--- a/user-guide/common-operations/aggregations.html
+++ b/user-guide/common-operations/aggregations.html
@@ -610,16 +610,16 @@
 <span class="o">+----------+--------------------------------------------------+</span>
 <span class="o">|</span> <span class="n">Type</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">Type</span> <span class="mi">2</span> <span class="n">List</span>                                      <span class="o">|</span>
 <span class="o">+----------+--------------------------------------------------+</span>
-<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Grass</span><span class="p">]</span>                        <span class="o">|</span>
-<span class="o">|</span> <span class="n">Poison</span>   <span class="o">|</span> <span class="p">[,</span> <span class="n">Ground</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="p">,</span> <span class="n">Steel</span><span class="p">]</span>                                <span class="o">|</span>
+<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Grass</span><span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                        <span class="o">|</span>
+<span class="o">|</span> <span class="n">Poison</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Ground</span><span class="p">,</span> <span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
+<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Steel</span><span class="p">,</span> <span class="p">]</span>                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Fairy</span>    <span class="o">|</span> <span class="p">[]</span>                                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Normal</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="p">,</span> <span class="n">Fairy</span><span class="p">]</span>                                <span class="o">|</span>
+<span class="o">|</span> <span class="n">Normal</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Fairy</span><span class="p">,</span> <span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Ice</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">]</span>                                <span class="o">|</span>
-<span class="o">|</span> <span class="n">Grass</span>    <span class="o">|</span> <span class="p">[,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">]</span>                              <span class="o">|</span>
-<span class="o">|</span> <span class="n">Fire</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Dragon</span><span class="p">,</span> <span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">,</span> <span class="n">Flying</span><span class="p">,</span> <span class="n">Dark</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="n">Ice</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">,</span> <span class="p">]</span> <span class="o">|</span>
-<span class="o">|</span> <span class="n">Ground</span>   <span class="o">|</span> <span class="p">[,</span> <span class="n">Rock</span><span class="p">]</span>                                         <span class="o">|</span>
+<span class="o">|</span> <span class="n">Grass</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="p">]</span>                              <span class="o">|</span>
+<span class="o">|</span> <span class="n">Fire</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="p">,</span> <span class="n">Dragon</span><span class="p">]</span>                               <span class="o">|</span>
+<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Dark</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">,</span> <span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Flying</span><span class="p">,</span> <span class="n">Ice</span><span class="p">]</span> <span class="o">|</span>
+<span class="o">|</span> <span class="n">Ground</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Rock</span><span class="p">,</span> <span class="p">]</span>                                         <span class="o">|</span>
 <span class="o">+----------+--------------------------------------------------+</span>
 <span class="n">Data</span> <span class="n">truncated</span><span class="o">.</span>
 </pre></div>
@@ -634,15 +634,15 @@
 <span class="o">+----------+------------------------------------------------+</span>
 <span class="o">|</span> <span class="n">Type</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">Type</span> <span class="mi">2</span> <span class="n">List</span>                                    <span class="o">|</span>
 <span class="o">+----------+------------------------------------------------+</span>
-<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Grass</span><span class="p">,</span> <span class="n">Poison</span><span class="p">]</span>                        <span class="o">|</span>
-<span class="o">|</span> <span class="n">Poison</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Ground</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Steel</span><span class="p">]</span>                                <span class="o">|</span>
+<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">,</span> <span class="n">Grass</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                        <span class="o">|</span>
+<span class="o">|</span> <span class="n">Poison</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Ground</span><span class="p">]</span>                               <span class="o">|</span>
+<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Steel</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Normal</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Fairy</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Ice</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">]</span>                              <span class="o">|</span>
-<span class="o">|</span> <span class="n">Grass</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">]</span>                              <span class="o">|</span>
-<span class="o">|</span> <span class="n">Fire</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Dragon</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">,</span> <span class="n">Ice</span><span class="p">,</span> <span class="n">Dark</span><span class="p">]</span> <span class="o">|</span>
-<span class="o">|</span> <span class="n">Rock</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Water</span><span class="p">,</span> <span class="n">Flying</span><span class="p">,</span> <span class="n">Ground</span><span class="p">]</span>                        <span class="o">|</span>
+<span class="o">|</span> <span class="n">Grass</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Psychic</span><span class="p">,</span> <span class="n">Poison</span><span class="p">]</span>                              <span class="o">|</span>
+<span class="o">|</span> <span class="n">Fire</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Dragon</span><span class="p">]</span>                               <span class="o">|</span>
+<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Psychic</span><span class="p">,</span> <span class="n">Ice</span><span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">,</span> <span class="n">Dark</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span> <span class="o">|</span>
+<span class="o">|</span> <span class="n">Rock</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Water</span><span class="p">,</span> <span class="n">Ground</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                        <span class="o">|</span>
 <span class="o">|</span> <span class="n">Ghost</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">]</span>                                       <span class="o">|</span>
 <span class="o">+----------+------------------------------------------------+</span>
 <span class="n">Data</span> <span class="n">truncated</span><span class="o">.</span>
@@ -653,15 +653,15 @@
 <span class="o">+----------+------------------------------------------------+</span>
 <span class="o">|</span> <span class="n">Type</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">Type</span> <span class="mi">2</span> <span class="n">List</span>                                    <span class="o">|</span>
 <span class="o">+----------+------------------------------------------------+</span>
-<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Grass</span><span class="p">,</span> <span class="n">Poison</span><span class="p">]</span>                        <span class="o">|</span>
+<span class="o">|</span> <span class="n">Bug</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Grass</span><span class="p">,</span> <span class="n">Flying</span><span class="p">,</span> <span class="n">Poison</span><span class="p">]</span>                        <span class="o">|</span>
 <span class="o">|</span> <span class="n">Poison</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Ground</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Steel</span><span class="p">]</span>                                <span class="o">|</span>
+<span class="o">|</span> <span class="n">Electric</span> <span class="o">|</span> <span class="p">[</span><span class="n">Steel</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Fairy</span>    <span class="o">|</span>                                                <span class="o">|</span>
 <span class="o">|</span> <span class="n">Normal</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Fairy</span><span class="p">]</span>                                <span class="o">|</span>
-<span class="o">|</span> <span class="n">Ice</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">]</span>                              <span class="o">|</span>
+<span class="o">|</span> <span class="n">Ice</span>      <span class="o">|</span> <span class="p">[</span><span class="n">Psychic</span><span class="p">,</span> <span class="n">Flying</span><span class="p">]</span>                              <span class="o">|</span>
 <span class="o">|</span> <span class="n">Grass</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Psychic</span><span class="p">,</span> <span class="n">Poison</span><span class="p">]</span>                              <span class="o">|</span>
 <span class="o">|</span> <span class="n">Fire</span>     <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Dragon</span><span class="p">]</span>                               <span class="o">|</span>
-<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Poison</span><span class="p">,</span> <span class="n">Ice</span><span class="p">,</span> <span class="n">Flying</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="n">Dark</span><span class="p">]</span> <span class="o">|</span>
+<span class="o">|</span> <span class="n">Water</span>    <span class="o">|</span> <span class="p">[</span><span class="n">Flying</span><span class="p">,</span> <span class="n">Poison</span><span class="p">,</span> <span class="n">Psychic</span><span class="p">,</span> <span class="n">Ice</span><span class="p">,</span> <span class="n">Dark</span><span class="p">,</span> <span class="n">Fighting</span><span class="p">]</span> <span class="o">|</span>
 <span class="o">|</span> <span class="n">Ground</span>   <span class="o">|</span> <span class="p">[</span><span class="n">Rock</span><span class="p">]</span>                                         <span class="o">|</span>
 <span class="o">+----------+------------------------------------------------+</span>
 <span class="n">Data</span> <span class="n">truncated</span><span class="o">.</span>
diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html
index d66a864..64d4e8b 100644
--- a/user-guide/common-operations/basic-info.html
+++ b/user-guide/common-operations/basic-info.html
@@ -446,11 +446,11 @@
 <span class="o">+-----+---------+--------+--------+</span>
 <span class="o">|</span> <span class="n">nrs</span> <span class="o">|</span> <span class="n">names</span>   <span class="o">|</span> <span class="n">random</span> <span class="o">|</span> <span class="n">groups</span> <span class="o">|</span>
 <span class="o">+-----+---------+--------+--------+</span>
-<span class="o">|</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">python</span>  <span class="o">|</span> <span class="mi">870</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2</span>   <span class="o">|</span> <span class="n">ruby</span>    <span class="o">|</span> <span class="mi">691</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="mi">3</span>   <span class="o">|</span> <span class="n">java</span>    <span class="o">|</span> <span class="mi">831</span>    <span class="o">|</span> <span class="n">B</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="mi">4</span>   <span class="o">|</span> <span class="n">haskell</span> <span class="o">|</span> <span class="mi">185</span>    <span class="o">|</span> <span class="n">C</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="mi">5</span>   <span class="o">|</span> <span class="n">go</span>      <span class="o">|</span> <span class="mi">892</span>    <span class="o">|</span> <span class="n">B</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">python</span>  <span class="o">|</span> <span class="mi">417</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2</span>   <span class="o">|</span> <span class="n">ruby</span>    <span class="o">|</span> <span class="mi">977</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">3</span>   <span class="o">|</span> <span class="n">java</span>    <span class="o">|</span> <span class="mi">110</span>    <span class="o">|</span> <span class="n">B</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">4</span>   <span class="o">|</span> <span class="n">haskell</span> <span class="o">|</span> <span class="mi">415</span>    <span class="o">|</span> <span class="n">C</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">5</span>   <span class="o">|</span> <span class="n">go</span>      <span class="o">|</span> <span class="mi">149</span>    <span class="o">|</span> <span class="n">B</span>      <span class="o">|</span>
 <span class="o">+-----+---------+--------+--------+</span>
 </pre></div>
 </div>
@@ -461,8 +461,8 @@
 <span class="o">+-----+--------+--------+--------+</span>
 <span class="o">|</span> <span class="n">nrs</span> <span class="o">|</span> <span class="n">names</span>  <span class="o">|</span> <span class="n">random</span> <span class="o">|</span> <span class="n">groups</span> <span class="o">|</span>
 <span class="o">+-----+--------+--------+--------+</span>
-<span class="o">|</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">python</span> <span class="o">|</span> <span class="mi">870</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2</span>   <span class="o">|</span> <span class="n">ruby</span>   <span class="o">|</span> <span class="mi">691</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">1</span>   <span class="o">|</span> <span class="n">python</span> <span class="o">|</span> <span class="mi">417</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2</span>   <span class="o">|</span> <span class="n">ruby</span>   <span class="o">|</span> <span class="mi">977</span>    <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
 <span class="o">+-----+--------+--------+--------+</span>
 </pre></div>
 </div>
@@ -480,28 +480,28 @@
 <div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="n">In</span> <span class="p">[</span><span class="mi">8</span><span class="p">]:</span> <span class="n">df</span><span class="o">.</span><span class="n">to_pandas</span><span class="p">()</span>
 <span class="n">Out</span><span class="p">[</span><span class="mi">8</span><span class="p">]:</span> 
    <span class="n">nrs</span>    <span class="n">names</span>  <span class="n">random</span> <span class="n">groups</span>
-<span class="mi">0</span>    <span class="mi">1</span>   <span class="n">python</span>     <span class="mi">870</span>      <span class="n">A</span>
-<span class="mi">1</span>    <span class="mi">2</span>     <span class="n">ruby</span>     <span class="mi">691</span>      <span class="n">A</span>
-<span class="mi">2</span>    <span class="mi">3</span>     <span class="n">java</span>     <span class="mi">831</span>      <span class="n">B</span>
-<span class="mi">3</span>    <span class="mi">4</span>  <span class="n">haskell</span>     <span class="mi">185</span>      <span class="n">C</span>
-<span class="mi">4</span>    <span class="mi">5</span>       <span class="n">go</span>     <span class="mi">892</span>      <span class="n">B</span>
+<span class="mi">0</span>    <span class="mi">1</span>   <span class="n">python</span>     <span class="mi">417</span>      <span class="n">A</span>
+<span class="mi">1</span>    <span class="mi">2</span>     <span class="n">ruby</span>     <span class="mi">977</span>      <span class="n">A</span>
+<span class="mi">2</span>    <span class="mi">3</span>     <span class="n">java</span>     <span class="mi">110</span>      <span class="n">B</span>
+<span class="mi">3</span>    <span class="mi">4</span>  <span class="n">haskell</span>     <span class="mi">415</span>      <span class="n">C</span>
+<span class="mi">4</span>    <span class="mi">5</span>       <span class="n">go</span>     <span class="mi">149</span>      <span class="n">B</span>
 </pre></div>
 </div>
 <p><a class="reference internal" href="../../autoapi/datafusion/dataframe/index.html#datafusion.dataframe.DataFrame.describe" title="datafusion.dataframe.DataFrame.describe"><code class="xref py py-func docutils literal notranslate"><span class="pre">describe()</span></code></a> shows a quick statistic summary of your data:</p>
 <div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="n">In</span> <span class="p">[</span><span class="mi">9</span><span class="p">]:</span> <span class="n">df</span><span class="o">.</span><span class="n">describe</span><span class="p">()</span>
 <span class="n">Out</span><span class="p">[</span><span class="mi">9</span><span class="p">]:</span> 
 <span class="n">DataFrame</span><span class="p">()</span>
-<span class="o">+------------+--------------------+-------+-------------------+--------+</span>
-<span class="o">|</span> <span class="n">describe</span>   <span class="o">|</span> <span class="n">nrs</span>                <span class="o">|</span> <span class="n">names</span> <span class="o">|</span> <span class="n">random</span>            <span class="o">|</span> <span class="n">groups</span> <span class="o">|</span>
-<span class="o">+------------+--------------------+-------+-------------------+--------+</span>
-<span class="o">|</span> <span class="n">count</span>      <span class="o">|</span> <span class="mf">5.0</span>                <span class="o">|</span> <span class="mi">5</span>     <span class="o">|</span> <span class="mf">5.0</span>               <span class="o">|</span> <span class="mi">5</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="n">null_count</span> <span class="o">|</span> <span class="mf">0.0</span>                <span class="o">|</span> <span class="mi">0</span>     <span class="o">|</span> <span class="mf">0.0</span>               <span class="o">|</span> <span class="mi">0</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="n">mean</span>       <span class="o">|</span> <span class="mf">3.0</span>                <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">693.8</span>             <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
-<span class="o">|</span> <span class="n">std</span>        <span class="o">|</span> <span class="mf">1.5811388300841898</span> <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">294.9740666567148</span> <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
-<span class="o">|</span> <span class="nb">min</span>        <span class="o">|</span> <span class="mf">1.0</span>                <span class="o">|</span> <span class="n">go</span>    <span class="o">|</span> <span class="mf">185.0</span>             <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="nb">max</span>        <span class="o">|</span> <span class="mf">5.0</span>                <span class="o">|</span> <span class="n">ruby</span>  <span class="o">|</span> <span class="mf">892.0</span>             <span class="o">|</span> <span class="n">C</span>      <span class="o">|</span>
-<span class="o">|</span> <span class="n">median</span>     <span class="o">|</span> <span class="mf">3.0</span>                <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">831.0</span>             <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
-<span class="o">+------------+--------------------+-------+-------------------+--------+</span>
+<span class="o">+------------+--------------------+-------+--------------------+--------+</span>
+<span class="o">|</span> <span class="n">describe</span>   <span class="o">|</span> <span class="n">nrs</span>                <span class="o">|</span> <span class="n">names</span> <span class="o">|</span> <span class="n">random</span>             <span class="o">|</span> <span class="n">groups</span> <span class="o">|</span>
+<span class="o">+------------+--------------------+-------+--------------------+--------+</span>
+<span class="o">|</span> <span class="n">count</span>      <span class="o">|</span> <span class="mf">5.0</span>                <span class="o">|</span> <span class="mi">5</span>     <span class="o">|</span> <span class="mf">5.0</span>                <span class="o">|</span> <span class="mi">5</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="n">null_count</span> <span class="o">|</span> <span class="mf">0.0</span>                <span class="o">|</span> <span class="mi">0</span>     <span class="o">|</span> <span class="mf">0.0</span>                <span class="o">|</span> <span class="mi">0</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="n">mean</span>       <span class="o">|</span> <span class="mf">3.0</span>                <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">413.6</span>              <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
+<span class="o">|</span> <span class="n">std</span>        <span class="o">|</span> <span class="mf">1.5811388300841898</span> <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">346.27272488603546</span> <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
+<span class="o">|</span> <span class="nb">min</span>        <span class="o">|</span> <span class="mf">1.0</span>                <span class="o">|</span> <span class="n">go</span>    <span class="o">|</span> <span class="mf">110.0</span>              <span class="o">|</span> <span class="n">A</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="nb">max</span>        <span class="o">|</span> <span class="mf">5.0</span>                <span class="o">|</span> <span class="n">ruby</span>  <span class="o">|</span> <span class="mf">977.0</span>              <span class="o">|</span> <span class="n">C</span>      <span class="o">|</span>
+<span class="o">|</span> <span class="n">median</span>     <span class="o">|</span> <span class="mf">3.0</span>                <span class="o">|</span> <span class="n">null</span>  <span class="o">|</span> <span class="mf">415.0</span>              <span class="o">|</span> <span class="n">null</span>   <span class="o">|</span>
+<span class="o">+------------+--------------------+-------+--------------------+--------+</span>
 </pre></div>
 </div>
 </section>
diff --git a/user-guide/common-operations/expressions.html b/user-guide/common-operations/expressions.html
index d9c4d35..7b7bb2f 100644
--- a/user-guide/common-operations/expressions.html
+++ b/user-guide/common-operations/expressions.html
@@ -497,7 +497,7 @@
 <section id="arrays">
 <h2>Arrays<a class="headerlink" href="#arrays" title="Link to this heading">¶</a></h2>
 <p>For columns that contain arrays of values, you can access individual elements of the array by index
-using bracket indexing. This is similar to callling the function
+using bracket indexing. This is similar to calling the function
 <a class="reference internal" href="../../autoapi/datafusion/functions/index.html#datafusion.functions.array_element" title="datafusion.functions.array_element"><code class="xref py py-func docutils literal notranslate"><span class="pre">datafusion.functions.array_element()</span></code></a>, except that array indexing using brackets is 0 based,
 similar to Python arrays and <code class="docutils literal notranslate"><span class="pre">array_element</span></code> is 1 based indexing to be compatible with other SQL
 approaches.</p>
diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html
index 5b84575..26eaec8 100644
--- a/user-guide/common-operations/functions.html
+++ b/user-guide/common-operations/functions.html
@@ -556,16 +556,16 @@
 <span class="o">+--------------------------------+</span>
 <span class="o">|</span> <span class="n">now</span><span class="p">()</span>                          <span class="o">|</span>
 <span class="o">+--------------------------------+</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
-<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">08</span><span class="o">-</span><span class="mi">31</span><span class="n">T12</span><span class="p">:</span><span class="mi">56</span><span class="p">:</span><span class="mf">41.222837494</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
+<span class="o">|</span> <span class="mi">2025</span><span class="o">-</span><span class="mi">09</span><span class="o">-</span><span class="mi">02</span><span class="n">T15</span><span class="p">:</span><span class="mi">05</span><span class="p">:</span><span class="mf">18.862152702</span><span class="n">Z</span> <span class="o">|</span>
 <span class="o">+--------------------------------+</span>
 <span class="n">Data</span> <span class="n">truncated</span><span class="o">.</span>
 </pre></div>
diff --git a/user-guide/common-operations/windows.html b/user-guide/common-operations/windows.html
index 4ac5a09..d7c4df8 100644
--- a/user-guide/common-operations/windows.html
+++ b/user-guide/common-operations/windows.html
@@ -470,7 +470,7 @@
 <p>In this section you will learn about window functions. A window function utilizes values from one or
 multiple rows to produce a result for each individual row, unlike an aggregate function that
 provides a single value for multiple rows.</p>
-<p>The window functions are availble in the <a class="reference internal" href="../../autoapi/datafusion/functions/index.html#module-datafusion.functions" title="datafusion.functions"><code class="xref py py-mod docutils literal notranslate"><span class="pre">functions</span></code></a> module.</p>
+<p>The window functions are available in the <a class="reference internal" href="../../autoapi/datafusion/functions/index.html#module-datafusion.functions" title="datafusion.functions"><code class="xref py py-mod docutils literal notranslate"><span class="pre">functions</span></code></a> module.</p>
 <p>We’ll use the pokemon dataset (from Ritchie Vink) in the following examples.</p>
 <div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="n">In</span> <span class="p">[</span><span class="mi">1</span><span class="p">]:</span> <span class="kn">from</span><span class="w"> </span><span class="nn">datafusion</span><span class="w"> </span><span class="kn">import</span> <span class="n">SessionContext</span>
 
@@ -590,8 +590,8 @@
 criteria.</p>
 <ul class="simple">
 <li><p>If an <code class="docutils literal notranslate"><span class="pre">order_by</span></code> clause is set, the default window frame is defined as the rows between
-unbounded preceeding and the current row.</p></li>
-<li><p>If an <code class="docutils literal notranslate"><span class="pre">order_by</span></code> is not set, the default frame is defined as the rows betwene unbounded
+unbounded preceding and the current row.</p></li>
+<li><p>If an <code class="docutils literal notranslate"><span class="pre">order_by</span></code> is not set, the default frame is defined as the rows between unbounded
 and unbounded following (the entire partition).</p></li>
 </ul>
 <p>Window Frames are defined by three parameters: unit type, starting bound, and ending bound.</p>
@@ -606,7 +606,7 @@
 <code class="docutils literal notranslate"><span class="pre">order_by</span></code> clause.</p></li>
 </ul>
 <p>In this example we perform a “rolling average” of the speed of the current Pokemon and the
-two preceeding rows.</p>
+two preceding rows.</p>
 <div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="n">In</span> <span class="p">[</span><span class="mi">9</span><span class="p">]:</span> <span class="kn">from</span><span class="w"> </span><span class="nn">datafusion.expr</span><span class="w"> </span><span class="kn">import</span> <span class="n">WindowFrame</span>
 
 <span class="n">In</span> <span class="p">[</span><span class="mi">10</span><span class="p">]:</span> <span class="n">df</span><span class="o">.</span><span class="n">select</span><span class="p">(</span>
diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html
index a2a08fc..e25d0c4 100644
--- a/user-guide/data-sources.html
+++ b/user-guide/data-sources.html
@@ -487,7 +487,7 @@
 <p>DataFusion provides a wide variety of ways to get data into a DataFrame to perform operations.</p>
 <section id="local-file">
 <h2>Local file<a class="headerlink" href="#local-file" title="Link to this heading">¶</a></h2>
-<p>DataFusion has the abilty to read from a variety of popular file formats, such as <a class="reference internal" href="io/parquet.html#io-parquet"><span class="std std-ref">Parquet</span></a>,
+<p>DataFusion has the ability to read from a variety of popular file formats, such as <a class="reference internal" href="io/parquet.html#io-parquet"><span class="std std-ref">Parquet</span></a>,
 <a class="reference internal" href="io/csv.html#io-csv"><span class="std std-ref">CSV</span></a>, <a class="reference internal" href="io/json.html#io-json"><span class="std std-ref">JSON</span></a>, and <a class="reference internal" href="io/avro.html#io-avro"><span class="std std-ref">AVRO</span></a>.</p>
 <div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="n">In</span> <span class="p">[</span><span class="mi">1</span><span class="p">]:</span> <span class="kn">from</span><span class="w"> </span><span class="nn">datafusion</span><span class="w"> </span><span class="kn">import</span> <span class="n">SessionContext</span>
 
@@ -628,7 +628,7 @@
 <a class="reference external" href="https://pola.rs/">Polars</a> and <a class="reference external" href="https://pandas.pydata.org/">Pandas</a>.
 Since DataFusion version 42.0.0, any DataFrame library that supports the Arrow FFI PyCapsule
 interface can be imported to DataFusion using the
-<a class="reference internal" href="../autoapi/datafusion/context/index.html#datafusion.context.SessionContext.from_arrow" title="datafusion.context.SessionContext.from_arrow"><code class="xref py py-func docutils literal notranslate"><span class="pre">from_arrow()</span></code></a> function. Older verions of Polars may
+<a class="reference internal" href="../autoapi/datafusion/context/index.html#datafusion.context.SessionContext.from_arrow" title="datafusion.context.SessionContext.from_arrow"><code class="xref py py-func docutils literal notranslate"><span class="pre">from_arrow()</span></code></a> function. Older versions of Polars may
 not support the arrow interface. In those cases, you can still import via the
 <a class="reference internal" href="../autoapi/datafusion/context/index.html#datafusion.context.SessionContext.from_polars" title="datafusion.context.SessionContext.from_polars"><code class="xref py py-func docutils literal notranslate"><span class="pre">from_polars()</span></code></a> function.</p>
 <div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span><span class="w"> </span><span class="nn">pandas</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">pd</span>