From 3b70cf22eb96c18e63e31c29aac85fb1e7fdec24 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Wed, 30 Nov 2022 08:55:46 -0700 Subject: [PATCH 01/36] DataFusion Python 0.7.0 Documentation --- _sources/api.rst.txt | 32 + _sources/api/config.rst.txt | 27 + _sources/api/dataframe.rst.txt | 27 + _sources/api/execution_context.rst.txt | 27 + _sources/api/expression.rst.txt | 27 + _sources/api/functions.rst.txt | 27 + _sources/api/object_store.rst.txt | 27 + _sources/generated/datafusion.Config.rst.txt | 26 + .../generated/datafusion.DataFrame.rst.txt | 47 + .../generated/datafusion.Expression.rst.txt | 28 + .../datafusion.SessionContext.rst.txt | 43 + .../datafusion.functions.functions.rst.txt | 23 + ...tafusion.object_store.object_store.rst.txt | 23 + _sources/index.rst.txt | 291 + _static/DataFusion-Logo-Background-White.png | Bin 0 -> 12401 bytes .../_sphinx_javascript_frameworks_compat.js | 134 + _static/basic.css | 900 ++ _static/doctools.js | 264 + _static/documentation_options.js | 14 + _static/file.png | Bin 0 -> 286 bytes .../DataFusion-Logo-Background-White.png | Bin 0 -> 12401 bytes .../DataFusion-Logo-Background-White.svg | 1 + _static/images/DataFusion-Logo-Dark.png | Bin 0 -> 20134 bytes _static/images/DataFusion-Logo-Dark.svg | 1 + _static/images/DataFusion-Logo-Light.png | Bin 0 -> 19102 bytes _static/images/DataFusion-Logo-Light.svg | 1 + _static/jquery-3.6.0.js | 10881 ++++++++++++++++ _static/jquery.js | 2 + _static/language_data.js | 199 + _static/minus.png | Bin 0 -> 90 bytes _static/plus.png | Bin 0 -> 90 bytes _static/pygments.css | 82 + _static/scripts/pydata-sphinx-theme.js | 32 + _static/searchtools.js | 530 + _static/styles/pydata-sphinx-theme.css | 6 + _static/styles/theme.css | 134 + _static/theme_overrides.css | 93 + _static/underscore-1.13.1.js | 2042 +++ _static/underscore.js | 6 + _static/vendor/fontawesome/5.13.0/LICENSE.txt | 34 + .../vendor/fontawesome/5.13.0/css/all.min.css | 5 + .../5.13.0/webfonts/fa-brands-400.eot | Bin 0 -> 133034 bytes .../5.13.0/webfonts/fa-brands-400.svg | 3570 +++++ .../5.13.0/webfonts/fa-brands-400.ttf | Bin 0 -> 132728 bytes .../5.13.0/webfonts/fa-brands-400.woff | Bin 0 -> 89824 bytes .../5.13.0/webfonts/fa-brands-400.woff2 | Bin 0 -> 76612 bytes .../5.13.0/webfonts/fa-regular-400.eot | Bin 0 -> 34390 bytes .../5.13.0/webfonts/fa-regular-400.svg | 803 ++ .../5.13.0/webfonts/fa-regular-400.ttf | Bin 0 -> 34092 bytes .../5.13.0/webfonts/fa-regular-400.woff | Bin 0 -> 16800 bytes .../5.13.0/webfonts/fa-regular-400.woff2 | Bin 0 -> 13584 bytes .../5.13.0/webfonts/fa-solid-900.eot | Bin 0 -> 202902 bytes .../5.13.0/webfonts/fa-solid-900.svg | 4938 +++++++ .../5.13.0/webfonts/fa-solid-900.ttf | Bin 0 -> 202616 bytes .../5.13.0/webfonts/fa-solid-900.woff | Bin 0 -> 103300 bytes .../5.13.0/webfonts/fa-solid-900.woff2 | Bin 0 -> 79444 bytes _static/webpack-macros.html | 28 + api.html | 315 + api/config.html | 294 + api/dataframe.html | 294 + api/execution_context.html | 294 + api/expression.html | 294 + api/functions.html | 294 + api/object_store.html | 294 + generated/datafusion.Config.html | 342 + generated/datafusion.DataFrame.html | 532 + generated/datafusion.Expression.html | 357 + generated/datafusion.SessionContext.html | 479 + generated/datafusion.functions.functions.html | 655 + .../datafusion.object_store.object_store.html | 303 + genindex.html | 714 + index.html | 557 + objects.inv | Bin 0 -> 1456 bytes py-modindex.html | 277 + search.html | 281 + searchindex.js | 1 + 76 files changed, 31952 insertions(+) create mode 100644 _sources/api.rst.txt create mode 100644 _sources/api/config.rst.txt create mode 100644 _sources/api/dataframe.rst.txt create mode 100644 _sources/api/execution_context.rst.txt create mode 100644 _sources/api/expression.rst.txt create mode 100644 _sources/api/functions.rst.txt create mode 100644 _sources/api/object_store.rst.txt create mode 100644 _sources/generated/datafusion.Config.rst.txt create mode 100644 _sources/generated/datafusion.DataFrame.rst.txt create mode 100644 _sources/generated/datafusion.Expression.rst.txt create mode 100644 _sources/generated/datafusion.SessionContext.rst.txt create mode 100644 _sources/generated/datafusion.functions.functions.rst.txt create mode 100644 _sources/generated/datafusion.object_store.object_store.rst.txt create mode 100644 _sources/index.rst.txt create mode 100644 _static/DataFusion-Logo-Background-White.png create mode 100644 _static/_sphinx_javascript_frameworks_compat.js create mode 100644 _static/basic.css create mode 100644 _static/doctools.js create mode 100644 _static/documentation_options.js create mode 100644 _static/file.png create mode 100644 _static/images/DataFusion-Logo-Background-White.png create mode 100644 _static/images/DataFusion-Logo-Background-White.svg create mode 100644 _static/images/DataFusion-Logo-Dark.png create mode 100644 _static/images/DataFusion-Logo-Dark.svg create mode 100644 _static/images/DataFusion-Logo-Light.png create mode 100644 _static/images/DataFusion-Logo-Light.svg create mode 100644 _static/jquery-3.6.0.js create mode 100644 _static/jquery.js create mode 100644 _static/language_data.js create mode 100644 _static/minus.png create mode 100644 _static/plus.png create mode 100644 _static/pygments.css create mode 100644 _static/scripts/pydata-sphinx-theme.js create mode 100644 _static/searchtools.js create mode 100644 _static/styles/pydata-sphinx-theme.css create mode 100644 _static/styles/theme.css create mode 100644 _static/theme_overrides.css create mode 100644 _static/underscore-1.13.1.js create mode 100644 _static/underscore.js create mode 100644 _static/vendor/fontawesome/5.13.0/LICENSE.txt create mode 100644 _static/vendor/fontawesome/5.13.0/css/all.min.css create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.eot create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.svg create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.ttf create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff2 create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.eot create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.svg create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.ttf create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff2 create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.eot create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.svg create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.ttf create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff create mode 100644 _static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff2 create mode 100644 _static/webpack-macros.html create mode 100644 api.html create mode 100644 api/config.html create mode 100644 api/dataframe.html create mode 100644 api/execution_context.html create mode 100644 api/expression.html create mode 100644 api/functions.html create mode 100644 api/object_store.html create mode 100644 generated/datafusion.Config.html create mode 100644 generated/datafusion.DataFrame.html create mode 100644 generated/datafusion.Expression.html create mode 100644 generated/datafusion.SessionContext.html create mode 100644 generated/datafusion.functions.functions.html create mode 100644 generated/datafusion.object_store.object_store.html create mode 100644 genindex.html create mode 100644 index.html create mode 100644 objects.inv create mode 100644 py-modindex.html create mode 100644 search.html create mode 100644 searchindex.js diff --git a/_sources/api.rst.txt b/_sources/api.rst.txt new file mode 100644 index 000000000..a5d65433d --- /dev/null +++ b/_sources/api.rst.txt @@ -0,0 +1,32 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api: + +************* +API Reference +************* + +.. toctree:: + :maxdepth: 2 + + api/config + api/dataframe + api/execution_context + api/expression + api/functions + api/object_store diff --git a/_sources/api/config.rst.txt b/_sources/api/config.rst.txt new file mode 100644 index 000000000..df244aec5 --- /dev/null +++ b/_sources/api/config.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.config: +.. currentmodule:: datafusion + +Config +========= + +.. autosummary:: + :toctree: ../generated/ + + Config diff --git a/_sources/api/dataframe.rst.txt b/_sources/api/dataframe.rst.txt new file mode 100644 index 000000000..0a3c4c8b1 --- /dev/null +++ b/_sources/api/dataframe.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.dataframe: +.. currentmodule:: datafusion + +DataFrame +========= + +.. autosummary:: + :toctree: ../generated/ + + DataFrame diff --git a/_sources/api/execution_context.rst.txt b/_sources/api/execution_context.rst.txt new file mode 100644 index 000000000..5b7e0f82f --- /dev/null +++ b/_sources/api/execution_context.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.execution_context: +.. currentmodule:: datafusion + +SessionContext +================ + +.. autosummary:: + :toctree: ../generated/ + + SessionContext diff --git a/_sources/api/expression.rst.txt b/_sources/api/expression.rst.txt new file mode 100644 index 000000000..45923fb54 --- /dev/null +++ b/_sources/api/expression.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.expression: +.. currentmodule:: datafusion + +Expression +========== + +.. autosummary:: + :toctree: ../generated/ + + Expression diff --git a/_sources/api/functions.rst.txt b/_sources/api/functions.rst.txt new file mode 100644 index 000000000..958606df2 --- /dev/null +++ b/_sources/api/functions.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.functions: +.. currentmodule:: datafusion + +Functions +========= + +.. autosummary:: + :toctree: ../generated/ + + functions.functions diff --git a/_sources/api/object_store.rst.txt b/_sources/api/object_store.rst.txt new file mode 100644 index 000000000..eeb6c4326 --- /dev/null +++ b/_sources/api/object_store.rst.txt @@ -0,0 +1,27 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +.. _api.object_store: +.. currentmodule:: datafusion.object_store + +ObjectStore +========= + +.. autosummary:: + :toctree: ../generated/ + + object_store \ No newline at end of file diff --git a/_sources/generated/datafusion.Config.rst.txt b/_sources/generated/datafusion.Config.rst.txt new file mode 100644 index 000000000..7554084f2 --- /dev/null +++ b/_sources/generated/datafusion.Config.rst.txt @@ -0,0 +1,26 @@ +datafusion.Config +================= + +.. currentmodule:: datafusion + +.. autoclass:: Config + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Config.__init__ + ~Config.from_env + ~Config.get + ~Config.get_all + ~Config.set + + + + + + \ No newline at end of file diff --git a/_sources/generated/datafusion.DataFrame.rst.txt b/_sources/generated/datafusion.DataFrame.rst.txt new file mode 100644 index 000000000..e0ddc8651 --- /dev/null +++ b/_sources/generated/datafusion.DataFrame.rst.txt @@ -0,0 +1,47 @@ +datafusion.DataFrame +==================== + +.. currentmodule:: datafusion + +.. autoclass:: DataFrame + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~DataFrame.__init__ + ~DataFrame.aggregate + ~DataFrame.cache + ~DataFrame.collect + ~DataFrame.collect_partitioned + ~DataFrame.distinct + ~DataFrame.except_all + ~DataFrame.explain + ~DataFrame.filter + ~DataFrame.intersect + ~DataFrame.join + ~DataFrame.limit + ~DataFrame.repartition + ~DataFrame.repartition_by_hash + ~DataFrame.schema + ~DataFrame.select + ~DataFrame.select_columns + ~DataFrame.show + ~DataFrame.sort + ~DataFrame.union + ~DataFrame.union_distinct + ~DataFrame.with_column + ~DataFrame.with_column_renamed + ~DataFrame.write_csv + ~DataFrame.write_json + ~DataFrame.write_parquet + + + + + + \ No newline at end of file diff --git a/_sources/generated/datafusion.Expression.rst.txt b/_sources/generated/datafusion.Expression.rst.txt new file mode 100644 index 000000000..92e9b4c5d --- /dev/null +++ b/_sources/generated/datafusion.Expression.rst.txt @@ -0,0 +1,28 @@ +datafusion.Expression +===================== + +.. currentmodule:: datafusion + +.. autoclass:: Expression + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Expression.__init__ + ~Expression.alias + ~Expression.cast + ~Expression.column + ~Expression.is_null + ~Expression.literal + ~Expression.sort + + + + + + \ No newline at end of file diff --git a/_sources/generated/datafusion.SessionContext.rst.txt b/_sources/generated/datafusion.SessionContext.rst.txt new file mode 100644 index 000000000..965f8b8fc --- /dev/null +++ b/_sources/generated/datafusion.SessionContext.rst.txt @@ -0,0 +1,43 @@ +datafusion.SessionContext +========================= + +.. currentmodule:: datafusion + +.. autoclass:: SessionContext + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~SessionContext.__init__ + ~SessionContext.catalog + ~SessionContext.create_dataframe + ~SessionContext.deregister_table + ~SessionContext.empty_table + ~SessionContext.read_avro + ~SessionContext.read_csv + ~SessionContext.read_json + ~SessionContext.read_parquet + ~SessionContext.register_csv + ~SessionContext.register_dataset + ~SessionContext.register_object_store + ~SessionContext.register_parquet + ~SessionContext.register_record_batches + ~SessionContext.register_table + ~SessionContext.register_udaf + ~SessionContext.register_udf + ~SessionContext.session_id + ~SessionContext.sql + ~SessionContext.table + ~SessionContext.table_exist + ~SessionContext.tables + + + + + + \ No newline at end of file diff --git a/_sources/generated/datafusion.functions.functions.rst.txt b/_sources/generated/datafusion.functions.functions.rst.txt new file mode 100644 index 000000000..eb10a67f0 --- /dev/null +++ b/_sources/generated/datafusion.functions.functions.rst.txt @@ -0,0 +1,23 @@ +datafusion.functions.functions +============================== + +.. automodule:: datafusion.functions.functions + + + + + + + + + + + + + + + + + + + diff --git a/_sources/generated/datafusion.object_store.object_store.rst.txt b/_sources/generated/datafusion.object_store.object_store.rst.txt new file mode 100644 index 000000000..7934ec323 --- /dev/null +++ b/_sources/generated/datafusion.object_store.object_store.rst.txt @@ -0,0 +1,23 @@ +datafusion.object\_store.object\_store +====================================== + +.. automodule:: datafusion.object_store.object_store + + + + + + + + + + + + + + + + + + + diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt new file mode 100644 index 000000000..78f44ea17 --- /dev/null +++ b/_sources/index.rst.txt @@ -0,0 +1,291 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +==================== +DataFusion in Python +==================== + +This is a Python library that binds to `Apache Arrow `_ in-memory query engine `DataFusion `_. + +Like pyspark, it allows you to build a plan through SQL or a DataFrame API against in-memory data, parquet or CSV files, run it in a multi-threaded environment, and obtain the result back in Python. + +It also allows you to use UDFs and UDAFs for complex operations. + +The major advantage of this library over other execution engines is that this library achieves zero-copy between Python and its execution engine: there is no cost in using UDFs, UDAFs, and collecting the results to Python apart from having to lock the GIL when running those operations. + +Its query engine, DataFusion, is written in `Rust `_, which makes strong assumptions about thread safety and lack of memory leaks. + +Technically, zero-copy is achieved via the `c data interface `_. + +How to use it +============= + +Simple usage: + +.. code-block:: python + + import datafusion + from datafusion import col + import pyarrow + + # create a context + ctx = datafusion.SessionContext() + + # create a RecordBatch and a new DataFrame from it + batch = pyarrow.RecordBatch.from_arrays( + [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])], + names=["a", "b"], + ) + df = ctx.create_dataframe([[batch]]) + + # create a new statement + df = df.select( + col("a") + col("b"), + col("a") - col("b"), + ) + + # execute and collect the first (and only) batch + result = df.collect()[0] + + assert result.column(0) == pyarrow.array([5, 7, 9]) + assert result.column(1) == pyarrow.array([-3, -3, -3]) + + +We can also execute a query against data stored in CSV + +.. code-block:: bash + + echo "a,b\n1,4\n2,5\n3,6" > example.csv + + +.. code-block:: python + + import datafusion + from datafusion import col + import pyarrow + + # create a context + ctx = datafusion.SessionContext() + + # register a CSV + ctx.register_csv('example', 'example.csv') + + # create a new statement + df = ctx.table('example').select( + col("a") + col("b"), + col("a") - col("b"), + ) + + # execute and collect the first (and only) batch + result = df.collect()[0] + + assert result.column(0) == pyarrow.array([5, 7, 9]) + assert result.column(1) == pyarrow.array([-3, -3, -3]) + + +And how to execute a query against a CSV using SQL: + + +.. code-block:: python + + import datafusion + from datafusion import col + import pyarrow + + # create a context + ctx = datafusion.SessionContext() + + # register a CSV + ctx.register_csv('example', 'example.csv') + + # create a new statement via SQL + df = ctx.sql("SELECT a+b, a-b FROM example") + + # execute and collect the first (and only) batch + result = df.collect()[0] + + assert result.column(0) == pyarrow.array([5, 7, 9]) + assert result.column(1) == pyarrow.array([-3, -3, -3]) + + + +UDFs +---- + +.. code-block:: python + + import pyarrow + from datafusion import udf + + def is_null(array: pyarrow.Array) -> pyarrow.Array: + return array.is_null() + + is_null_arr = udf(is_null, [pyarrow.int64()], pyarrow.bool_(), 'stable') + + # create a context + ctx = datafusion.SessionContext() + + # create a RecordBatch and a new DataFrame from it + batch = pyarrow.RecordBatch.from_arrays( + [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])], + names=["a", "b"], + ) + df = ctx.create_dataframe([[batch]]) + + df = df.select(is_null_arr(col("a"))) + + result = df.collect()[0] + + assert result.column(0) == pyarrow.array([False] * 3) + + +UDAF +---- + +.. code-block:: python + + import pyarrow + import pyarrow.compute + import datafusion + from datafusion import udaf, Accumulator + from datafusion import col + + + class MyAccumulator(Accumulator): + """ + Interface of a user-defined accumulation. + """ + def __init__(self): + self._sum = pyarrow.scalar(0.0) + + def update(self, values: pyarrow.Array) -> None: + # not nice since pyarrow scalars can't be summed yet. This breaks on `None` + self._sum = pyarrow.scalar(self._sum.as_py() + pyarrow.compute.sum(values).as_py()) + + def merge(self, states: pyarrow.Array) -> None: + # not nice since pyarrow scalars can't be summed yet. This breaks on `None` + self._sum = pyarrow.scalar(self._sum.as_py() + pyarrow.compute.sum(states).as_py()) + + def state(self) -> pyarrow.Array: + return pyarrow.array([self._sum.as_py()]) + + def evaluate(self) -> pyarrow.Scalar: + return self._sum + + # create a context + ctx = datafusion.SessionContext() + + # create a RecordBatch and a new DataFrame from it + batch = pyarrow.RecordBatch.from_arrays( + [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])], + names=["a", "b"], + ) + df = ctx.create_dataframe([[batch]]) + + my_udaf = udaf(MyAccumulator, pyarrow.float64(), pyarrow.float64(), [pyarrow.float64()], 'stable') + + df = df.aggregate( + [], + [my_udaf(col("a"))] + ) + + result = df.collect()[0] + + assert result.column(0) == pyarrow.array([6.0]) + +How to install (from pip) +========================= + +.. code-block:: shell + + pip install datafusion + +You can verify the installation by running: + +.. code-block:: python + + >>> import datafusion + >>> datafusion.__version__ + '0.6.0' + + +How to develop +============== + +This assumes that you have rust and cargo installed. We use the workflow recommended by `pyo3 `_ and `maturin `_. + +Bootstrap: + +.. code-block:: shell + + # fetch this repo + git clone git@github.com:apache/arrow-datafusion-python.git + # prepare development environment (used to build wheel / install in development) + python3 -m venv venv + # activate the venv + source venv/bin/activate + # update pip itself if necessary + python -m pip install -U pip + # install dependencies (for Python 3.8+) + python -m pip install -r requirements-310.txt + +The tests rely on test data in git submodules. + +.. code-block:: shell + + git submodule init + git submodule update + + +Whenever rust code changes (your changes or via `git pull`): + +.. code-block:: shell + + # make sure you activate the venv using "source venv/bin/activate" first + maturin develop + python -m pytest + + +How to update dependencies +========================== + +To change test dependencies, change the `requirements.in` and run + +.. code-block:: shell + + # install pip-tools (this can be done only once), also consider running in venv + python -m pip install pip-tools + python -m piptools compile --generate-hashes -o requirements-310.txt + + +To update dependencies, run with `-U` + +.. code-block:: shell + + python -m piptools compile -U --generate-hashes -o requirements-310.txt + + +More details about pip-tools `here `_ + + +API reference +============= + +.. toctree:: + :maxdepth: 2 + + api diff --git a/_static/DataFusion-Logo-Background-White.png b/_static/DataFusion-Logo-Background-White.png new file mode 100644 index 0000000000000000000000000000000000000000..023c2373fc4949037ca1e11bfb72e2e469a0bda7 GIT binary patch literal 12401 zcmX9_1vp;s8{USQHZvU`j&3$RZG4(B&2%>#Gfa0Kd^*R}Fx|1~nC_nL&Z+ zujfGBv{^-#oEVzuM>Z3=G;n2^y&z?e`!yY(m(6^^Xa?+BI z?jOD~oAP2GJ>sB)ONyzv&FrP2&8d&xbt(|=tFt9AOh!|W$bi{ga^IOLGj^KO zDlTTOcW-yAyxLC4hAPYlQ{AeYJ+Jq@c8Y60{z-mqeZBrC#hXyv1|DQPoGmqbcV5%- zvLfx%g8P*hh4oCOrQqk&&6wEmh{fN7&UHtfq|SRgJWi|KXs@!~s_o`U@?+;3K9%zQ+x#XMe%5@w&kYbGu{WKnh8UB( z42do0Wq5HZMTmU_O^UUv+6fK5Ja^S8Hwj7PG!7(sZ56jUUX)O~o^0)3g~@!jBrbFN z@9YH%3W^V3&&7fV`>SdRY<|f*`#Pt!_VhO%U-%ckE2OlCzGT+5#}U5#VDZJi`N~Xp z@%HZez_Y>5Jl)+a#JcnRbW|xNuM;K+FE?xpMBB^E&zI>>6V#Y<>SJ9VlE7gVLqw4B zBK%{lURjPvMsBpfP{PL%Iuy0|(iVt?(H?cU9L65l`O0;BOf=kbq0v2y^UeLu$#O7F zWc2-Ql=qDUJ^?{8eOGI=3H4O1<2T*Ta+ZnYOS!l{;A_ zA_7m*L0VSr%4csh^HQBcQ)7S^EEqk_&NpG~&3va9&>aVMo?Wg)k%Hl^OTYXiR?1|X zRu@CV!ldGv)K?du71>OecL=?C8VEG`x~(bj&f|Yxg8eZu>WyQ}GLCITqjwPe+s?u( zBC;55LbN?u%HHL)U69wiIP|m(?vVOU~9Xto~9SoHR`kf-#z%%bWM5xe|F(Z@X~^lo`k=J#}x-EYRH(1TwaULCJ3FZtmhy7*VZ zxj|Ku(^>nL0Q4-Xb{XXnlZ@-CNquXXV{c$XTq_ZlBt%Z<~TIh|rE5y{S*i#g+T7?K3& z#j?Uyze&BQ^h3MKiZdbL_WA-RB4qi}hQ7yfr8A&YtnDlMk0(rO`7jaZ)fnks`C169-2(30SG-FOHLttG_bqxL?1+Hkr$0J5z}ku~jiB+@}rRKyM-LxZ-`g zW1u3^@cC?8SZR>q5UCKHSsZ_j5PUkqrOr_qWic{`P3Ecl6ne*>0ZTTi&0 zk^fuR;}n5H`Txr>+8g*5dgwED`|j9lmwclW19YeYg+2epDgW)^0dH1gmBhR5Tkfw# zG#1g=yXk4tw|&1L`Gr%#yN40)Mk5ZIuS@))HJRS-Q-(oTC4)q2VB=o(>}pxv(<2L? zKn!ATVNKoMrcIbO! z_9rG;P+i45s={l`6~c~0ZU<3Av; zNW?%W06qP~!UO}M^@m$|8G+~5zcJXmQOEiMO_Jv)5?Rb!)uI7ai;qoAXYTr?I&MOf zwql>FeSAI859TW!jS9{25#_-ERWjt(vxHP3P(;7UK`ZEMuJ*h>&nok}IqD*o1_4YP z=|06Y0n2IgTC2L*iB20N?bIskNgl%A(I%Gu7)w01GitM5ZQMn?a}Ivhw``g}VFk@X zJ#=uc>7!t+S`_qybFTz8J*)JRXS$!}T^+X&k>r9CCUq4)fC@^DHBFM`hqX+MQ?1#R z`^|4rm5~kai?wIW^Tl92ho6<_xrG~jcTYB_%D&leD5u)TyS>cSDCMKV+Lc`1LiX4# z>ryRDw2wvxB_rmlkv{CqH`Gkr&ISy5@ljAuSVvvQYv}h7fvKFvZ#Oled{aN+IeKRD zNzJ`LLmkg}|6`fGB5#?s3|5(SYk|>5>uARUF}dW?euU*wrepD~YBQJ2I}q5vylA<9 zb1G^C%XQwu)qnPfRD;*+{`O)Bv({?7u(=RH9}7VBZao_2C}c!nCw4v|w-K8R`xL52 z!ydCrRJZ3<>T`3E=_jdGV>gevLImPFoqug?(VMgNm>Dw7eDN1LZb~O=Q`VFE+FI4r*r-`lai}^O!wmcW<$i$TVw6iGWt7! zhK5bVA$tBOX!6hV{z-*sXvGQjsrEGFx-J`#0J0ZvrKT1+0u!@tX8*zQ4Q9IvFl&pSx0= zhn}<1hJc>Kz&QH42%9AFCkH?EDhlD$;PpV7pr^t@u0KG9wD4${2anx?2dcpDb>033 zaFyh4*VjVmrk!{3%gSsfd&6#dG~F7Mt38`U2j5)iZZcvm>1u~Py~sel?o53Y-Zg5aR|dLiUWGY%tL&uVzZlQ z2hB4hG};8MxE4*s5Je$Z_Qy$9HQzhTWo#J#-;c&Uom?a++iI>)J`lHRcH`6Sum)m( z_r$_$n*QeFIgrAuWakwuarmU7OX-|nYl*g#)3vET^y4k{aWe_E6X7``N2~FZ^%5lq zVj3VGCC6{$wO`N;w3=(LVD!xp{A6bqodZ?GCx=7&uH)*|yu7>xU8d^;j!j<)6>@yt zxqivU?Ef$+p2LKb5am2$X^AD4Fs@QB(d93AwU07JUaH?Dur(RR#>1q6n;DsRw6u}o zjVNN50G~d!ME^}%uVbSAbEUk$eFQ5QNg{HUY}xio%KgoBEG#iR^S^QCDiLWcaX zFJFq}zCzb~?{DNgb7vtl(khC?pnk-Z-wMW>p^&$dqCvGp235di6Q<+j`Xu3zS_1=~ zl4KUcP5qmr_7}t+_Qc?;?q`_-@3O>E$}EPdS+6BT#^nC;Tb&EcY93LKY^BR+;r;!J zO5xV(d_hL8ClQ4G8nFC;>jInZ7#S|w#%-O(#mSX)yqNza2g+Bq2BJe5JU*M%YZfE| zUvWGm+GPChsi;9Vgn>KJ>H#Oz#9kp@dz~tJfvsIy|Ks)0$3HI8(vVS!1C)fXB$?ET zwJP4u3Nu=V)WA~zbwlOPf)uHTk^Mb(qv(F!21UVRLAyCVR%2>1pUj_04_8lI(sK8C zxYp6w)^jGVs@-@`mJw6V7TMC3dN^0mB=C-g0I$9{;g8d7D-6qrfyMvpVyI$f`%0$^ z_Fqex<0SKR_*E5b+7A>trx9qd$bZuP^q1bldBPxv(Jx%{zCD}NM(c{0oB3(j2Eey@ zjy_-S)vWvzB8i5&ff(Pu4DY+TYDZkk4(iG19I**sQK1S>t6Mh?mHw^aZ$X&j&1Kpop$L9E?9ng?zldnz+i6pWI`afIlPZxj>>=EC;@Ay@zu~(>-jjpbU;8tr75luKCMvwI z7YQeUNxiU}K&bw`%fyNMY|KQ$!(Kqj`ebwo_i>25fo&Ixid8ymbA2fzc^& z{AB}bD&7TxyAm;VJs12GShNxbC9A}Jaq$@W)|2E4^pFzHes!}UyO{}I z1CA%mulyQgn=)LyoWTyv7CKU1yVE_*_NhabvSKq=TNCAnHq6~%3%O$U(7M9350SWN zxE|)1YNu}dFRg5VHQ=|9qk8Pgs;lPY#i_px=Q__OW|+$X!PR2K%MN#10~wd$%w<2@ zpLX_SGX%ql;V4WPzrFKZsNc_NK=G!xOd6y@MN(<3Xfw3(PGHlU^p@NNF*$T zN~Mj!i=uzX#m@;By|iHExKQfF)mm-Z)Hpo;!gVW6;c1uKu zJH}_Nie{2*?GCQxXg_RR!9}4CN)R){6kAws)$3nA!%Vq2i(b7Ng2HfRr|P>Zicxgg zd$c%NsfD)u3e=8%7J{F>*p$}=dFf2pwdXU|NKzo=Kwfk7owKY?B1cc_{K{7&grdGh z32X0gayUu+W=?8hT;tOh<57QY?25GfU8r_b&?;(iUz=Unvn*?hf2k7JFH=YB6dqVxmbG?BbZk-C0G#O?cR_~BQ~(<!bv&HN z|KMV`VsL`X?@$(uD^@GkRwr}r=S+W%Lsj?w!QC{;w*U_Z#uR zRa0=1877?ToALMP{$k6~?_8QzGOFxwt`p~a#~zcG(-AqY=UL1P@QE7Nor&ds?!ma6 zA|!n{9&W{o;Mw-LoP5SGH4|4qk61x9T3T;kS(UxJV?j>n#N~&9x10s{E$x3zu|ecI zzEoJ7c_|HPAErlk@P&XB4V=f{^POc>Q3UV;o}Pmj2&8ekADd`pf2%j73Ug5bC&a+7 zBudSsrFVu$>5J_PA-r!RF!s~jVu?mdgXToIKZ*Q0=)H>lqQiOST4vtAHel?r^D3rh zY+INqQYqM1*zG-`033|?JX=ZM1FL)o8CwyIvr(4+QLmEn+L~aKx84ANX9-FTZr&Rrw>toe0FT|*cyEvs)>de_5?A(+yvhXIi!4MOKr#-`K*>1*qyL`)Ssk-(j! zpi1h2SBL18R^#hZJDHIvkVOIv1YY>Qb0&fOKhG> zMd^Q77`i-9DmCD7Mvf>_SOX`}6p~-X7-Mvxzy50EwvRNxtFM}M&SmcQrc2Yxv1EZQ z#|;jGWw5$eBw#-tC>bBr>b2U;;VG+eDF&WXFAh`3KYf^a z9Cp${Bl~&K2NyoULK&`9Wc%8`PuH6GomOQY+#*&QoO387b=;XK4g|;@ATqPpbHP9RA=?c!wbA!cMwS(hW7?`u!0^_~S6tVe=dXPGuWGJ&4WT1`Kkz0W@4Xn2 z8$=L72nkLX1gOJFxw5w~Ti{NUlqnrsFV8iQ8r{1V7v?hd z`GKgbKGZ@9G)i4YYt~yj_}BIPZCb@iy~6PUEVvmOy!r4qM((-9U^x}sT=}3j(*wm( zG6|{peG5{@T*=Ej`LS2d3KZ3kiFz_6eNst7w|DcbCrgBNdyLAU&Su-RhBiM26GUcm zm#F4laBG8X2)~DyL$wRq^D(q%kXxE*UMu(_dvo$1QQbjo6u;!n+y#Eo`;n%v+&yT` zVZn~nqStr_MCZfRwmOSu>Oh85pqd6l=HzMW-bXo5@Z&Bnea4q^rw$1;kP0pVHiJ3u z2so$p*|)^O7;+}w@!K6Q+Khkkrlj9=erT3aj}7C0Y8)z*Yd?=ah@Css@ffz8POG_$ z&xr;^!?kjmqhbLkJ>of`$9){bLV4e;NTWn!KNP z^9p6lVTK!dW+tl?6U}Q?J8+FU>SXXaugmk7SeMk%m2gh^w#LC|Mk-fHttq6qV=#4SK8wV{n`Ts6^E%WB1CJUSo% z*h(;CB*%C`uNdCIN5ZP4lghW1Mn7SrIvzp8JrAdbdpu?9VR$qX3zbWM;1>k<3sM!n zuectC0Vf&}Dg!xAB3pR>F#Bw0ahcwyZFw9t(TmKM=m~0cbtxj@32)`Zs;)C6)>O6} zli=Il@>oKtXSHZw!)*G&5&wyUQzwOX0_Af8*P)|Hz=dM70vtCWCE?D#-1JZ5@IvLz z<0noy=WUUrFPD?tqe3i8W&6symn2!xW| zSA*zK2F`=*Z!{_Ja<>CY)v|^$Rp(RFT;T@WSsu$hQfsr5Ugpy7L6@x&+U>HV;5_D_ zqn)3#XQ53ml9>a9Ksfj{p+a8KH4KkrK4%&|+C`A??V&xVHnVkh=YygrmG7qq5dFK&Q};MW0Kj|qx`AlaR~hX9#j zH9e9yn;=rS!53VF(YsWFIpblrHB^Y9_o-g?Ho|4SMGQxOFCl`7&9KAzg~jSg+gVw9A&qoyx9^(Y zqGP5>tjS#s%@{l-?I>RAuYT~EUs}OFH0dED)Up$O5_BJRD-M}`F7v}Y=Gp5jPt#r* zJWNs^d3XDfmHi-D&>CEgu#n+$hU0O_Ri@n<*~b0g5R^4DD9ZqnE;?FXZm;Cg0s?ZA zn8s8qwp~mfXWO)a*yK$24f07`CG%MC(BgXHiT5+i^5OuW;z<0urn`ST1vEWQYrQ?R zk_QV-Rd(zxH|4++39x`3PKwVH`_(}L(Jy>O{_byWemp>U{{Hh6fbQ|sl2Ckw{?AmR zAvV-Qv+lpS@fb4|eW$7jDk5-n?dN;mP6AsSfkO~lSc=a1BKo5pX)>&wfVYKefw^)? z%6b@s3%)+!QU40wya@YSmgQ+t!xk7zODneJd%G8c4pzqbszLyu=lJorQ*JvpXqPxFR7c>%r;rmDhzTpukE;zRi2?JClReQdB3R2?& zXsIlezl+fR0|4j{zbUPSzIx7UJC+}FFynm}yPBKcDgDgXXu|=Nr`M`q_Vmt&JFRuM zM(4z?A&FCk5wZ`Ef$jNo(I!9PBb|^><-|3oEXI@cL77Qo;4P98=-gnfXUA=9GhV1} zp=;7;eCB}4MptLu^trC-{99`@;86aBZ|6rvWqYq)EZ{2B{?3KoP8t5oVLsaAb94@Q z>6eYPPm&#>FZEiG^Au7DY`~iv_u>%J8Qiv>qv~0^*oqWb?S0){TCpmn>qn3GnKF2M zTEY)QmmZoP6AV2P5R(l)BWgy;#RrYWjPPjfKW{U;J{_wvt6?o}SM~qE7}vEu`~LAT z%0PlDW%n=}8zrB^hfS)KSC*aA8tYgUoIr^Ld>~`S6Q1^xg0FxiCtL>mp-i75uoN0fuqgvuQ;6E0rWBy# za*B;3vWvn){_f92Y^8=#+*3V>1)$1W!6M~BK3`~)t#6IpTPffj2*m(T!8c# zkH950|DQF@+En8}&MCU?&8qSXzF*@PoOy)?EzM*|XED{%E*Zj}tBVY5HDX-95D@t2 z?qlgv+D-8?*y7te{O5Q;p9E}~T($B*B*(+1en@8Oe^Pj(;Bj#TC_aFth}sUl@Xq$m z$K5i!`Fbv4vz2iTgLrRx3Q}zRrJm+vdxj@R4yafjZ}oJwnQT>eL}MTBJ(JA(Wc|-W zrhbY6FvChLWH&?ToGZijyfYhYS}4i z@U5cGd^@78od8DajL{$d=g7}oA#MjC=3BCn&i)<3@Zu#c1dm#dcdy zf%g0=_4&%vAbM({qWNdLdH3y7nEvRvm#`uct1*T(^W8h6dfU{mnZc~3ftZ@G<(P`Q z+**P>S?L}Z7<>t`oF`Efw?!wIvrRUV8_Y|VC|4j$GV+|;tlz=K%EgIPo(>-B>q%{X zsFlk~Cd{Z8Eq~lm-4Z+@B@vNs8}J+}nq@L@rWYbh^4yATuVx$HHMndViW~8u6;S`T zJEUL|-1{1u1Y?yG_V-~a;I9p; z4L1#acT1ONabMU?5YFek(U%O#+&ZePb_V&uhiCL_~_!)sT0W0{6 zUki-3P|J?$^Pi(rVe@KN6U%|80n+J68}W8O=g)uh_9~1JE3O+K%@9LPLI;Y6cOH9DK5=mu~MJONXuj6qR6~!J0QYIoR8l9>jw2p@X);`V#U4LM47|PaaJ{&Y}UF1uBWVO~}e})dBpFULlv$RTj zZUpelby81bTj*g-&$A*8P&wVG7pgr^`s$#AC^|Z+X~arj+ztx1!2R$k$=|-(NfB2@wR1z*L-)&-yp+oMpVA+tyqbsOEb<|@v+HwPjX|7D)-x9Z=L zhk-f>Pns?|FnPmjG6iL%4hw!{jPh8QZKJE3idwKg4FN7}7Fn!PZwTuaeQcvx>yU5l ze(c;%>96a{e)hV%GEcfGd(-$@HK&|M&8#x7a@ff~Gv*-`i8f;|KvQny!d(vfItZn< zMiNgK_r^0PknomkCw+w|6-I+cn&QYIz-*N@{l)a(v(iG#XI?ezScu`*-nx(th+ z$Gn;qW)bn0@LuJu5yI8bhs-gy|6`aQZxl<){_y!r(Go-Qy8H|r>$qvNCI`s$B znmp+qC>pSb1RT(W*n=+W?P`gZ-k9X^K0g9`ZIJWAv?zAx@Jg%9C_r9@3q!nSREO-i zLV2#rrDqWTikQ4v6joQLt*C&#bHbCFSn(_4N&h!578~ z_k$eBJJrBdXwXkvF}$fKyTvVsVljBRGZum+=gf)dX#4sYX>}@9l4BXgsH5G*T@z9X zqznn8dnFgMT!f4b0gB=0rgY$cHuJ!Hjv0DIQ^m*)0x>^T(U_Gf*Tw-E`f8i$Y)poV zTtCM+(&*xvmH<=i%2Ldb}pgX?%1iQD`1{9XG(FUdy%u6?-&h zSPH)Xo!3a!dp59<)mlFwVV&n<=zisG&% z=^{OsKYe=t3F)A)*m9*|$|AB5r;8=i(5?lXkvMey!rNgOY{LBP!-9HMB+RT zQ%e(alv_CO*^JF~esWJ3?^LcgMN-<|m||RR^IMTBDN)3`8GzBhL`W+9bcq2b13c0f zDdQJctX^vJgiZJ1$5scn)@vIPRnf8b z2^I1+qEc@bs;6A29%`(X6!^9LDSd#A&O~on{f-N@mzqgS8)Rq}EyyjQf#ld{^gd7N=eojTy+n&uBE-mpZ zihHe}lY~l7~*<&G^p# z!s3|zq(l;pRgQ53qMtA3oR#`{IpxI3H@4z|t*E?$M_hR#Gw&FT7kSF;&n0q!iQT=7 zgt!-|t)H2enV;rn8AmkV^Eu{A#l4Ia z&^%91U^q&e(3hjf;xyCeNRk1ESt!dRfyYPj%q6wIUH@fhQkndgYJ?C{&Qj~ipa^^X z5ZaCKaW~EK`K&!57Rf8+2_ykqmKK^fDY0*y-#3vxsF>< ze)1tGLnm!iQ&xr|x^hs-^eQ?Yux#OXyX>*)l%N*iY1a%1q5UQW5p?!SW4^ zbD`^Kj0R+t{dtz-&7Iw)LwsFFP3E%{v}q1zDL*I9R*8?9)(zN-=N&HxOW=TgH}>yy z6t9@b;UfcjeBdf1mrMRxp()^}Ns`W`Xpfslx<=A39?SU09x1@g%!lbY);uY96{PCu z`C3b9f89;YQt^e?Fxq+W4R7I4VFKYkb7|wTx%dywbLooqw2M`*>4q}$K6)RR(#wZ| zL44@?mwzFGW{wdX1avzOP@*|0L7$ z)|9E?sh0uQFHoAAg}8I|<##T0-k-L#M2=YWotW*#CRr~Kmg=yAv~4`?9U)B;anDRP z(=|l_JAI4(n`zj1W@w+J@A0e9)3yUnI%3pkez+5*2JC%~iC9vFKDE=Z3<6f|V5ky} zCrrmFD%(Wyx!GuGaag6F)Ug~83DcQ z4g&HW4ptOuvoMIRs6w1`8=3vtVxST0_@2U0@jMXtwiG3D7hMH)Nu0(o!_f+JCHIq) z#bBbL-vP-=*|K9|0vcviD_v0u?C1kgrg(b&aKhaJ;4tLguQN59Ox#TO#?0cAKPHB^4#oDmp(~+M z8Y3FFq$!oGez1U;+g}LQyn=?)(F2*cF;j_@+>E@ml4@^W+0ALray}mju6aa3-G=U4 zd+m#YQ5g|%_}sMvYKkyN@S~CX^vqi7MgQ0cv8K0+$NV1U_mGn$^2b%JvKlw(ikp6zPAqlPa`Jd6e;;=_U>GJsD zQh5=6*vgLvU3*Ul1Rg{V&s)1gOt988^?ep2u(kMQ18$TVCLbr0*(j(7k7BsR%z0kS zKb+Dx91>B@#Qug5&6xA{Kn17a^=U2;_<4=Lapwc z#7!f(oPcyH-V6Q*t%fDGQH;zStw5i+`RGC9^BZp&WcSBs$zFp%8zaf^vV+II*85a>EH>pGsIwp*O-$zr3tx11U{0V zn(sbIW59Bn;n9%9qn;-Ld)@K0Gt$^%9i!YOFB+Be&wfCCur8+#o}n2XbjwD#+$U|N zb2zZ-7>fzFqvej}x{Y+Xt;;gK4hFlC9JrQyDRj9qa?v5K%y+X8>CXwtIO8JD%DO1z zt|hyn+G&zPi*jw(==(D(Ko{#l{16Sy`x@=4`R)pyw{2mIqnfl>j~Bk=HW7nQ9R6+l z?@yk%Ou$B#keB14Em+K3Onjy&jz%S;(Y@0(Th*|1Fn`FGi+y=eF3dc>_ODs^%)D*x zvceI|jjTk8*g-l;$nB8mVf}`Pk%uV2Bon<|!C-G(x;&_5A;J4ED900pJ?oA6hq_~E z6t<%NTY#8%DTGAT&?A)}p&b13L+vAw6TQDm<#+B6K!d^UI8&zk5%qtlJNFR6D?D;V mju(Mgq+Yy}fadHy(vAE|h(j5=67)X=kKj^@k|p9FeE$b|>@&>( literal 0 HcmV?d00001 diff --git a/_static/_sphinx_javascript_frameworks_compat.js b/_static/_sphinx_javascript_frameworks_compat.js new file mode 100644 index 000000000..8549469dc --- /dev/null +++ b/_static/_sphinx_javascript_frameworks_compat.js @@ -0,0 +1,134 @@ +/* + * _sphinx_javascript_frameworks_compat.js + * ~~~~~~~~~~ + * + * Compatability shim for jQuery and underscores.js. + * + * WILL BE REMOVED IN Sphinx 6.0 + * xref RemovedInSphinx60Warning + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + + +/** + * small helper function to urldecode strings + * + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL + */ +jQuery.urldecode = function(x) { + if (!x) { + return x + } + return decodeURIComponent(x.replace(/\+/g, ' ')); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} diff --git a/_static/basic.css b/_static/basic.css new file mode 100644 index 000000000..18495ea08 --- /dev/null +++ b/_static/basic.css @@ -0,0 +1,900 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 270px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} +nav.contents, +aside.topic, +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ +nav.contents, +aside.topic, +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +nav.contents > :last-child, +aside.topic > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +nav.contents::after, +aside.topic::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} +aside.footnote > span, +div.citation > span { + float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { + padding-right: 0.5em; +} +aside.footnote > p { + margin-left: 2em; +} +div.citation > p { + margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { + margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/_static/doctools.js b/_static/doctools.js new file mode 100644 index 000000000..c3db08d1c --- /dev/null +++ b/_static/doctools.js @@ -0,0 +1,264 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Base JavaScript utilities for all Sphinx HTML documentation. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * highlight a given string on a node by wrapping it in + * span elements with the given class name. + */ +const _highlight = (node, addItems, text, className) => { + if (node.nodeType === Node.TEXT_NODE) { + const val = node.nodeValue; + const parent = node.parentNode; + const pos = val.toLowerCase().indexOf(text); + if ( + pos >= 0 && + !parent.classList.contains(className) && + !parent.classList.contains("nohighlight") + ) { + let span; + + const closestNode = parent.closest("body, svg, foreignObject"); + const isInSVG = closestNode && closestNode.matches("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.classList.add(className); + } + + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + parent.insertBefore( + span, + parent.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling + ) + ); + node.nodeValue = val.substr(0, pos); + + if (isInSVG) { + const rect = document.createElementNS( + "http://www.w3.org/2000/svg", + "rect" + ); + const bbox = parent.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute("class", className); + addItems.push({ parent: parent, target: rect }); + } + } + } else if (node.matches && !node.matches("button, select, textarea")) { + node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); + } +}; +const _highlightText = (thisNode, text, className) => { + let addItems = []; + _highlight(thisNode, addItems, text, className); + addItems.forEach((obj) => + obj.parent.insertAdjacentElement("beforebegin", obj.target) + ); +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.highlightSearchWords(); + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords: () => { + const highlight = + new URLSearchParams(window.location.search).get("highlight") || ""; + const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); + if (terms.length === 0) return; // nothing to do + + // There should never be more than one element matching "div.body" + const divBody = document.querySelectorAll("div.body"); + const body = divBody.length ? divBody[0] : document.querySelector("body"); + window.setTimeout(() => { + terms.forEach((term) => _highlightText(body, term, "highlighted")); + }, 10); + + const searchBox = document.getElementById("searchbox"); + if (searchBox === null) return; + searchBox.appendChild( + document + .createRange() + .createContextualFragment( + '" + ) + ); + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords: () => { + document + .querySelectorAll("#searchbox .highlight-link") + .forEach((el) => el.remove()); + document + .querySelectorAll("span.highlighted") + .forEach((el) => el.classList.remove("highlighted")); + const url = new URL(window.location); + url.searchParams.delete("highlight"); + window.history.replaceState({}, "", url); + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + const blacklistedElements = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", + ]); + document.addEventListener("keydown", (event) => { + if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements + if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + case "Escape": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.hideSearchWords(); + event.preventDefault(); + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/_static/documentation_options.js b/_static/documentation_options.js new file mode 100644 index 000000000..902bb3358 --- /dev/null +++ b/_static/documentation_options.js @@ -0,0 +1,14 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: true, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/_static/file.png b/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..a858a410e4faa62ce324d814e4b816fff83a6fb3 GIT binary patch literal 286 zcmV+(0pb3MP)s`hMrGg#P~ix$^RISR_I47Y|r1 z_CyJOe}D1){SET-^Amu_i71Lt6eYfZjRyw@I6OQAIXXHDfiX^GbOlHe=Ae4>0m)d(f|Me07*qoM6N<$f}vM^LjV8( literal 0 HcmV?d00001 diff --git a/_static/images/DataFusion-Logo-Background-White.png b/_static/images/DataFusion-Logo-Background-White.png new file mode 100644 index 0000000000000000000000000000000000000000..023c2373fc4949037ca1e11bfb72e2e469a0bda7 GIT binary patch literal 12401 zcmX9_1vp;s8{USQHZvU`j&3$RZG4(B&2%>#Gfa0Kd^*R}Fx|1~nC_nL&Z+ zujfGBv{^-#oEVzuM>Z3=G;n2^y&z?e`!yY(m(6^^Xa?+BI z?jOD~oAP2GJ>sB)ONyzv&FrP2&8d&xbt(|=tFt9AOh!|W$bi{ga^IOLGj^KO zDlTTOcW-yAyxLC4hAPYlQ{AeYJ+Jq@c8Y60{z-mqeZBrC#hXyv1|DQPoGmqbcV5%- zvLfx%g8P*hh4oCOrQqk&&6wEmh{fN7&UHtfq|SRgJWi|KXs@!~s_o`U@?+;3K9%zQ+x#XMe%5@w&kYbGu{WKnh8UB( z42do0Wq5HZMTmU_O^UUv+6fK5Ja^S8Hwj7PG!7(sZ56jUUX)O~o^0)3g~@!jBrbFN z@9YH%3W^V3&&7fV`>SdRY<|f*`#Pt!_VhO%U-%ckE2OlCzGT+5#}U5#VDZJi`N~Xp z@%HZez_Y>5Jl)+a#JcnRbW|xNuM;K+FE?xpMBB^E&zI>>6V#Y<>SJ9VlE7gVLqw4B zBK%{lURjPvMsBpfP{PL%Iuy0|(iVt?(H?cU9L65l`O0;BOf=kbq0v2y^UeLu$#O7F zWc2-Ql=qDUJ^?{8eOGI=3H4O1<2T*Ta+ZnYOS!l{;A_ zA_7m*L0VSr%4csh^HQBcQ)7S^EEqk_&NpG~&3va9&>aVMo?Wg)k%Hl^OTYXiR?1|X zRu@CV!ldGv)K?du71>OecL=?C8VEG`x~(bj&f|Yxg8eZu>WyQ}GLCITqjwPe+s?u( zBC;55LbN?u%HHL)U69wiIP|m(?vVOU~9Xto~9SoHR`kf-#z%%bWM5xe|F(Z@X~^lo`k=J#}x-EYRH(1TwaULCJ3FZtmhy7*VZ zxj|Ku(^>nL0Q4-Xb{XXnlZ@-CNquXXV{c$XTq_ZlBt%Z<~TIh|rE5y{S*i#g+T7?K3& z#j?Uyze&BQ^h3MKiZdbL_WA-RB4qi}hQ7yfr8A&YtnDlMk0(rO`7jaZ)fnks`C169-2(30SG-FOHLttG_bqxL?1+Hkr$0J5z}ku~jiB+@}rRKyM-LxZ-`g zW1u3^@cC?8SZR>q5UCKHSsZ_j5PUkqrOr_qWic{`P3Ecl6ne*>0ZTTi&0 zk^fuR;}n5H`Txr>+8g*5dgwED`|j9lmwclW19YeYg+2epDgW)^0dH1gmBhR5Tkfw# zG#1g=yXk4tw|&1L`Gr%#yN40)Mk5ZIuS@))HJRS-Q-(oTC4)q2VB=o(>}pxv(<2L? zKn!ATVNKoMrcIbO! z_9rG;P+i45s={l`6~c~0ZU<3Av; zNW?%W06qP~!UO}M^@m$|8G+~5zcJXmQOEiMO_Jv)5?Rb!)uI7ai;qoAXYTr?I&MOf zwql>FeSAI859TW!jS9{25#_-ERWjt(vxHP3P(;7UK`ZEMuJ*h>&nok}IqD*o1_4YP z=|06Y0n2IgTC2L*iB20N?bIskNgl%A(I%Gu7)w01GitM5ZQMn?a}Ivhw``g}VFk@X zJ#=uc>7!t+S`_qybFTz8J*)JRXS$!}T^+X&k>r9CCUq4)fC@^DHBFM`hqX+MQ?1#R z`^|4rm5~kai?wIW^Tl92ho6<_xrG~jcTYB_%D&leD5u)TyS>cSDCMKV+Lc`1LiX4# z>ryRDw2wvxB_rmlkv{CqH`Gkr&ISy5@ljAuSVvvQYv}h7fvKFvZ#Oled{aN+IeKRD zNzJ`LLmkg}|6`fGB5#?s3|5(SYk|>5>uARUF}dW?euU*wrepD~YBQJ2I}q5vylA<9 zb1G^C%XQwu)qnPfRD;*+{`O)Bv({?7u(=RH9}7VBZao_2C}c!nCw4v|w-K8R`xL52 z!ydCrRJZ3<>T`3E=_jdGV>gevLImPFoqug?(VMgNm>Dw7eDN1LZb~O=Q`VFE+FI4r*r-`lai}^O!wmcW<$i$TVw6iGWt7! zhK5bVA$tBOX!6hV{z-*sXvGQjsrEGFx-J`#0J0ZvrKT1+0u!@tX8*zQ4Q9IvFl&pSx0= zhn}<1hJc>Kz&QH42%9AFCkH?EDhlD$;PpV7pr^t@u0KG9wD4${2anx?2dcpDb>033 zaFyh4*VjVmrk!{3%gSsfd&6#dG~F7Mt38`U2j5)iZZcvm>1u~Py~sel?o53Y-Zg5aR|dLiUWGY%tL&uVzZlQ z2hB4hG};8MxE4*s5Je$Z_Qy$9HQzhTWo#J#-;c&Uom?a++iI>)J`lHRcH`6Sum)m( z_r$_$n*QeFIgrAuWakwuarmU7OX-|nYl*g#)3vET^y4k{aWe_E6X7``N2~FZ^%5lq zVj3VGCC6{$wO`N;w3=(LVD!xp{A6bqodZ?GCx=7&uH)*|yu7>xU8d^;j!j<)6>@yt zxqivU?Ef$+p2LKb5am2$X^AD4Fs@QB(d93AwU07JUaH?Dur(RR#>1q6n;DsRw6u}o zjVNN50G~d!ME^}%uVbSAbEUk$eFQ5QNg{HUY}xio%KgoBEG#iR^S^QCDiLWcaX zFJFq}zCzb~?{DNgb7vtl(khC?pnk-Z-wMW>p^&$dqCvGp235di6Q<+j`Xu3zS_1=~ zl4KUcP5qmr_7}t+_Qc?;?q`_-@3O>E$}EPdS+6BT#^nC;Tb&EcY93LKY^BR+;r;!J zO5xV(d_hL8ClQ4G8nFC;>jInZ7#S|w#%-O(#mSX)yqNza2g+Bq2BJe5JU*M%YZfE| zUvWGm+GPChsi;9Vgn>KJ>H#Oz#9kp@dz~tJfvsIy|Ks)0$3HI8(vVS!1C)fXB$?ET zwJP4u3Nu=V)WA~zbwlOPf)uHTk^Mb(qv(F!21UVRLAyCVR%2>1pUj_04_8lI(sK8C zxYp6w)^jGVs@-@`mJw6V7TMC3dN^0mB=C-g0I$9{;g8d7D-6qrfyMvpVyI$f`%0$^ z_Fqex<0SKR_*E5b+7A>trx9qd$bZuP^q1bldBPxv(Jx%{zCD}NM(c{0oB3(j2Eey@ zjy_-S)vWvzB8i5&ff(Pu4DY+TYDZkk4(iG19I**sQK1S>t6Mh?mHw^aZ$X&j&1Kpop$L9E?9ng?zldnz+i6pWI`afIlPZxj>>=EC;@Ay@zu~(>-jjpbU;8tr75luKCMvwI z7YQeUNxiU}K&bw`%fyNMY|KQ$!(Kqj`ebwo_i>25fo&Ixid8ymbA2fzc^& z{AB}bD&7TxyAm;VJs12GShNxbC9A}Jaq$@W)|2E4^pFzHes!}UyO{}I z1CA%mulyQgn=)LyoWTyv7CKU1yVE_*_NhabvSKq=TNCAnHq6~%3%O$U(7M9350SWN zxE|)1YNu}dFRg5VHQ=|9qk8Pgs;lPY#i_px=Q__OW|+$X!PR2K%MN#10~wd$%w<2@ zpLX_SGX%ql;V4WPzrFKZsNc_NK=G!xOd6y@MN(<3Xfw3(PGHlU^p@NNF*$T zN~Mj!i=uzX#m@;By|iHExKQfF)mm-Z)Hpo;!gVW6;c1uKu zJH}_Nie{2*?GCQxXg_RR!9}4CN)R){6kAws)$3nA!%Vq2i(b7Ng2HfRr|P>Zicxgg zd$c%NsfD)u3e=8%7J{F>*p$}=dFf2pwdXU|NKzo=Kwfk7owKY?B1cc_{K{7&grdGh z32X0gayUu+W=?8hT;tOh<57QY?25GfU8r_b&?;(iUz=Unvn*?hf2k7JFH=YB6dqVxmbG?BbZk-C0G#O?cR_~BQ~(<!bv&HN z|KMV`VsL`X?@$(uD^@GkRwr}r=S+W%Lsj?w!QC{;w*U_Z#uR zRa0=1877?ToALMP{$k6~?_8QzGOFxwt`p~a#~zcG(-AqY=UL1P@QE7Nor&ds?!ma6 zA|!n{9&W{o;Mw-LoP5SGH4|4qk61x9T3T;kS(UxJV?j>n#N~&9x10s{E$x3zu|ecI zzEoJ7c_|HPAErlk@P&XB4V=f{^POc>Q3UV;o}Pmj2&8ekADd`pf2%j73Ug5bC&a+7 zBudSsrFVu$>5J_PA-r!RF!s~jVu?mdgXToIKZ*Q0=)H>lqQiOST4vtAHel?r^D3rh zY+INqQYqM1*zG-`033|?JX=ZM1FL)o8CwyIvr(4+QLmEn+L~aKx84ANX9-FTZr&Rrw>toe0FT|*cyEvs)>de_5?A(+yvhXIi!4MOKr#-`K*>1*qyL`)Ssk-(j! zpi1h2SBL18R^#hZJDHIvkVOIv1YY>Qb0&fOKhG> zMd^Q77`i-9DmCD7Mvf>_SOX`}6p~-X7-Mvxzy50EwvRNxtFM}M&SmcQrc2Yxv1EZQ z#|;jGWw5$eBw#-tC>bBr>b2U;;VG+eDF&WXFAh`3KYf^a z9Cp${Bl~&K2NyoULK&`9Wc%8`PuH6GomOQY+#*&QoO387b=;XK4g|;@ATqPpbHP9RA=?c!wbA!cMwS(hW7?`u!0^_~S6tVe=dXPGuWGJ&4WT1`Kkz0W@4Xn2 z8$=L72nkLX1gOJFxw5w~Ti{NUlqnrsFV8iQ8r{1V7v?hd z`GKgbKGZ@9G)i4YYt~yj_}BIPZCb@iy~6PUEVvmOy!r4qM((-9U^x}sT=}3j(*wm( zG6|{peG5{@T*=Ej`LS2d3KZ3kiFz_6eNst7w|DcbCrgBNdyLAU&Su-RhBiM26GUcm zm#F4laBG8X2)~DyL$wRq^D(q%kXxE*UMu(_dvo$1QQbjo6u;!n+y#Eo`;n%v+&yT` zVZn~nqStr_MCZfRwmOSu>Oh85pqd6l=HzMW-bXo5@Z&Bnea4q^rw$1;kP0pVHiJ3u z2so$p*|)^O7;+}w@!K6Q+Khkkrlj9=erT3aj}7C0Y8)z*Yd?=ah@Css@ffz8POG_$ z&xr;^!?kjmqhbLkJ>of`$9){bLV4e;NTWn!KNP z^9p6lVTK!dW+tl?6U}Q?J8+FU>SXXaugmk7SeMk%m2gh^w#LC|Mk-fHttq6qV=#4SK8wV{n`Ts6^E%WB1CJUSo% z*h(;CB*%C`uNdCIN5ZP4lghW1Mn7SrIvzp8JrAdbdpu?9VR$qX3zbWM;1>k<3sM!n zuectC0Vf&}Dg!xAB3pR>F#Bw0ahcwyZFw9t(TmKM=m~0cbtxj@32)`Zs;)C6)>O6} zli=Il@>oKtXSHZw!)*G&5&wyUQzwOX0_Af8*P)|Hz=dM70vtCWCE?D#-1JZ5@IvLz z<0noy=WUUrFPD?tqe3i8W&6symn2!xW| zSA*zK2F`=*Z!{_Ja<>CY)v|^$Rp(RFT;T@WSsu$hQfsr5Ugpy7L6@x&+U>HV;5_D_ zqn)3#XQ53ml9>a9Ksfj{p+a8KH4KkrK4%&|+C`A??V&xVHnVkh=YygrmG7qq5dFK&Q};MW0Kj|qx`AlaR~hX9#j zH9e9yn;=rS!53VF(YsWFIpblrHB^Y9_o-g?Ho|4SMGQxOFCl`7&9KAzg~jSg+gVw9A&qoyx9^(Y zqGP5>tjS#s%@{l-?I>RAuYT~EUs}OFH0dED)Up$O5_BJRD-M}`F7v}Y=Gp5jPt#r* zJWNs^d3XDfmHi-D&>CEgu#n+$hU0O_Ri@n<*~b0g5R^4DD9ZqnE;?FXZm;Cg0s?ZA zn8s8qwp~mfXWO)a*yK$24f07`CG%MC(BgXHiT5+i^5OuW;z<0urn`ST1vEWQYrQ?R zk_QV-Rd(zxH|4++39x`3PKwVH`_(}L(Jy>O{_byWemp>U{{Hh6fbQ|sl2Ckw{?AmR zAvV-Qv+lpS@fb4|eW$7jDk5-n?dN;mP6AsSfkO~lSc=a1BKo5pX)>&wfVYKefw^)? z%6b@s3%)+!QU40wya@YSmgQ+t!xk7zODneJd%G8c4pzqbszLyu=lJorQ*JvpXqPxFR7c>%r;rmDhzTpukE;zRi2?JClReQdB3R2?& zXsIlezl+fR0|4j{zbUPSzIx7UJC+}FFynm}yPBKcDgDgXXu|=Nr`M`q_Vmt&JFRuM zM(4z?A&FCk5wZ`Ef$jNo(I!9PBb|^><-|3oEXI@cL77Qo;4P98=-gnfXUA=9GhV1} zp=;7;eCB}4MptLu^trC-{99`@;86aBZ|6rvWqYq)EZ{2B{?3KoP8t5oVLsaAb94@Q z>6eYPPm&#>FZEiG^Au7DY`~iv_u>%J8Qiv>qv~0^*oqWb?S0){TCpmn>qn3GnKF2M zTEY)QmmZoP6AV2P5R(l)BWgy;#RrYWjPPjfKW{U;J{_wvt6?o}SM~qE7}vEu`~LAT z%0PlDW%n=}8zrB^hfS)KSC*aA8tYgUoIr^Ld>~`S6Q1^xg0FxiCtL>mp-i75uoN0fuqgvuQ;6E0rWBy# za*B;3vWvn){_f92Y^8=#+*3V>1)$1W!6M~BK3`~)t#6IpTPffj2*m(T!8c# zkH950|DQF@+En8}&MCU?&8qSXzF*@PoOy)?EzM*|XED{%E*Zj}tBVY5HDX-95D@t2 z?qlgv+D-8?*y7te{O5Q;p9E}~T($B*B*(+1en@8Oe^Pj(;Bj#TC_aFth}sUl@Xq$m z$K5i!`Fbv4vz2iTgLrRx3Q}zRrJm+vdxj@R4yafjZ}oJwnQT>eL}MTBJ(JA(Wc|-W zrhbY6FvChLWH&?ToGZijyfYhYS}4i z@U5cGd^@78od8DajL{$d=g7}oA#MjC=3BCn&i)<3@Zu#c1dm#dcdy zf%g0=_4&%vAbM({qWNdLdH3y7nEvRvm#`uct1*T(^W8h6dfU{mnZc~3ftZ@G<(P`Q z+**P>S?L}Z7<>t`oF`Efw?!wIvrRUV8_Y|VC|4j$GV+|;tlz=K%EgIPo(>-B>q%{X zsFlk~Cd{Z8Eq~lm-4Z+@B@vNs8}J+}nq@L@rWYbh^4yATuVx$HHMndViW~8u6;S`T zJEUL|-1{1u1Y?yG_V-~a;I9p; z4L1#acT1ONabMU?5YFek(U%O#+&ZePb_V&uhiCL_~_!)sT0W0{6 zUki-3P|J?$^Pi(rVe@KN6U%|80n+J68}W8O=g)uh_9~1JE3O+K%@9LPLI;Y6cOH9DK5=mu~MJONXuj6qR6~!J0QYIoR8l9>jw2p@X);`V#U4LM47|PaaJ{&Y}UF1uBWVO~}e})dBpFULlv$RTj zZUpelby81bTj*g-&$A*8P&wVG7pgr^`s$#AC^|Z+X~arj+ztx1!2R$k$=|-(NfB2@wR1z*L-)&-yp+oMpVA+tyqbsOEb<|@v+HwPjX|7D)-x9Z=L zhk-f>Pns?|FnPmjG6iL%4hw!{jPh8QZKJE3idwKg4FN7}7Fn!PZwTuaeQcvx>yU5l ze(c;%>96a{e)hV%GEcfGd(-$@HK&|M&8#x7a@ff~Gv*-`i8f;|KvQny!d(vfItZn< zMiNgK_r^0PknomkCw+w|6-I+cn&QYIz-*N@{l)a(v(iG#XI?ezScu`*-nx(th+ z$Gn;qW)bn0@LuJu5yI8bhs-gy|6`aQZxl<){_y!r(Go-Qy8H|r>$qvNCI`s$B znmp+qC>pSb1RT(W*n=+W?P`gZ-k9X^K0g9`ZIJWAv?zAx@Jg%9C_r9@3q!nSREO-i zLV2#rrDqWTikQ4v6joQLt*C&#bHbCFSn(_4N&h!578~ z_k$eBJJrBdXwXkvF}$fKyTvVsVljBRGZum+=gf)dX#4sYX>}@9l4BXgsH5G*T@z9X zqznn8dnFgMT!f4b0gB=0rgY$cHuJ!Hjv0DIQ^m*)0x>^T(U_Gf*Tw-E`f8i$Y)poV zTtCM+(&*xvmH<=i%2Ldb}pgX?%1iQD`1{9XG(FUdy%u6?-&h zSPH)Xo!3a!dp59<)mlFwVV&n<=zisG&% z=^{OsKYe=t3F)A)*m9*|$|AB5r;8=i(5?lXkvMey!rNgOY{LBP!-9HMB+RT zQ%e(alv_CO*^JF~esWJ3?^LcgMN-<|m||RR^IMTBDN)3`8GzBhL`W+9bcq2b13c0f zDdQJctX^vJgiZJ1$5scn)@vIPRnf8b z2^I1+qEc@bs;6A29%`(X6!^9LDSd#A&O~on{f-N@mzqgS8)Rq}EyyjQf#ld{^gd7N=eojTy+n&uBE-mpZ zihHe}lY~l7~*<&G^p# z!s3|zq(l;pRgQ53qMtA3oR#`{IpxI3H@4z|t*E?$M_hR#Gw&FT7kSF;&n0q!iQT=7 zgt!-|t)H2enV;rn8AmkV^Eu{A#l4Ia z&^%91U^q&e(3hjf;xyCeNRk1ESt!dRfyYPj%q6wIUH@fhQkndgYJ?C{&Qj~ipa^^X z5ZaCKaW~EK`K&!57Rf8+2_ykqmKK^fDY0*y-#3vxsF>< ze)1tGLnm!iQ&xr|x^hs-^eQ?Yux#OXyX>*)l%N*iY1a%1q5UQW5p?!SW4^ zbD`^Kj0R+t{dtz-&7Iw)LwsFFP3E%{v}q1zDL*I9R*8?9)(zN-=N&HxOW=TgH}>yy z6t9@b;UfcjeBdf1mrMRxp()^}Ns`W`Xpfslx<=A39?SU09x1@g%!lbY);uY96{PCu z`C3b9f89;YQt^e?Fxq+W4R7I4VFKYkb7|wTx%dywbLooqw2M`*>4q}$K6)RR(#wZ| zL44@?mwzFGW{wdX1avzOP@*|0L7$ z)|9E?sh0uQFHoAAg}8I|<##T0-k-L#M2=YWotW*#CRr~Kmg=yAv~4`?9U)B;anDRP z(=|l_JAI4(n`zj1W@w+J@A0e9)3yUnI%3pkez+5*2JC%~iC9vFKDE=Z3<6f|V5ky} zCrrmFD%(Wyx!GuGaag6F)Ug~83DcQ z4g&HW4ptOuvoMIRs6w1`8=3vtVxST0_@2U0@jMXtwiG3D7hMH)Nu0(o!_f+JCHIq) z#bBbL-vP-=*|K9|0vcviD_v0u?C1kgrg(b&aKhaJ;4tLguQN59Ox#TO#?0cAKPHB^4#oDmp(~+M z8Y3FFq$!oGez1U;+g}LQyn=?)(F2*cF;j_@+>E@ml4@^W+0ALray}mju6aa3-G=U4 zd+m#YQ5g|%_}sMvYKkyN@S~CX^vqi7MgQ0cv8K0+$NV1U_mGn$^2b%JvKlw(ikp6zPAqlPa`Jd6e;;=_U>GJsD zQh5=6*vgLvU3*Ul1Rg{V&s)1gOt988^?ep2u(kMQ18$TVCLbr0*(j(7k7BsR%z0kS zKb+Dx91>B@#Qug5&6xA{Kn17a^=U2;_<4=Lapwc z#7!f(oPcyH-V6Q*t%fDGQH;zStw5i+`RGC9^BZp&WcSBs$zFp%8zaf^vV+II*85a>EH>pGsIwp*O-$zr3tx11U{0V zn(sbIW59Bn;n9%9qn;-Ld)@K0Gt$^%9i!YOFB+Be&wfCCur8+#o}n2XbjwD#+$U|N zb2zZ-7>fzFqvej}x{Y+Xt;;gK4hFlC9JrQyDRj9qa?v5K%y+X8>CXwtIO8JD%DO1z zt|hyn+G&zPi*jw(==(D(Ko{#l{16Sy`x@=4`R)pyw{2mIqnfl>j~Bk=HW7nQ9R6+l z?@yk%Ou$B#keB14Em+K3Onjy&jz%S;(Y@0(Th*|1Fn`FGi+y=eF3dc>_ODs^%)D*x zvceI|jjTk8*g-l;$nB8mVf}`Pk%uV2Bon<|!C-G(x;&_5A;J4ED900pJ?oA6hq_~E z6t<%NTY#8%DTGAT&?A)}p&b13L+vAw6TQDm<#+B6K!d^UI8&zk5%qtlJNFR6D?D;V mju(Mgq+Yy}fadHy(vAE|h(j5=67)X=kKj^@k|p9FeE$b|>@&>( literal 0 HcmV?d00001 diff --git a/_static/images/DataFusion-Logo-Background-White.svg b/_static/images/DataFusion-Logo-Background-White.svg new file mode 100644 index 000000000..b3bb47c5e --- /dev/null +++ b/_static/images/DataFusion-Logo-Background-White.svg @@ -0,0 +1 @@ +DataFUSION-Logo-Dark \ No newline at end of file diff --git a/_static/images/DataFusion-Logo-Dark.png b/_static/images/DataFusion-Logo-Dark.png new file mode 100644 index 0000000000000000000000000000000000000000..cc60f12a0e4f5a3bba66a01f377adda7a03c8113 GIT binary patch literal 20134 zcmXtgby$?&^Y+p$DP0RoNq5(hOQ%XIE!`<40xn2{)Y2(}AV{}#NF&{iNO!*vpYQwo zgUbuAefFF)bDx=e?wN-OEe$0+Y)Whp2!sbyme&D+kP|^5Bvnjw;C~_$F&Kb`|3$A&ev zsB8%2)q2JX8I~*m2e1rp;eN6#JI0H(i(@ek6U1Ee*Ed6Y(|VrMxGQ;*l%G?5er&k`^~c#~aC?WqY@GkSC-1ora@`itoF_*N#*{6ybr> zib=n;?Xce_9Z&A^;kI~v2Zs`j3vnZnqs-Xv-aEC#=1=0bGcn})DpnY9`cP#ds?8Pd zqsEph=Y(XZ(Vw2Bn}rgAo>3RZ_;e~`g73E&O{ju*pdNJX2vC-&iaJeU3{9bzc9n_99`NU91l)^LIhWy&scxbMu%eV3Uhz=J;0VRY0zi_ z)w2IhM%Fv3wb%zKA9kK(eBL!-`v<}$Xj7aO1X_-cC@N;?t$rVT4{p}uS0 z7jI4$6I>v7(0o=It4@GbBTzB5I3?F?)&%F8Yl0h2J7D))^U6)GF@GJbm7@PMtcl|! z1$d%f)c&8`99zvv-COZBNB_E&ty3%VabgWjuw>yMo=ZO5Z0=5;*WtNsxSjb{1o2w*aBo<(|&`Vx!Q#tz@NL|%x$&Eb_t{K zT$ZKJ7_77d{+RSGNtD9YIZS;vaesui)gG+01=L`Df^H}&Uo>1J?_tccOR@As^ru>p zYgqa9NIG2TIWeASJ!=RupL)E9O7*JBD?n^(-7gp|X$*w9_#=2EFkH$j=>VV%^1f8- zfs?x-HAnvQFH3aY zkbSDmbc2Gy&fFG`F@KC<(l*O9;dBw`zQS~Ycb$B=BXI%iy}POa6y?eY6Wcv2hY9ok z9ySjgifl+?$~IVI_Zzq|SKVc#d{jAvutla+dR5|f+S(0G&twxo;oYy9m@T?aR~e-L zwM6&HiH5Ebaob3i?(|Ii<3Y;_E6iW6M!#{vgBNi}+w(;L4@mlT z-X;%(?DaLx_O-YY##$|%G1Z|X0QZpxpPLiaKl9zjDs?>LS!e-{>sxii934t`dIR$N z!^tSgw0F4of<2QVEc@qyepNVd1l}{K8uGMhoJ73GsGKHTgI9jcu{ohOj+QY<9C4Gn z6<>!}%uNVY*4&9sC6U%lBU$av#bythrQi7xtq^E`1pKTVkRjX@eJHUpZ`sedlR;?v#l(eDOV^s}i-JNN^6ZK@ffOz3j(^1vc<$9`?)*?qfIK zESHKddqOBCFWfW|_G`r8(y%%g3%F0BXB{!1sYs`AIxMYRz;GmME;mGg3*w|c_e*H@ z#eB~_@YGcnhy*+BBYqCAVXj$~*%s;+d`Ry91No=`z*gudAB|f7F3sVe!?RuN3;n1Momw z`1Ej7JO7=CT64zvfG`(T5%<_rKp`Es=Vddi`AsS-q|aWF26Z#dJ=#jgTU8=m!^P*e z*#D*?rhqMNlW7i|fumsBT&J%IG^b~r;2nQ%?;qPdy@nPj1NVNiT*a~DiRtHw6ijdz zG@PEfSai?nvyfil2}y!FM<)*mh(lpiWV_WaS*O*nrf;7z%O~(>82fAfumT})T5y;M zinY2}w=K;s3ERwa5@3i9g06ynAJIKeJ=fy?ruJnU@G$+6+mwBqs{wz2t);FMKM=&t zKEsUMege*Up{wjROAu)Jwdv7^!oH?Rx8TTqYBv)SO7NLHBo)_fD*7@|Kp@PL*tcQ` z$3NB}QDas3sun#jEdVdP)k4pTU`N`Xa z;r=FrBZQyaaj5$Z(JqNniHTAPTW~R`2b2Z!!Molc#{{zh=RTE)^F04;9||CWk~O^k zoK|$twDVB4kx{i-Faf~!h&W7B#FjeZ0Tn)HCW+2t8ooLPM5bi39nQ|ty-^8hnHi=z zUu+SYfj;0VW^CukR*cSA$%1^3$W(qyvbBFdc0LP4$Qx!ch+WWebh?apM2mr2Ec?vI zJpd~hL<43Zbe>e`(Z!X%AO_+f*YoLU1~TVbEQaq4q8-PsmpRcEnQ>D5sJx;Fb08Do z4%&9IQ><^7ogyzYcHP#c9P3&5Hcq_r}DYO7^K()$M z8Gx=OSt)!R*PB=%wEj^9kmbh$TUXB7kh|7rA7JPfk!>L*9LM+LWM&FY(SJ=ak|#vS zZL{b+7EW%u^8Rp4?o$9KC zDtR6Jz;J({g-fb!R1PP?D;9EgPTaxrEroLLfCo;IV8at+%o;5QfK}vI z_nv_2jI=k-W++sM>D$}pNQ1AeR1it2F42Rvi`PPw2=CG`E#D}R9$1Y`HO>YCCB(SJA5Yf8QK3SF%RavmFNi#nP7ppOP=|bBa~%nPUt-B&ymOT; zb+D+g2n4tp6XLc~ragw4&&xf5-`;c1$#6hCogBy6eMeX9iOum^2ol$xpSovdbsFcc zZiNE7NA=`=ew{S#Ua;1)1wR-GgX zwu4(q-6ICY-s2KL9#dZZ&)QmWU=O{luaaDu&0KXdHyQ+Y1~8%Fp`PaBK=HC-Qr5P2 ziCeCP#*qru0Rb4YA49J~Qeq>U-6aWZO4jQbF=%tv8B6gYqf1^0pdyuL;s8H$9pPvc zW$Cg5Xkd&^Q;ZH$uo9I}z}pYKOoO_Xf9fj)S9=|GJ7ZD02MsQbs&k2m%tVHsz?!7) z^ZasqSzSSAJL~0eag2`cg%p!quMh7otLL=#U-EciK6^i<1Pt_;Fe6zv?4KQ{LNT`k zrv*Nal(JR3FfoOw?4M3Lh6;bOKF;1iN4#FWa05O(fp*56jbGnhrPC2y^iT>{8cJ{Xp;p z*cwjk9WfZt3Lo=JE2$C?`iAZtUhxL6GniUw(D8i+;8O}Fv*ma+7kWNQvWk^Q81XWU z2grw_b^DJAzj*VQhioNA1epo6D70 z8iQt52Ad(i(Lz3me;eL0JE0NHP-wuyT>6rEYKZN3*3XuR=32TygrY!btOKv_3ajTN zN~Oc|@uC8WNaYIR57|rcSDxK|sEJJZ zxrAtAX=rHf^Ra8P*RDCgnZ!7faj%;IBAR}B1qLYVN~C3g#OnnsYT7=6>v;84-Z&1r9gDbX9I*QYxoD zdqk1|MbtJUmV#Dmh{G?0CHhJYu!`xI%S6QCua~uv!VhAflFfAam3AlncZ3mYrH_ja$8iI>s4R6SO*GXF@AV;IGbo9!1wLCwEuR?oD3{< zjb!@0w<0;BkB3gMF@PyP)v(Z{%NvG1F>gQkMm|0`g-=w-W9|!K2mL$>EPiMn-ZA$I z9_etCT&zCT&La#|&g?KvTZ?1$Cgs<+xWW_r8ieXqX7NMqIZxYxe}|khRfzqBlEYcZ z+f`nRlP2I7{FJeP>gWjH6`5uyeR^66U4A4zgQXi%x^4vhRzFc5LZh`iOUJqAkPNw z8D$(40TMRbXP1XoB?=%bm5`OK3DNm6V}ZMHjY0TGS|pA#sG3BPhm>&-`AER7*u+Q@ zK=Vkm$WM!>%F@Ta*O62`p(qZ__IfK<0eoArGG>1f%Us-p3@>nObo%ReWG8!-8{a)6 ze}##%XZ6>nTVH?H&d&sAh}{6>Zsq&D|0eq+RazET$# zxvyFl*o&VUq~ejA3RE?61o%eAcz1o;b_S?ejoyz}oMKHLH2e zdusEOY(A5-2y3YkLE#2!1ST^d0)LMF=04!PWPtJ+R5~WbK`x+A2M-7Dzg|Pma7>+kUp3f4eUZxXA%Bt=!1shLzuP#s z2+}74D6YZ_$MxpgS9txldnCtjQyc?1oX{wS`!sMPg-Bi;#8Y!Zo=bFJuahCjUI>P^LopmiDiv6R~+d_8GKc+yTmjs2@pS+JBya}JrL8L2m zCnAlg3;mT!Y^S~A?EbUJEcI#;`F3u8(tIvwL$!8N;%b^zt0nq)wm`cbPGN5m7Hk#N z46CAzgaN=I$5PTDQZ0JE-u3iJu2$YD{#kvl;%W_*tvTc|Jp_#G!oeKKh>cE38sFsp zJ3Hh0{@PtTjZz8h)0XAh0e%u0zYonYv2#xI1*I&eO^zia6WEO38WPCxU zuB|gjvm@rmIEpNR>U^u4U1_xW?|G&I=5>&E{rrAkM&6`BYT}vNu$|wKBEi^(@ExsE zJtst+F4iYlA76YIDI-`86Pyf={<{9~fgjW)cQjroVMsQ}>$}s_@0|ukK7bOr&01(-ZpI3UuziXV2A_?)Oyt2mCh}{A zSX*$e(GL=)T%9g+qwfu3Lq(R=IL`gN>Zm^fCZx4F*B}|I|EvsYJeir~rQ%27QCOQ< z6w6RY_%LF_%ozY!#67q4>ygUCIlkA3j^G+c3g!p>B7ioCiKs9kbVrb)9Iv7v#@_|! zG$W&FnUZO_J6#yoc%@9eD-FjMnB3)ioj~+`r*BCWiXN|C-y;g*Ac{{HI)Yp87T!_( zey{Ez$sP0nRPc>LU8n`q8%+^~0NXzBw$jud*dQ+I-gxuqF8#3g_|SIqpxI7+TpuBt zhsfiXU#t4DqxpMQL!+h=s@(Hu%S0WOVc&(5dGjreIq`zJg!5^vKG(C|>z~tSqES{a z5Us@WtFPBvWDVeCCz$c@>dib{c`_Zk_R5mnBjoK#Tbf!MpMQSSZ(LmY8kU*wr772j~WWh9EA* z#+D!g>3i0sD5>Gb8O$JBF9#K334`!l!skP1&QQ?XTHH=oyu*}d-bMiv4I&i20MkA9 z+|7PWTkgc53w-oLZ1-k6E&teRklFZt#s+cjJ8G?1$4j%)w3Cq-q{5k5E7~MUKp2p1 zm3?&Wtk6V{+2B$i(*$FI@HZddA+Lwb|IxAHSX*;7?~mLSv3-cT4O_lt3A%T0`}CFY za=?>~4I=$;qGVKCCU^moxZlsdy*pgEN7{Zw28wLvwG8mN)(&+ymPqIsHITr@H*VN& zvIqDM=7P%!My~YD`@?rdKn$82YnB4{&aFfb@pKQrHtAr}kNe$&>}^4-u@COwXQzY? zC2mmzPui}gY_fx#uV;PspB(|A;&W9rt7C9ACL)=5+yb)Pt@Nm1`FoU`f%awRVrza< z<%BCK3nSUsal_Q@F}}@^z@vt1{7)&x(|{L9^3W6Zpwn4S?tjy5e$L0vfd@@Z^|t9w zfZMrozb-7fCZ*5B`Aw3sGGpzsrTZ#2LJ$ISfmu#7Eaj20r5U|nFBt;FJVu82aJgv; zY1g;j(}9WX6>D$|GopIn|6cqF|EqKmh}%xL^Uv)A!a^XcU4V1qwS+~2#@+kEWJ6!* zNy_7zr2p=cw=~MiE^v6H6-S!kkQax71hk?mnRxdZqolwsJ|l=mj>|KaN#}mW`Y^Dd z39SS+DQ5EWt%l0MG<&j{2w|*8hO_sw_5gpONgO7_cSOeHechwW<|SRr-rMNZ=8hpq zdd>k%U@twErRcD$*FD!S6c5VRu#4F~4+JMP25r$l5BLHjw$td4qhHCNz5};hIW`V^ zlz(!<=g!!4udJV^1U><3=XF_}ZCBV(XBYdh?Mi33Itl;uXG*>|MkmF@&sP53_1Cr) zey8umAdv}MbW>plfePvM?tWHU^p%12?;gZ>;51A8_MhGTJI7P24m$HeIp}lm@{51P ze&x;)=}lW|G$I5=>hAs5OT5$AG=D*UslZY(#Y zC`y>G|91KIVc<~uI4u@5=IU2lvg@4!|8c%aN6M1_#iF4gPVGc_j+OT;b3_iy8^eTZ z+~)OAOBzL9PY1w}z?L*bbL9*WO{4`N2-}Pwx8ip4AA3b1Nwn`nBN%mY)Eede_L-zh zfeiLi;d0H=!`qb)TZ`BG5^)&dym`6)cs(Cvx975z#sT>`BbJdFvFM%Md>Ww?bmM$C zC0$Anu~-|uEU!qFE}I>8=W_RvDe;?ZwY(~X6hMJXHC ziXBWsCCW6O`R=ejujZXM?wCWe+kqUlNMG5E#P6Kn{%hH$(+e2lif2B3;8(LgsMoJ^%zf z#f)4_xm-!&x2au&D|d9L>9T?+*cWN#&+-+^(L^NM$`|+mjDoy&j@cr_4 z!{#a!`nZucR|w@=?Xjugk(Q3NGRh9XgNYRhpabB%cJ78-lqKp5x?^Y-OERV7-)0et zYdGb`t5xjwQln4&uiTK{kFf}9DkHlD?b8LG1_37X1s&uXDx3-B2|*nT1gP7~xv+7) zg;Cv^u__T*12yBmZ&gak$FXVi?haF18hbfa0yikW)f51#zz(c z3wh4WlO9PYhT;5zoMtfB8lxb znEe=H3i3oZUaq&+Ijr+JIcgm)-v6D1rIC}Xoa5cH?3@{0so8|ib)q2fVPKtmWMcbq z&+ z??jd)MO%Hs!j9c98vJU!A>Lm3Q$sP+(og+#f&|`iIkzachJ1arLdQSzh*X{h6Z|JL zd~!OuDj5p6R=$Vl!0NKulB5l^l}*7fs&*ZNw61YSMuX#`07FWqtYx6(yPp2vEC3&8 zs0xk>PHCO+*gHfS_{kIj0FGb)j`l=5?3!{MC(W-%IUHf(10ozg?Z)EkU(NjWFt&0WJSyW(2M&fjfF(M1Hv8Lq&|KA7H>wzFQmH2 zm$4>8)JsG0?2D~(;0xO7r7A_`+HqOg6U{;FfuGD&2=8`WZ7QZk2Bx+^-Eb739Pr9@ zzm%{jhs<{I;l{c)eag)~o8-_?gX=G|iATih zMwF4n)wQ=&uDC50Ae2;BX``>RZmwUDeA5WCjEZ{8F(K425K`fRHfYy; zd@5E|M{(PJ8+5CC#JhfGzfKG~f7KS@ofQDxwp!ZR^XVcdOxQJtn=_GqRKw59km%Ho8xXETOq0QzsZ_OX(D8aiu*M8`g z_>vXWAPKebrdv?w;?RFJ$40spxzyvxo7)AI)_v*wVdOWyH>*V^+oRk*qlLdQf6e_+ zQ-->|bY7$;X|GsLcQOcHB|MACc04heGk6XzI&^u$e!aRh>#>!XV4v#)eksD2Y*=5 zTm0|52lXy$j(Fh73{c$$i?)P3RsWd5ds`dR&j;G>R;>K*He<^jPG1FX)=i*^y6?RA zkK}XO@x)<-@-6-di0Nar)kSUpXj=cCN|LVA@`G}Ury>r_8+ekU=@!JWc5~YwlEK_LzaDN{M<7X*;QCNd+%PY@+?*JKA!*jK&1$7q*c$P4)$qm0 z95T1ILc4y}Deazf2OS3#oU#O+8nwkft{mQh3G|)oD3+eh`7xG2Mkv9ynSgZ;Rq9Me z3y^fh6k6LNwww|-;M!H#fPXJ?+>tC)aqtxu(YvX;3- z-h41cfemoOZ)aA%L|u=!9In~4`g6B5%kjl^AUrDj znVI|F06I3vhp|RI6HPQ)e<(6eLYcF7!qJZ#LOd$YR@NYE*ekm{XYu6&u>9?4rbx#E zZ9>=q+7Z-`q@4cG58K0+CTOCK=5+)K53*paw|g#LSS<#BOy!EmKP=GiUaV64*CU=D z75Qk&iVl}h_!q61uoDRj8gf_a7 z)4Ba(e6nrcJmWL?2@49g3UUDN4{Zl!-FuGJo#~zD+%zGiRCiIue!R?;*a@xeTHYZE zs|OZFkt2Vftc=69n~9odT$^KR4-eb%!@=<_Pv`1m+mkfrXFfh24YNdkV=BzXmN?!@V{e{GU`%!q(5WH&7o!no|^+^OJs*-#~8xC?UzkO z!Kep-XHhBV8}Vk}Qm_4*!tzEz!SU7wLWy*vuOti@aO3)vE+D1lA;~P8CLA9^ExcY* z%<1bG6VD03m{!&KC}S}%yP?i}l=JGW-oo6ztSAS_Pi{nx93G`j7G5CZXS^deIR$7_ zVq9y-5ms>os~@9^Lztc4PN~%$vqGkc-Z@F9YL!zD0wJ0fk7+?2sA}-zh%-N*gt$>@ zXKA+Eir!nf^0^6mV|{Ba)>AFk<)z$v|3X;7cfv7zLDh{hLAb>InJc2QORb>(AJn~0 z_Uy7S6;i-5NzaP(7QcNS5C?DrE)!lt7i%3vMOz!kU-_}OiDky z4iy3QP|j=Y1-grJwL}%Gyz=?HEg|Ej>qh!zH{TP5_ebObg!Zg+F_1Bt90WjHk_pV} zN!)WfgMNfb@V)?8?StUdZzg8og;Ok7>lmATLKg?O_qS<9iBTe|n zWPmR=79|TvjXtB|6;An|R-J(ChYnN(DDtB2jo#x335{>Mt>vQe<`9 zT~szcs%RqbVF|-9lH^^NHfK2oz*`gqL>Eg+8-;3hwj~3Y+OaA^Qo@O@)93{TjI8*e zyLp3KIN6<9k1nt(oo=+_d$OuO3Qm*R?+%1^b>{_5cpHS1#$-az(yYkQ2YIMbd{EBA zTR$Lrwn@HN^G?mwmgjwshJ${ejNduDbyH~ znTMl`uG6rC>j1`58A`&^cX6QyCjC+jVjlmO5@!U=7&*l}zUwS9xK1i2Nhq)f>}%Y- ze~pU)f|QR)mA%-0}=rvB!`Ego0=8sV=JJmKMx zmuR<>L9yg(EZa6h2aaZlKJomdaD|sT{z8rjkRXu-GBmMV(qr&Ec9~o&udSKO7p!q| ztT7vf+TA3E_PwbKnek@ED1jIjrv{0&iSnb$>Mc{7uw6NiD1;b(=Wr9s1$0M7u>Ioc z79#>DgAM3QG$^y@Vg5SoHZnCMAEWRxG*w>pI>{Nf z^M0XyFVVlTF)kBnhOM3xjj0k1|7O*xjZl>`Pi^Alb?U4R?2>v6HN$o~oM2pO!`c1~ zl)smi3q7(5V?~Eq;YzSgh!-`jtGdMOfx6UmkVbx*(eFn@C4h7lgL?x&llD*%9z|xxtgWu%83DfE>VcyJmm+^i?gr4K zF@${4^ff#kbVl((tjSW*9QJ(WWhW{tSqMaF7Y8mH#+_`Bu5;BZHeQNj9>4Ua{aKgt ze4rg95PnvCMsQv{`TgBO7a~SyN?&rWW6g4MXS=b;?N;x_TX(|4%fzVSm|4EBq&sO2 znEf9nIbUa_nuaO^@UW%c)!bz`VRcMzD(gggJ!S;|FK($$`AikQ@$0!5w6 z{2t9KA6>1NaxBZfb4i4fJs$(>=bgI}(t)HDS{?3_r9RDV4us z0O3yjix7=(vW(eQ8k-l?o26$a3#3WnIlYY>hS{@#bT$`9)1v4W^ixN0>bP&xo%#v4 z#5&hWp1*Ic;qLrm=HD+yv|ABn1N-+?nNT9rtm@+T7}}p-;+}ARCR_&z|nbr4EGyDNNfLUAY z=)1YYVR*_m$cu<~`H{b$Zd(r+O{^l%aArQzy3Mi5Q)Hs$s!4xY7wWbfg7`A9FGi@j zO+}$8X?4@7Xgsvf#=O@#u@D%_x;>8h^t2+;$cU(0QJngGB=5Xvf7WXNJ6? z5g(OexA%q@_e`N#epUae??ud zyZIWTrJTqX-sw9{e+V5nu@n}x`7reYpj~%&lrqg10LM8{Re=F*uk_AppgqN#i5-%# z)UWSx!fcXBmK=h(E!iw3`Z8Y=N04OeJVN_kt9-@QL7ZFrw*odGREY)U%k=&Mm}Iz? zY`MSA`5`YIaHGW`KJkq1ERsFv0EHAJobOMMo`W_$Q**F8HF z-(;axM%ofzWuJ;Oyq-#tS`9dZnEfY3URxG5YL<^hmQ>L+;f;(1g`YL%X`B}m?XjI= z28I_%?P#W1YJC7V)70mj3Dgy*Iv`+n^Is^Sd^8gl{Yw|Y)JBDBc%CjUpsQ6rf8+k1+n%?0Wy@Hxiy{KPz#;1^)LyjJxJ=xVz^TLc-A40) z%jl!|I7cKlQFsGZ#OU)xIb!SvfIJt+?b4gT6LnqO(Qr<56||&aoX!?90L5a-ZyG(F z8jPO#Rj@=Vvaw@8Im5t+T4`8AnN_Q ze#NUXXr;i^Lz3xkzF`&DulI25N!M2Y75%Dmg<0LOe)3^)^Nefp7f;cK&;R5wY3!>qJo$JtAJ* zD|4aERjz1eK;C9u>2abrh_qeS?i!$qh7}g{TvcdRZxHF40(FOb+i$6ecWTa&4VC9} zQUx%Fn#JqD{K}ykA|JB)55}&a`R&@i_)M}!Lb-S`{8MwK|MAM`Ma_ccFLnECU;8Z| zx--Xr=2#UQ4uF0yY=JkHYw3B3c_WN(2$)Mr8y|;?NBDE;)7~!C1ZxXlJqjhNQ~AF? z=4(9>&Mr*ZLj-2Ud?Xa&9 ziUGQO2bw>Ul;ES~!x=lcdgWREBGx*(6%4f%W4p&MLQ@ zE)kf(wkUf5COGPDG9hlj*a&uVp+wy!OWfdYJ6F2yV`Ixf)hD!6F z(x*kD4fA~~iSx-?(>9>A{^p9GtafR>fIu)hibtk%k6oC*j(D_Z;rNrZ2f&>o1`6l+ZZKJXT$iP$1(_ccj4ln7`q8%e^>v ze4YeY0QF{dp9P3Oj8fh@QC8%%a&7b;IOgMpBb(Q#M8Y{T)P3w6-_E%0? z^Q4l*j8HY+r7p$`6s)ALD+oje#p(IiMh~6sM}l?IPIms(V@ff;nGv)T)*O{oY#ZXr zoItmkYk}&#{X=UaFiMQqY8dk24{Z{{2WOL@=akuulOL02WpHW>c9z zSDbCltDitkFwhW=54L0R2_|Cx?os>SA$#=h1JKI znM++Sne7OZ*woIv{OTpcHgY&+f$smJNk$ZM5^<2T|p_(DGo3go(4R+X^rcF1)Sc%0Z+8i%@56U2tTm&~tXv79}tDsi4K#vNpO0fAB*s zJV2||-)LURLy=AEi=W(Q!U7cos9mDJBoXEEY+`p{e4!kGif4nc4JWH^vqi7Y$K>qglDoD-H8)G=w5IRTzoEa1-dKqz@&CYl*G_|+4b!_J*z!iOw!1q$SHGdVL>W=`n0p92}~_)k*Szucrm9}2K9)4nzw+~-=hXC;v$3;L)O z>eC1dvd-ENdx5C}@@W*I*oD6@b^9`nIUu}QR7;}sZasgY0rx9CBw|s31_)Kvv5X5+ zvd_(afSs|pTMW#njasJRgjb{XI?qPgvFKmHvy+D~%2`?IfL><`8Uj%Pr=x1rFC$FS z9K=+?vd3UuE-$W%v-GT6=!9+19DhE=~ja-hVw&(D-&vLjW%$MS-k+TVGj|Z$he( zR00EmNf)&*XyKRxd;x%lb$B=gD48jYuQzt>SEJIfLiz>s=mx5<3;{S5 z!beNoP6Ge3ZeH^KRnG*~DbWOA=@w@koYr7Un?Ay;DYByS~ z;U|*dO9Edu7K)L={puHu2|Jf54-R~2g&T^r`E$OwaONB><%H)2&vK?*fa})H(K)Jg zeMAJj*vZ{(VI~=)W1&<6+B{*j(6Ew79}`ib5m%8^@~HGR+S>7>LFkLSIcR7fg!uhh zE3qGU3?AOR(`E-6u>6+qS0k(NRsc>Vp#IX|#z*se6IL>Ul8g$qF!ZjNb-IJ2e;26U z+F;;a*7K0lrtjTy(VZXwL`tEW&t*lCkCO8z)1r!gK07v62T91)(0bHj_WRhubf}{U zOp=OXbh7qox8+;+j98~1Lc4WCeEuc|k%isBk`)xW8%MKoGAu*CuHCu;il)`~F)3e1 z`mDEP6d@9!DV;u(LVF}T%)TrxW@r{MN!BI~B(9x@0N zV()>D);z`$`Zr%`FHm!f2!*p6~kH8DGrc&-n z*lL$A2fY7+2ck=FGNs-oUfbVI9?soEO6lFRP4q@aDDQEy?^n6I+Wh}9dh2yh?up6$LZy;`{*mive+lDd1QvTrS3N0}I_9mKJ>SEdzbwalpfk2=u856zhV1mLu$|p1 z75R?JbLB+$ZKwYhG!gf1VgqPE%F`f$UK#!UUF^b6@3D>4bp`Cau1+?9`# zTSHMvC-eRw`ypj3=x^J->gB=zT70jdTEj@qV;+H!U6zDF@sb-cZ_{ROc1ck^ z`$-#m$dxC)*0{w%bsnGsex3VhL~I5X#c0laosL58O>>jdGcTn=qIYl8cHw$A{W$1s z^7wFfHPK(pO^|ttoG9U*aJb7L7G(91z3h8|<$u1{_BrS#vwPs?|3>YW&q&EY&EGp` ztG|6`W)xOb&`G2Hxl>M^kZ&qh12?ZqW=+Qffu6}c{at|KKD1lhKXWQ&7U8TA-w5S6 zwNgwq!kDI#Aobb6u&-@dykwaS%I98-!k92Fm(xs*J)%@Mjsu3quZ>?H-)Axo#0zZQ z{?kz#SRQA3=`3L?SmN5G$Dx_yD)HE|d!%(QWs?#%sa>rk#?!@yE#OqA-;jM09eZ?F^q3TC=5l zsaX@x@C7UU-lT{8{pya2nssPhMY7pDOR!0lTFbHa%4y^Kv!(M9w9fXIm9ko<^hEJJ zJ}dJf=2emd;Y|j>Xegw)=Cj|o7RL>&Jb&KOFbIL*H-I{jYv+DB54couLtA-nD)6%Z z9hH?r#Sq|N51@EL_IXa}sM31c(xdh_>c8Idt*X&gN9_I4`5Z8JNOzg-@9uiJ(;|xv z8yBNhd8)9Vg#u0b6uZM$TDou8aO!1}*sZNzzo$WY{>5GXyQ7!-K&${9>!swBl2CNQ z0x*b!rJXi=bjKp?oyc+>8+eI7&s%0?E-QL7i61~v5kNPCOmG(9@nSctYe$pQoYz1v z?BZ{Tggo$K30n!ap($uE6-*Rg4pYETk0ba}k>|JWml)A9sQ8?^%*@cG$#82uvQK#n zCd9{8i6^gjfKvZyC$-#h1A+D%DI*XV*nI!fx$V)QjFxU5u2}4s`Pv!-_!|vpNDWSZ z<@vTNQ_pY?-VR1&H~=qd%i=3+q6JR_<9G*6a5cu|VvLnUcu~wGgAVQrNxLLY%b?QC z9nEj;&exq8M_!xLjyM!?E5*}Hcl+QM8-Adbzi()R?ryFhZy&KHnr41K&wE_=0W1s* z1Qxk9H`NDFOV+@&rUcq<$q|oP8lSwDoKvy#mVO|dwzfbq2hBc&f0p{H6FrCCu-62F ztr_=?VhBt^)5}`FBSiB^mH%H4R~`>l`^86;T{H38$ymmWE!o$>SY~4EM0$}WQCY)l zsW)3SlQ0I!Si(%Cddbp|M#N-DvQ+jYOSV#ms8oLUj?d@!_ndj|x#ynq-20sK{eD?O zmueN?FQY5JG}Rb5IBHufXJ>1Ql1fRgZQ&j=$8q~Q{Qrqwd<3j!e zfHy`IJBMv``>Wz^SvhqQ5Of#In>Jc_t=3(?x^{N~+$9}KoxAFtNN%W>>!1 zlU!Dy6+yXD9MvUuFrLrlb#PfrPSDw+G;%C3zD3~!?X%Q#g7lPZX6?qg=7Xme1!?>Q zmTJUPGrQjsb1h-93OR-N;u<@!1bb#>u=AFe&1fSZjqe8%zorTZnafa&+>G{omQyHz44X4 z-cMPjWRoebb)|>Z6gRXY4zo_MzKPvmyf?3WH_S`79)%=^fz4OKX(M~zS%liDU->dK z6VwEsM^Ghw-z9x_cV*c-zYv*DG2Qp2k02L}w5Odac>#zkhG5$h`Zzd=IGUxB1kC51 z9B0*}+O$vDNKlOZ#8FL2Bp-T3_#mp1u1mu*-T>noDCRmGrP3?)Jcsv|w2tF1Ms2C@ zs2CCn8{3C*qJ> zX|$zvz_f=0N`_LMQ=_ra&y0RiY5YF3ceRl2l{(3fS*(m;{YQ%KsXeGv0~! z4xE}QfSn6%(i}tttC2E2tse7s*jO1`v2IJ$>@915Zz&|iC*jElOmW;TErh8m962D` zXR3{N0nSTxCVvrQ!A^CCB+hOqYcvmaXSpOkk^*-Y?Hr)CpO^EZeh-hL-fPN&IMlu^V@>q=zwU^Fg zG@r{Iv3lbDXna1*nCSvG-kA`lx-r>5$2-=YFlK7JHcU{yniwgVJ7m)H=KnTA2=-Xm zP*&;{gH^uy=%xsz24HL|55KpWJ=1BqY(zIj*J7FS@JB(W}eB_y82_<(fQo`_xF>uaX zsf;7ZUZYQq2}y(asAW<<&=)CH*@C}atCt9$Dpi49;_rR2xU$d4S;OM1FosV#T9r z(Fg}qh}M$_n}`q&@kLJIEz5MNL!IB-E3{EW{6iD4CxM+XlIF!m{k+U2GM^jRpb~8F-f(z9 zUiuaFZ-Atk_vXfQG$62q7TbUUTM3~$if2ZClFJio);2Id>P#;+P)NM!yyKJ7$j^Vl z02Dg|R+vrg?0{G;@n0>lXWq}qiQo)%n z{PS!t^?il#C1nz8#QGgDT0i(!T`CW@g|>W?L$2ZFP65kf;`HGT#+vqwB`5sU$qM20 z5UH!L0fx$K)kHFHZn>FH<4IJ~a8x^oBZhOpMZD+hIKh3yA_LeKc-SqYcVP3a6FZ(Z zj<1@z7`;bt{01>Pn2D|e*2MGR915urLpeK;y2|hvhWBX;L9evUjZbfL;emPUxui@q zK5|8v6JzQhX>kjMn=DcDyY=(%4?k>zkX%kM3R@PNtgw4e|2y8O0T7 zY&>runm>&=8Hs#}6#g4=20}mive;~4+ZD*I18(cT4^+yI?hp`*c<=I{ zBYR%DN6q`cZjxT9B5AOIi6?9UdRvk0hQ^5f)S9v*Ebsrg7y1v}WAElui5rTE^%}Mc zIT6uvfmGR#niQy?f{e)AR1ky z0QXGNR4;#J_n*mzi`h#DKE!}ngZ#|U>u

xThpJ{@XGqVFwspF`u-1bu5j~)W-_Ynt9txI``wwhEhL^y| z_k5yAlIFZ5hSiyk-{fq}&1KXRV)By!jUzxW01c;ifc!{!8-{Uw5fVSvMIwFNGsn(e zZ0)XkFsObE$I~?hYSds)f?7r9K;Z(^)Qnc=XD){DEKa@C>h$DS5E&e@D2-)g@5p6# z=58_RBZq>DyS?su;qIjCbw5eWA+V76mUW++8H_MWNEKZmftBP3pli9u79T`lD5+&2 zUh@)*_n~HxI6qw98sq?yrst4xHbF zPde}|OMq_@J}CiFNHTx`%yyGMxerDb-ZM+5zL81+SkBq{+r|4NHG!`P(Rf&(?%qER zVIgZK_Kteng3$h-hzuIX{ho4?xRo;(qd};vFS{Sk1Odx{`jkjm@S37PqQ#dHY0M{1 zarDeY<+o-cV}&7F`&Hlz0k1&MpTTE`3jBe-Q}jP0&_E7h5p&=e#^nG+OYRP0ww?!i zrE^?_Kmrl&fX^Cz+7|&jhLTNX%nh8!nre*N;n)ya_|1+IFf18RH_Gl|jrMzW7HE-l QKzI&v%+|@K7IP}?e|Xv(bN~PV literal 0 HcmV?d00001 diff --git a/_static/images/DataFusion-Logo-Dark.svg b/_static/images/DataFusion-Logo-Dark.svg new file mode 100644 index 000000000..e16f24443 --- /dev/null +++ b/_static/images/DataFusion-Logo-Dark.svg @@ -0,0 +1 @@ +DataFUSION-Logo-Dark \ No newline at end of file diff --git a/_static/images/DataFusion-Logo-Light.png b/_static/images/DataFusion-Logo-Light.png new file mode 100644 index 0000000000000000000000000000000000000000..8992213b0e6072414aaddb574b2336cc6beca66b GIT binary patch literal 19102 zcmXtgbyQT}_cjtD($Xy;14x5(DIp*o(v6gK=Kv~_(lvBQN_Tg6cS%bQ3@}6UyL`Uy z`v=Rl;NEl2es(>3pM4EgQIf%aN&XTE2?<+HR!R*C2{|4K>6!eC=fH2QlqvOqe=r?2%6o+kVgYeY=U|m8~Q) zw|>XBFDOGZbV)DxP_f4GUdy}?;q|9_#!QBTB`C(wck%k$u@qh+3JV6boXrqfhYOX1 zk?XZl$(L|vB<2_2>A%U!r8V2um!P6|3dYnynhl_A=l$xu2CD|MtIGGj8GptxU(3#2 zL|G14%ok+r-HMElt*%l{$(z6`k5C01Y8j?Ho^cKeQZvxd(M`Dsdw6)DL!u{xk>I0;MA;$j~~Onf&%}B&L(QKcD{nd z1=7!8%*;zcfpx!u5Im9+2!N+|ZEEeD=CPTq75pHm=j2$Yh({0|ot}5;;d3M(2*DK3 zUmFPZ@C$#RNqxtbjrDFma@rpi`_Ol`zwv=1v5_F}REhq@Kc&tmvHKo0YJ2oMuBFCu zx_6j<#70d@%6p{ueKK#?g}z_Fel4ZPBB?T^sl>Gq{R|50EE-{w=9m3i5Fi+0?r!OmA*(M)DNjThEAVCzSpCY_|s-?Q38W+l!rV2TniJn*jj{Dgy! zPIOB>OCjCZn9TvIk){#w@7(sM9GQAJ-}NJt31 zFIGG!v{awuEqxHz#+xip?lHdp_mVMH>0H-&M5<$zE-=PDt0WM93^j~bgSpl-bOym;qELtBupP#<4rkO1q|V}`L8g6 zgYL^`q4FH@F<;f+UO-X#@;&Qg6~pY$@f62mKHqi#{&@I_MGe2V`5jtAUc^PK&-96o~0HOZ%NIyLc1;%Ohewo_YiL z5*X{hWs;;5>Q_s@#N{jpCq~iV6A@EJvC3-yZb@pl5mcw^w1^vC#0h!D#)%tP$_>1UwPhj9Py% zDvkDP1};->i;~o&dR)Lb@zSDne?20MAuhJ7_6(^~X#H-nNt}Dy$x~q(llQO;87V1| zslE3Yy`ppjg-#^$hsQ&EN=O^@1*>LK0F#G#q?5wcMtd9^nMX2eikB`3(LC!Pk z`o0A`HKUTdje!{{LqtI@qce?Ho?$)pH_tV?ZKQW!C zo|TGKSk=c0Au|vL|E$RGC-Hyhb%vahMo%{-EQu2@#zv*l56DLN^C!9$le26JYpHB{ zoVfEuQUp2xtL2MtRsY`nQ^z%*+=dkP?KR{->S+#Hm~@^M?(Q*ri=chN$H&E{Re@&* zb3@wiFlmjo^Y2kRaK<3w50HF!_#rjCh(B+pb{_-mQZrfGE!`5936^0q9W%1 z4npxV{^Uu}#nLYXieqGDe4kjV!VcWKgEEw*q{wsL@7F!~{S5CipYo*HZ5w)1NxiZk z$A$a>2Y?LVZB8-)UXRUsH+V5@Oe#%mfNl4C2T11w@`T_Fa+F%ZHqmO5T3j7y)KAXE zKpGj(qQ12&o=HjL>pZOuD3l67`xO!8yj)v*SDKk(qGs;g@l-Cgll9WGUAmiRyAs~N zuJu9!G9^eR>GagIT(u?vMPrV)+NXD9{oG4(j{tTF(e*rG2E4?Y4)SgvX_}`oct2Dm zx2;xF`nk-vDFbQ7>B79d`M}T(D;4;PdBx##Z8e7m4K6vc@xlVh4V=e^ASv?M zz4v5lE6XJH^S??X2G>h_%=cAtugndse-_us$HnvJC$9|((a87sfXlM6FeBT0MsEgl zs39Z`lWPHY9TYkIn(KrKnrRy!(>I@8^QO_-8)AhmcWs|zUq&dU&t3@7wNB2zCsP4- zsGY}Rk#0_C;GQ8tg6>h`s%Bj%uG#z^n($ z|1OtYi~GK1z>3ork+b?KCvmw_N#Q~08~q)H7*!RQ1=XavYV)YJO&FQn!0-8#g%`<) zzWT=7xPiYwfPH>7FH8nROkLY%#!4{;6A?-^PJv2jO_W0M%ee`Z;% zFGcxn9!llSRsd&=%Za=EL+wRf!69zKQI za66_gO3zrAJJR%j22XiI*H)5@v7=eAUvkAkxZa357=qdF&fdv^r(j0nH@J}$Yo&*`BGY3ZENZ6vo31IbFU)&Ks*47y@pmb|oMe|ZW}0XIb_ zT=fN0;kv|&Pi_6XoEWlbn4Y>agl)@Ylpq}+Xf#I+qI$ptkZ1n9U%_qQd<{_AUA|~O-+IyY5skZORHn@UV z2YjjOFVgUJ#R@UdA*#*t3b>~jpq7H>H8cZW1y~~~Q$K`clu&)8ZM2HQs3UV@Gbf9v zb}@w9i^s$?;Qv9cuHo3C%s{+VM)9|i-J2=TkQOB67vWWSXA5)dXi0*B@4y^~3|h!L zq~~-({Ur`pzm5}E8oF8 z9%?>|GhbpPd%Q6)olC~%%yzo=5VR}(Tvc0!Y~JBp5H7C};+r(e8>=(UEGC6^XaKMq#6~Tgb?=IH_db8v zu!yudd{bolV3d><+vApjY78i%RB*uxE9WqENUs4O)s0&?I``}f^MS|>A12Xr)*>|v()&wl) z&~Qk8By((D@r!Mqk{n-a9YeV$o__~5GByM#RE*;IW)&I<{-V(lq0dGYWo=wcDWVhS6= zT^RikUp`1)Hlq?2BHMaG`Y~OH@4fpfCb8SyodLO---9*8H*7yy148)%V4E?1OD3e< z?H_gz%TRVy7-fEr?7dtuPQ00ReveXZZ{mWFk3VnDDB@1V6wG8wom^V8h~XtL3^)AMK@@MBEmNF;ED?PaK{zBw;_rhjgMEF$05)_L)&{_|JPTxw%z zVer#35;rcU?$$vb>&IrFUQTf)vrpz`HY2@^r=#2CP#mz9A*ZByv)(S{<23y0i9(;L zR$R2QeB;ic*+DImR2bi8x_-ba{HrKavHJ_fGSjDV zrl-fYP^aZF>`@#0OW4P^z8mlR%zHEaE~7A}MP3{9^$%L-&6>i0!p%e9%saee=0(sd zFB+$b*@_bd>=%zwvjED~_YRob=p zk}AcV6L>%Coq`1;pJ-o1#w^CkV)4f98MPhMtJ`cCo+ z|Awgj<3{t~KjD@I)Pf0v=NJNcb>M%5UNfv$Shn$+~O! zHy7gW+~VeSk*-o_9Ofri=m9U{33iV5_Nl9OM~M&l9_tDW9eiaHGcbdh>_Uc{*N?I? z5QZvGpc;+%R_=+eh&~H`N1>m{xLp|RtV#}oT1GZfg7RdZO!&@mq{U+5G8>w2HJ@dQ z4$+nRDYqZ^6b@(-8UHCb`uuCg=$t}0q1!o5!oKeyDXT)_iJuJSYAf&>M~EF4Z0Xim zJchUZbFjamp49JcR|MIq8qbpnw0{Y10+Zg9xoD*u@834$_uGA%Io%504j#dK79^7C{@{ydH3CqUNmtNIfLbp%5)A zUSQ;4HsnjYC9hy-e4|sxZ{8ND)RbVjZmz7Y`M9?{JxQwWk^(MWYOyz2qfcqGSQJg^ zmFDjYY@XOWt0&6gWR3)^Ek+TCQ`8uJu>ZcczHArSC1=b}whd_Oo!`6Mw7$O(JH1VY za%fW_EC1N~uxqAJU9Q8~+JjlXy!u;5y?hn#r<_wXfDr34It~}(p(OEP^^*IKeIg-c zv6=8jD=(wN`cwMAb(8j7#SYT|F_f<5X;tq|0%PQDtLsQAIY|qw9tv;ndZJ3*s6U*{ zN`RtbW@vX&A04}on_RyMdcD;rzlBW11{IRo+n3j~_V_LSmi*g#kqUh%f83e%c<6t0 zr13!B24RxOG|TWTud4=TnsE1A6gC+`-x9H*4`uy!Z#eo~svtj=QbYHL*Jd4Z$=Jqx zp7MVE$jkyG_{zmpDc!{TpZ-Y*vkNa;agY0=`>+Ek7dswk?hBmxK5GW1`xxDGYc^?JeJHaI#WwI6z9KVOWnM zmXP^yA%las`mz10qz)5uCi(+C#**@ksXK|vd0P)>sLxreyy=Lpf9kdpp5siQAL^hv z3B*K|L@uk;L~jeffXjat2W%hoPo8Z;b~?;8B?zlPja>nh<(f7 zh{nckFN-I7q^6742`pW&F0b3wC>kt!fuqLnt`-qTcQO9gK8X+3g(g+MUPSr)1LwVG zo^n8k@XzPZZ@5U$xS6QYkD3#StXMGWaVkUao1Z4I`3G(qzk4mQAIzTx+eE1p-J>kn5kkt2X5}ZrkoKR2%NAI{$a%8j ziwZ9n`-ldSM+arnH{NulMWg&V?wM}RbN&>@Roy>b;huRdRWi1k5ec~Lb!qo}K^p?y zF2l6%&Q13=lDAo=n)y7u;HS{+2)pP9m{%$WIJN5we1iIP?0Ekl=?fcO)>eD26NNCr z&KgUg)e-dJn_8|v-GNT+M%Xpo<}^8VxonzmWbC-P`$1zzw;U68im{*j{se+xH~gyy z-G0KaLX(ZV=BS5#Sa#Bz$M!d;Zgd2E;~TS&g2oTJhB_(ZbP5&`0SE_W84j+_spK`w z6^uAenj4%ZyFN}P6?=yzHx#KlJXKMJ42CEIE#I`NsU5YP?OT))xwp9j`bsHwu^wST zZNfU;bqeKQ<_aGEW$Ir&#QDS8f2?->O_yDA%kZUSh^+8=7p{*T=LM)L2>^C$_4ne{n&sn6 z`}uzRsfWYcz`+^n(>362k$wDx&rr@IqSv~rAQi)B4yG24*cy zOYiypV8!CMOAolLfk&@QxLJ-%vHtLlsm;L76NrE=SQ`rg6Uw_gmd#l3(0rePF{tN? zPv3pick^cni77j|+PGCiJ}ULv^W&y-Y0Z)I_`5ObP@I$+H+py|^^`u6I}IL$UZe%NKQ@U{ z{e&!yz8(I&iWKD$WdWe0qao8wsan&2yOqA`zc0Qnnxe=_;yGTlyLi0MWN-b#cdE-} zW`~UY#{Sn=Ch0rks-3Af@)ox3{EKOdxM~ zD4TuWH7kAJNrfyPnu{WBexXxQm$;+&WPfD(^&gP??`oABlf%d5*Oc$v2R0qQmR`mK zh=zQ;Zg%>i<=|HTymDW&w9Gu70-3Nw%;hFGPbJxr7u{9)Qwc|EeU1NkOdNv`~QTxp?1& zW@38Hd6~q{_ZQgUd4QtzC@-J9j%$)Tq31SnV$Pnrj3?@Tvcbhp;?`Jzw#-p@dE_!F zBvLaBTxc5FHQ9aplg*tYUflBQwESV(8sLI{De(>WHE_+4C|FQi=^-;q;GpYskIZ?5 z0ST!4EpFP3CUr$q$79`}z#*B7;xD_jO%r7ifV}=V1B(Qn5o9TW^x^DWJonXgWd*>Y ze`K(s)s$3nCfEAB!{l;~9J(u#w_hllNK#V*WBKp{WY_yOYVmhh+OozP-zP1KXZ2((w+gVtE{v3gk zo*vX>o^GRQGe8}E-Xupnz+P?TMGgY%|62Lj^L6}KURPU(7USUAj>L{vcX(#~@pB%h zVfW)P42vYXC+gY5@oncAy!=~liKMz|cAbFx1J7a?2m9HA_2`!b&V5O+Ue8yEty^;0 z%WP-dke7AVEyYV^iL1tb&!6RMbXiCvVS}}D0d13{W(2aVP*W3nC}@jbe;o0#H9aDk zET>oKIAc+AINrAsR5+fQ$mLUXY0K0W z>l0ouXpon95{Iwb-$^|p+AyU`NXq9iLi~Qau*Xaku=C!}6x$7El$dcv012^>%l7cr zRK~b2CbNCTI}y324k$8QQF*ea=%cJdsqN_167B<`!(E5+f=J(RO1&E8{FSyF2A8Og zj`e*8foS325tRGZpFe(@>Hp6H$XwR-V9>ftt|KO$ZRP;o-VE33@|<;Z$?M&&-rjLI zLVf(LQg6o!{pp5abPv-hH0zoJ2euvsfLMzW19cuJepPc;ncK%WwSzqGF6^WMX=wNy z?9CH#@t^(8eDvt|kHaOYo;(zXXI7ry^mz%IU=E`wQuy7uNrVCQ1c@UpT>c;BdPZd5 zC4Zj!-a_zU1m^v48erMtwrdOeqK%>GVmIw;x2ZJu2!Hd9g|W3%-`#V6o7L3}M2kIl zPdlgFt5ZA1{R=mYbiC&9V|?sBZ$)@7Q%?-CYb3p!|561UqpD zd?NMT1f`aDFwVgGo4^kRqLQg-M7L&ZYJDc8`<1musMi-f;&J{G2Gqq zz--S76P~z4M6-Rs6~lhIzM)o3bCmtnsa8^Aj;~qf{EzmrvBTTPcz2tTr8Mc)dQKhp ze?C+1)tfXe<`9xYY^36(z}62C-4%DQBBB^Yko4o}8NdIJDF5?4lE`D<^=Fx4cf#vd zCYl~3aIS18L4}MBYsiQ|XPHM?d22iuTyh=2k^RX|_2co!CWa36LL8*Rsx zKh|UR8{V#oUlWhQjUy<0kLYe86_qWa9b}`kVRfKJB#8FfC>-9Vt>fbMLsUUDZ~H0Y zgpbCOuq#;Mi7V7KPI~y=i~l{@{jt+MZe`EpxH7Rtyzd54U}*lQuf1aK>LYY;=;#21 zDD*F&vcV^7FtP=Sqbl-B+?b`V4bH5}@cUlOW{%w!g!t)qq*arH%KxcCMu2_W%4z@D z8tgZ~6FrrlJnLn=TK&XsAC3QEeZy^E`2(YT@U%{a;(SsswwQb1K6t1pr@&ukknV!7 zH6BpDkJ8ug_Y)p7vhpJN{{@KmUYULuXcx5f1_A6OFgKw@WtCot-@g9|`2sFF5 zvGdt$#!a}7^JGEECQp z8pa2bUne<^pj1^RwXFj2pspDRB?iguA@<591>GfE!6$jBx7pC!t9h37r~cXF!gHzF z8`+Er7@U95nP=Ga@BUO}9cVwEsDd2S86SehtdM`Gwp3Dj#o0)@U(CD{)b^u^Vw2+O zRfS5LM6ZwHNn$ZDTc4C1-beTE;&HAx1Gp+{_C?w#%i%L^2(=6(4mK#k#tE7R%TqET zOlTO#_)|b=i0#3_5mPN!v$1~ePF3U+J65xK9}eI18*}Xb($rrM+GBlLNpVBXbsF;; z*h^e`AswkBP0Eb$ZLb)fK0~%ydQAqmL#&e3wXbwO(MfaEe)7n2rjOc&({0z+h2~1l zhAr~j`D23TA{V6qO63(j;Hg$CbkTS8bBwK4!^?_;xWxvD$O65$k%^J*QhBe726p>I z*TT3CDFJvo+uGj(iec$%OMEpV$7_-0;ElY1{wZ~>7;+~kWUf@>*80&bs5;M-Sq`^m z6whHoMO~l36yZX4#4hxd-Z3kEs^wQ@vYn%2kIxf*4(1w{0Di@m2?9>+O>1T*h?l3Q+`1d;AeN}nDXfdA$!K*r!KYo=va%Oc#5 z%5g)o`^Cw)1u?l4!;%Q49csugh}0Iv=dTnsn`9UGVc4(|tB8BjQ1nq?#QmKWr{p?- z@_p=_WFpmrl4u9kkA5a?_#og3P7&kak*`sE-~-{s$ia0q8O)^RP&Rwv+)zQC?44sM zPr!T@5Nsc3h~An|vyPKlI7qGkVskL^Xx*SKE+0nMfQqs%q3t0jI4-0ttz5xf-_@8n zaQc&svq8^)WhA|L!b)9NT}K9+65=*1){%DA&nuc=Grk+hw=9}6+ghU}R7vZw>!A(f znl^BR&81MT=mvaF&~|YxB)A4G7}dyJ@^@1`9X=uG(=r{*jhYKLQBpMKYGl`g&#n+V zX&b%O12fXWx$7%LAqjm-H*RMEH7~2^qvz|MGK+h$-ODBUr?)+RC2#1OSB+K4jF5cR zs<;SN#5G^hpdVPzz#sV;rbs~_HlLyaVO17yKGruiqPPys2yz4}Ws{J?@-l9qcEC)@ zG2Rc~A@6p}SLCIOsej!*nz2q>Z1PHhqhKzjq;Gd`{;;WoEzQ_SmvFKhArHK}(a_U! zy-XbE5R08?G8)CUnp}5ENn1=JcnH5!`k^FyrW+@XNH|`+P=T|PCg7R!BfrZDu5Ke@ zk`A&&Zjl2MxU2a<;_e91y^FIRZrQ0xnp*yL%oUjcmTAX+Wo@sB5Hyc=%gnIf8hd1b4kW7wfc- z*dlG^>jC$dWPV9x{F+4-@wU0*8uL!~mZb}8HdOY$j7u~WAO6jl0`aZfMB*@aw?EO> z;K=V)m6z(h1JZitwU~iDLr1wwES7SJ7tQhfN*59MfyJ z1o*D3XrBRpRskrU;s$P-zD7F>Ak|ElQdGXuePJQ(3Hx~Xef4*;UAa9)ZKyO)(>N2m z1H{yuK1p(i9!P>6S*zD;Db4&AnNOk)TKDG|rY9|3~&RSjJ{xZR5aO<8rFf zjc(-BbIr-%OS~mdwi3bi5JsgBu7cJ($3%eBxzgsW-3*D2;0T*2M$K#SF+OHx^HD|{ z9g4?=^z!gM-(rG4(&CuVd>SU7I+nrn>`i$o19?MdNqUjUU&N>_Hopz>)Wt2zh3% z(GJL-YZbB*>#ewJoV$?x9OU^kKGxQEQOF)V z(q+d$#$gBJPxdfRZ6nb5VJbXpJST2$&uKdahE&NDR29d$Q2G4%57J9c$Zy-fp$jzp zhpy3e^b5jC zrU)pTtu%rA6B6ldT$3fzY`mC)<50n8r(;u6(XiX zg3asyo%7%o!E0FJ&&4^(6eHzH{>omvA7SHe?;pOTMq6~tDgfs+`7wUj4DbRc6g$#C zuC9H3V9F(F8KCCTPn;tWEj=YwWnLjH4*p+2}5CQ4m9z;86mTB0(Cr1#bd9YzP}Hp1tMmg!ZX^rnbIvMyA{Jgt@vI)oMX_ z*j+2duDcJI&MJPk>M%(X-G1toK;?bY15z0SQcTLmYDvp#CST~kQ)IbsQ*6r*-wwi> zMENA&Pi5fU3jGfL=YSpnbkcsUq8;&>{I+^EW_FM|DO%>Zp0nyo&3PKCH|SVDIwt#a zV31n{mmg5VGb)5I_K?x* zgU#C7tPKmXmhBbhV{f#VcfQX^E@oh4V1Zdwn#`9C*)LVj z;J^c>YP#^{NPA_OVOlPSS4xX^M9c1SXZAwu!5dABa5@jo-~7f&3q~U1xjW(XXrKJi z4ET+aY`vKZfZ~oXjMbq$W3O=l246f?eTTu=lldw-FWXfF_Plzj}ZXJPWKn=Ryp`$pSr#&;zEDC2@DX_VGEAgn-P9P&H-MR z8VJ`mSaxM<-Y@i+;-JOBeG$j1k^5YG%UK+ADCg?#1(}QodUO)rwpXIpyc1Lc%z#f4Gh(e+V$$?BV%{hK;kt7A=7HL zT|^J~<{GpY*0EXlhxuTw=J2_veX-$C`aHsOYdoEurmZuuQYE73U_O?yuHiU3vCb-Wbezxr4}Mi`QLkO? z(Om2oCKtPbs|#HJ&~&KY;3kKam=znsx6bJU-o!K;d7Rv5TvjMwQ9Fa$q#)2j7`Hlw z0&}gRKbORjuTc7_wd103T-8pGJK@!xpYbz-pIE2n@liy--=47uI zA?Kw6<`aZnYce1az6>ua`}8F{$$9Tm)DZXK#&mT%c>bx)uzT{G!m40F-2UopUQT&o zxb?mA=}{|xa!7TH^e%{FMtHx4RNdQj3j=$kQzgqaPEpn?gjld#J;WfwU`2sPYANYL zO=$`$eoyc3mS+#!^1q@vJFE9&@%i^*>U=h_&Qh=7){i6j(>nY<60nOO-i%-_liQe4 z4XIIofZN*(^_Q{J*%nes66&tNU(TM$jUQ2uDg_kt`~79~JVy8by0I>HeQdPZUHUtc^4>euy{qA<4rM-_UxegGzofnG=dg;hii4%)(~-$hmA zp919YMpJpEI9)tD%_wt7)?tVT(UpK)6333jH66O=`W_1Z8 z2Y#kr_2FMSea>WlJ*DKYX~Eg=_t{h5H_FKCv0Se7z~Fx}FXC99^?trZJRFVRk2nK( z8r|F*)dMPCZlKbQe4#i|scKzz4eMJlz$*-Lo)z0|r56?vLcswpY0M9* zIuxdy^6JZ&@vpP1DpzIsujo0Zm|CqzrN}E^;tk~HWbYINdSmaTKP#Z+LXNd2yUBdMIg^;n5o~MS5<0Wv3%hb z5Mdx_iOVPsIFT@~+Z%y9)M3+71rNP6f!PArHo!++&xDCm-mD6Dx_)2qWNchVJ-=D? zR!c(8qp|g2?ktIzLu}-~jjZ%P7nN*{E5oRuIEhTP4yx}fF|24C5$rpeJc@ND`QrxH zXkyL%t)fG#V3^IYcf;NzCN9z$|6RwR1;_y#DbD^ETrU&6Bt||%uo0axxilP5Z4cfwa@4mKjhgK`nKmY{M2t#!5PF& zP)%2kW!0rN6HldxU9auhHcp$6Xp92B>yQA}lW|p{JSjvOx^≫uSMcw~$CUKE7o& zc60k-R+m_zNHC4sv<>I}ervA2=stG7W!1=b4fBmK?6Yk5 z^4MFI8}m<%WrwZ<=K4nJEiNJE-<%|tqZ^sKPCNu98M`!^eteoEOBBxx%Z5GKciqD6 za)0tQZE-dXpU5Z}xM;&T6@x>~RoE21Tln1`r38(ezl?uiUUmc1oaZ0GR8-X^{)!H@ zJ`1*j%v0Gdo$U*}v0XM*UuxZF?aL-mxRxz8qDCt+F5kLQD-v5?6 zNqZg))cf~@YWCS1t|Y;<$3cz~jVW@R%Uag2g7qYhlnW2i(}XR!emQ*RZ&d14NuK*` zPmXMa^8x5_&Hrrqxlt;y1Ly_M#l%LPC+)KgB;N0Zwbhe(D_hUIC6n}0=hxe-nfd6~ zL}838e_DI|_3-%1*F~W*9EC01l(OO`Wv$8HIsJ`Bo8mRWY#gBGos_jtnT%1nHlDh{ zPihxP?lo`^L?Z;5Px4~By#*}jF!t-MySO~HnZAq}C4tKE*R_J$#XiVm`C%O4A6dq~ z3+$Ju7M?P#BOiNAnJUXt^%)nf8M0RXVL+ySVlWX@F{Dlj2i* z)0>cSfIZ}}S_*GJ0EoEDU1x(J^Pg{CW$?-UkXiihCOc=*eNP>ON01`kapzwESu1Em z8+NtuOAbX!QQ_q`ar)>;PogO2h*4p*$$E&NU*}xq>YH-yt-o>BT=luIMU;waEh91? z68=yHH8b`@?*xhr-3>0jM#-HwZ7CI=F`CK9d5?5|eh!H$j4RJlkC#!IDG7YGczyE< z)DKyjIKtrqzJ8pD_d^{9k34SK#IJwlXePOgMq`~z*94@rL|D1E0=J2ryaVRP&&Gj- zI-N3C>MCtgc(;8+;V+)-dQR=$EWRTMFpAnrt8229%j4oDOMqj+C8cUrFa{k7^7)wx zue9x6a?u`8{V^E5eFZXc^N1^Xr~M$d>$b5~@_^^^P2HW31=1ee5ZUL+?$A1>djR5> zg9n$XX<>l0TYY?lQv6{4cdJKdPCxsPbnOd$?H+Iak0O3#GVA5XH9ez-Qjd0pMOByL zjo!d@6lyWs(O$;iQ7Hm_vc~M;{fhj^LSi-x7hwTD1KcURn-r@ z9~g)A;oeCt1}oO9{rXd<{M=mPx@qre+gHyVRL5hHtSizsl}H6U?q~{T2;OvJEuvoG zgK(MVZTPz`{sIHetFAi;jNQ%GY+8j|9^N1QzkV+k`r;(u{1KfuZxHW__7v@H3qKf< z`Z(N$7<9aHszS>?k9B*~{bdf0o_Xj0h-iOIf81U7yFWn?3x`9&4s!g{Zro`un*KUNS%gicXte8zTyaba=?#x4s%bv$4){`7?T@@BZ_8 zSy_DP^eVq42JNOCyB#^a&%kzUm^rkTQ@GqZ7-wyWkC@6O`>?+>9a)JHv zu6oHSYKcB5GwYp0x1Wo;o)}l;lcRWZt1y3{pgg3$+rBJxWagLo0XEqKz2qX_9ShUO zic@wnzU}%FJ77|^_9d`adefu*aycB`@G;}aqug*9C>c3<(#%F4ud6na$I9P4mLJ)G z%?uDv*G#w2`@94dFX(wYQU$w)7`l=!#MA5$$4%tg>U-lU^D2Jc`$ePu%{*YX|5E}6 zix-@;(^!x)_XB|fXEO21V}RFtp{xfuQDevYF`=>*`gGe+nJa z(fFB3-kTDU+&(uwZuYii%;@LP_#>OU82=*y$BP7#j>@3=yl4A9)pT#~;YA>>q;Fnx8BUXOFKgdPm|FNUk@cI-+LSb)kD|TM~h;4Y=nW-y~h~~;*rNKm%6 z!d31!h;Bbli!xOxyhG+49XX%C-hC{018GUK!r21_9(X>1jsrVVA#$I4+om7u%N-tX zlCHMv{jE0^TE`!eftioN_uaWQhk>ya1WYP8!x;JXruV7t{v({7^c~~0CvIb0wAXfj zjz4Xtl0fDw94^c41S~4|ZqTUj(}0p|TCo!r_lWTKxxBP_+|2x1U_u2H1^%JR50lsR zi8$@y?tZcEf${%*tFYs1?WgI}WwrX(S1A6LlUc;}kwz&MGW0?^?m(dT7qyss47-n> zzqUl}LxCD-i#)?!|AC<8uV`F+QdOA=B(ChS4;P_0$JtRlHzoz$^hejnN`K6K!7 zp(43ccbOyB!hdBPb`P_ex6WFrGZwD$MRuBxe?S|yjs7KMCwH3<;ST_hjAtE4OqF?t z?*A0+DL32=Irfe`T=?}GELI-W#6#!&U>KKuItavb1z5_%w%+63-E*Hzn>;7BWRp*^ zYb(Gwj73nLuK-Bn{i;O)as!6dDQ4vEtUXx@N@d5s5g zh;kVW1q}zl6RoSxVz0ZdZ_@28M>b1NFjrQ&YjJKN;DcvZWB!-F#SyFGSLrl;nV9*Q zBZtE5l}E}wUkgRL%hx{bbD@1&+z#-1vF}`zLUvANKq&AB)5<;j%q~|nhU+FhF=177 z|M@vW=(vRUcp#(3kgYME^=*blNJLlMDruA(y_jcxY2^2(ql|_qfr;;cQJ+Ea`1- zvGT@Jpjb&~l*(441g^*322P@1vEDDk5EZ&n!sgVZTT8kOZZBfT7tt#t_#ozR@;>cBFSvO&kVzxV47fm( zx+CB!FL3eWPm_xG#bFT}3%o94W>@5p6ZUZC@XeV8bE73Za@Ud%9kLFt6Y0HFAv0MLJ*gp56Fvs!|2Lz+#6Ip*$!C(>$4$@l zzM6s8NeRZPD9A;+j@R1pehwO{Jx%_LgGPdVz+?yZ62M&hCAMOO%g9&dJPu)bIozku z7kY5fN4noMv{ESbnEor)GpZ+LJA5^*?v)@2e?h>FaIxo569&4h_~KuZP@TbrxA>zt z*A|vq=-6UW$}ou?FyY%g2B70icY>K*-s<^dIgY&pOEMT+tZj~S)FZ+_oBN>YnHuiX z3iZd;3&Mh(tJx=Y3Oq*WRJA7Qh248flIC^60@w*#@YHJ6010yr;8G!^!LDl)c~^1) z+cM4;H!ob&Vc5sM{+N7PvW4<3N3w&&Mi|EG|CMn5@l5A&9H$*|=QK@rh|c=4{Fuz| zA6e04ex##Q5wTpmEeXx$N5fUuwo(|H&Cg`$I#x#^LynyM*1}GHtjo_e!pO2*?)%;S z{rNoJpU3DdXoIevSO&@ID8yoe5a z9>BAIUjoqXuT7TD%0BM+@NFO!MZoxXmZ{7>%p9sRc&c`P@TgJ((Y5AB54CH>kC>df zvCxZni_#M<(cn$BynV{3a8*jDr0@q5sD9g(r)e;9NDe>n*-o?2yg3RZ=~xqxc!+oG zWZ!W^V59|4P;S8_Qsstcg2x&Qe0;}A)T%CIJ?vfIKxMSDB~yRCmBzgXjUO(!m;`L& zTN+IT%vomf0~1-mb=7bw_)wOG?Q zi%((mLtZkGN)17}*NpUWsr{!t3uSSnfOMax`caLm72L(wp_C8>_tsW0gU7506DL-; z$cGE!{0;WY=TaWn@1TzVvfa-L;1#kdK*K_b=@{OhB8yZu3uV6_5UmqI6TJ)(L zhacYNLh20}TwdvBgVq}0R$;u)oJ&$sNItEm4+zVa^AyQhu|#XhwWr#>xINA?UCAF%E)#-|KNi5}AD7F(4V&$u@OcHnd+FvNfdBO6yX1-d9|zn7!a zvMI*lXGE2P042+Jq$j-xB2nUk-t&DgW+BF7-j^vy>`zp;Rp0nT9!O}Q}8Ywd2_1@9w$au z_vw%GUztUMB@(y0@U{)aPlMm1U;3YF! zG|2AhhADgvvMhCMX(i57pf*|GM%C)vn>+RUpSst=q0+#)B$)8@yvdH3v>0>~wTkb(wmK^20>_El5VToasS& zy5cc5A?g4MhvkK;mLrkxYxSF8fEVdS&mZ}yN10cZ_||#*ihe(6(a2c6^}ik1#le;c zPc8D?j=>|6YmvS;J)FOxZA-`?&|4S^=XkKegcEG(8F)KQA04?hw>gzh5juCd>Y54k z@F`p2opK4ZKIMQbfcYSVMQDQkd?F;nNVwVQkpH4{_FkJk6WzXHEYx(7qXp8P@Ue;E zk(qp4zS86DwE+7y}%rTcvFMm-=PFQO^w~DTqc&6lER$#2m ziMXCv$}aAAki^JO_y)N*Koz_;d#_%lEy{In;}63EVqGR8m!lZeSwIEBR5OB;EX9RZ zkE+HXMd+~aLk|L64?@U)m>o+Uh!H!3CYPN8`|Fxa0qLQd@2BV68Z$I!fGpf&2kLD| z{dNx*BZCWQ+QCW9P_+%~KD4ULsa*6$XGxXt9WAxHgK0p_&3QtOuP7_PVuPzQBqdHi ztvseEW)7~Z)kG~oo@Yq@HHaV89T8#(YjQMU|Asou5veQs#*>pqk8O*}R*JQrL|&7W z4QeBLZ=zv`ChmXvh$(X-J=Q`~9)}Yco*Z#RL*b-J`4<`beOVj`=i&rwXk>dtkCj;8 zz`AM_O-RhEu&wb)vt6`W`6G8_vHz7tYz3I7IPq=t$Aklf{WTUq^Xj3}tS7Wj2YO5?6{?_)F$xtL}R zWY#g6tAWnu38R#6J$QS-M;#aD!O?FGzVF4ugC!|E$n}6Kp?CS=5m6>wP}T(M0P#S67*R= z5BS$wBA!g%!J+;)NxrF>jpW3bB6fi7`Ik@+&W%2Rnes3LpDR|$*IaDataFUSION-Logo-Light \ No newline at end of file diff --git a/_static/jquery-3.6.0.js b/_static/jquery-3.6.0.js new file mode 100644 index 000000000..fc6c299b7 --- /dev/null +++ b/_static/jquery-3.6.0.js @@ -0,0 +1,10881 @@ +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 + // Plus for old WebKit, typeof returns "function" for HTML collections + // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) + return typeof obj === "function" && typeof obj.nodeType !== "number" && + typeof obj.item !== "function"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.6.0", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), + function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); + } ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem && elem.namespaceURI, + docElem = elem && ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +} +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the primary Deferred + primary = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + primary.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( primary.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return primary.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); + } + + return primary.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + + // Support: Chrome 86+ + // In Chrome, if an element having a focusout handler is blurred by + // clicking outside of it, it invokes the handler synchronously. If + // that handler calls `.remove()` on the element, the data is cleared, + // leaving `result` undefined. We need to guard against this. + return result && result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + which: true +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + // Suppress native focus or blur as it's already being fired + // in leverageNative. + _default: function() { + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + // + // Support: Firefox 70+ + // Only Firefox includes border widths + // in computed dimensions. (gh-4529) + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; + tr.style.cssText = "border:1px solid"; + + // Support: Chrome 86+ + // Height set through cssText does not get applied. + // Computed height then comes back as 0. + tr.style.height = "1px"; + trChild.style.height = "9px"; + + // Support: Android 8 Chrome 86+ + // In our bodyBackground.html iframe, + // display for all div elements is set to "inline", + // which causes a problem only in Android 8 Chrome 86. + // Ensuring the div is display: block + // gets around this issue. + trChild.style.display = "block"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + + parseInt( trStyle.borderTopWidth, 10 ) + + parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml, parserErrorElem; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) {} + + parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; + if ( !xml || parserErrorElem ) { + jQuery.error( "Invalid XML: " + ( + parserErrorElem ? + jQuery.map( parserErrorElem.childNodes, function( el ) { + return el.textContent; + } ).join( "\n" ) : + data + ) ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ).filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ).map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + +originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script but not if jsonp + if ( !isSuccess && + jQuery.inArray( "script", s.dataTypes ) > -1 && + jQuery.inArray( "json", s.dataTypes ) < 0 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + {% endmacro %} \ No newline at end of file diff --git a/api.html b/api.html new file mode 100644 index 000000000..c47e4600f --- /dev/null +++ b/api.html @@ -0,0 +1,315 @@ + + + + + + + + + API Reference — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/config.html b/api/config.html new file mode 100644 index 000000000..9173ec898 --- /dev/null +++ b/api/config.html @@ -0,0 +1,294 @@ + + + + + + + + + Config — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

Config

+ + + + + + +

Config

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/dataframe.html b/api/dataframe.html new file mode 100644 index 000000000..28b89e13c --- /dev/null +++ b/api/dataframe.html @@ -0,0 +1,294 @@ + + + + + + + + + DataFrame — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

DataFrame

+ + + + + + +

DataFrame

A PyDataFrame is a representation of a logical plan and an API to compose statements.

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/execution_context.html b/api/execution_context.html new file mode 100644 index 000000000..e6578c5a2 --- /dev/null +++ b/api/execution_context.html @@ -0,0 +1,294 @@ + + + + + + + + + SessionContext — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

SessionContext

+ + + + + + +

SessionContext

PySessionContext is able to plan and execute DataFusion plans.

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/expression.html b/api/expression.html new file mode 100644 index 000000000..6e881acf8 --- /dev/null +++ b/api/expression.html @@ -0,0 +1,294 @@ + + + + + + + + + Expression — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

Expression

+ + + + + + +

Expression

An PyExpr that can be used on a DataFrame

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/functions.html b/api/functions.html new file mode 100644 index 000000000..98f1511ce --- /dev/null +++ b/api/functions.html @@ -0,0 +1,294 @@ + + + + + + + + + Functions — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

Functions

+ + + + + + +

functions.functions

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/api/object_store.html b/api/object_store.html new file mode 100644 index 000000000..0aca95f7a --- /dev/null +++ b/api/object_store.html @@ -0,0 +1,294 @@ + + + + + + + + + ObjectStore — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

ObjectStore

+ + + + + + +

object_store

+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.Config.html b/generated/datafusion.Config.html new file mode 100644 index 000000000..65b79ab85 --- /dev/null +++ b/generated/datafusion.Config.html @@ -0,0 +1,342 @@ + + + + + + + + + datafusion.Config — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.Config

+
+
+class datafusion.Config
+

Bases: object

+
+
+__init__()
+
+ +

Methods

+ + + + + + + + + + + + + + + + + + +

__init__()

from_env

Get configurations from environment variables

get

Get a configuration option

get_all

Get all configuration options

set

Set a configuration option

+
+
+static from_env()
+

Get configurations from environment variables

+
+ +
+
+get()
+

Get a configuration option

+
+ +
+
+get_all()
+

Get all configuration options

+
+ +
+
+set()
+

Set a configuration option

+
+ +
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.DataFrame.html b/generated/datafusion.DataFrame.html new file mode 100644 index 000000000..09e3782c5 --- /dev/null +++ b/generated/datafusion.DataFrame.html @@ -0,0 +1,532 @@ + + + + + + + + + datafusion.DataFrame — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.DataFrame

+
+
+class datafusion.DataFrame
+

Bases: object

+

A PyDataFrame is a representation of a logical plan and an API to compose statements. +Use it to build a plan and .collect() to execute the plan and collect the result. +The actual execution of a plan runs natively on Rust and Arrow on a multi-threaded environment.

+
+
+__init__()
+
+ +

Methods

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

__init__()

aggregate

cache

Cache DataFrame.

collect

Executes the plan, returning a list of `RecordBatch`es. Unless some order is specified in the plan, there is no guarantee of the order of the result.

collect_partitioned

Executes this DataFrame and collects all results into a vector of vector of RecordBatch maintaining the input partitioning.

distinct

Filter out duplicate rows

except_all

Calculate the exception of two `DataFrame`s. The two `DataFrame`s must have exactly the same schema.

explain

Print the query plan

filter

intersect

Calculate the intersection of two `DataFrame`s. The two `DataFrame`s must have exactly the same schema.

join

limit

repartition

Repartition a DataFrame based on a logical partitioning scheme.

repartition_by_hash

Repartition a DataFrame based on a logical partitioning scheme.

schema

Returns the schema from the logical plan

select

select_columns

show

Print the result, 20 lines by default

sort

union

Calculate the union of two `DataFrame`s, preserving duplicate rows.The two `DataFrame`s must have exactly the same schema

union_distinct

Calculate the distinct union of two `DataFrame`s. The two `DataFrame`s must have exactly the same schema.

with_column

with_column_renamed

Rename one column by applying a new projection.

write_csv

Write a DataFrame to a CSV file.

write_json

Executes a query and writes the results to a partitioned JSON file.

write_parquet

Write a DataFrame to a Parquet file.

+
+
+aggregate()
+
+ +
+
+cache()
+

Cache DataFrame.

+
+ +
+
+collect()
+

Executes the plan, returning a list of `RecordBatch`es. +Unless some order is specified in the plan, there is no +guarantee of the order of the result.

+
+ +
+
+collect_partitioned()
+

Executes this DataFrame and collects all results into a vector of vector of RecordBatch +maintaining the input partitioning.

+
+ +
+
+distinct()
+

Filter out duplicate rows

+
+ +
+
+except_all()
+

Calculate the exception of two `DataFrame`s. The two `DataFrame`s must have exactly the same schema

+
+ +
+
+explain()
+

Print the query plan

+
+ +
+
+filter()
+
+ +
+
+intersect()
+

Calculate the intersection of two `DataFrame`s. The two `DataFrame`s must have exactly the same schema

+
+ +
+
+join()
+
+ +
+
+limit()
+
+ +
+
+repartition()
+

Repartition a DataFrame based on a logical partitioning scheme.

+
+ +
+
+repartition_by_hash()
+

Repartition a DataFrame based on a logical partitioning scheme.

+
+ +
+
+schema()
+

Returns the schema from the logical plan

+
+ +
+
+select()
+
+ +
+
+select_columns()
+
+ +
+
+show()
+

Print the result, 20 lines by default

+
+ +
+
+sort()
+
+ +
+
+union()
+

Calculate the union of two `DataFrame`s, preserving duplicate rows.The +two `DataFrame`s must have exactly the same schema

+
+ +
+
+union_distinct()
+

Calculate the distinct union of two `DataFrame`s. The +two `DataFrame`s must have exactly the same schema

+
+ +
+
+with_column()
+
+ +
+
+with_column_renamed()
+

Rename one column by applying a new projection. This is a no-op if the column to be +renamed does not exist.

+
+ +
+
+write_csv()
+

Write a DataFrame to a CSV file.

+
+ +
+
+write_json()
+

Executes a query and writes the results to a partitioned JSON file.

+
+ +
+
+write_parquet()
+

Write a DataFrame to a Parquet file.

+
+ +
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.Expression.html b/generated/datafusion.Expression.html new file mode 100644 index 000000000..d0c6d8c0b --- /dev/null +++ b/generated/datafusion.Expression.html @@ -0,0 +1,357 @@ + + + + + + + + + datafusion.Expression — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.Expression

+
+
+class datafusion.Expression
+

Bases: object

+

An PyExpr that can be used on a DataFrame

+
+
+__init__()
+
+ +

Methods

+ + + + + + + + + + + + + + + + + + + + + + + + +

__init__()

alias

assign a name to the PyExpr

cast

column

is_null

literal

sort

Create a sort PyExpr from an existing PyExpr.

+
+
+alias()
+

assign a name to the PyExpr

+
+ +
+
+cast()
+
+ +
+
+static column()
+
+ +
+
+is_null()
+
+ +
+
+static literal()
+
+ +
+
+sort()
+

Create a sort PyExpr from an existing PyExpr.

+
+ +
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.SessionContext.html b/generated/datafusion.SessionContext.html new file mode 100644 index 000000000..08ee3f3cf --- /dev/null +++ b/generated/datafusion.SessionContext.html @@ -0,0 +1,479 @@ + + + + + + + + + datafusion.SessionContext — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.SessionContext

+
+
+class datafusion.SessionContext
+

Bases: object

+

PySessionContext is able to plan and execute DataFusion plans. +It has a powerful optimizer, a physical planner for local execution, and a +multi-threaded execution engine to perform the execution.

+
+
+__init__()
+
+ +

Methods

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

__init__()

catalog

create_dataframe

deregister_table

empty_table

read_avro

read_csv

read_json

read_parquet

register_csv

register_dataset

register_object_store

Register a an object store with the given name

register_parquet

register_record_batches

register_table

register_udaf

register_udf

session_id

sql

Returns a PyDataFrame whose plan corresponds to the SQL statement.

table

table_exist

tables

+
+
+catalog()
+
+ +
+
+create_dataframe()
+
+ +
+
+deregister_table()
+
+ +
+
+empty_table()
+
+ +
+
+read_avro()
+
+ +
+
+read_csv()
+
+ +
+
+read_json()
+
+ +
+
+read_parquet()
+
+ +
+
+register_csv()
+
+ +
+
+register_dataset()
+
+ +
+
+register_object_store()
+

Register a an object store with the given name

+
+ +
+
+register_parquet()
+
+ +
+
+register_record_batches()
+
+ +
+
+register_table()
+
+ +
+
+register_udaf()
+
+ +
+
+register_udf()
+
+ +
+
+session_id()
+
+ +
+
+sql()
+

Returns a PyDataFrame whose plan corresponds to the SQL statement.

+
+ +
+
+table()
+
+ +
+
+table_exist()
+
+ +
+
+tables()
+
+ +
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.functions.functions.html b/generated/datafusion.functions.functions.html new file mode 100644 index 000000000..7705f782a --- /dev/null +++ b/generated/datafusion.functions.functions.html @@ -0,0 +1,655 @@ + + + + + + + + + datafusion.functions.functions — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.functions.functions

+
+
+datafusion.functions.functions.abs()
+
+ +
+
+datafusion.functions.functions.acos()
+
+ +
+
+datafusion.functions.functions.alias()
+

Creates a new Alias expression

+
+ +
+
+datafusion.functions.functions.approx_distinct()
+
+ +
+
+datafusion.functions.functions.array()
+
+ +
+
+datafusion.functions.functions.ascii()
+

Returns the numeric code of the first character of the argument. In UTF8 encoding, returns the Unicode code point of the character. In other multibyte encodings, the argument must be an ASCII character.

+
+ +
+
+datafusion.functions.functions.asin()
+
+ +
+
+datafusion.functions.functions.atan()
+
+ +
+
+datafusion.functions.functions.avg()
+
+ +
+
+datafusion.functions.functions.bit_length()
+

Returns number of bits in the string (8 times the octet_length).

+
+ +
+
+datafusion.functions.functions.btrim()
+

Removes the longest string containing only characters in characters (a space by default) from the start and end of string.

+
+ +
+
+datafusion.functions.functions.ceil()
+
+ +
+
+datafusion.functions.functions.character_length()
+

Returns number of characters in the string.

+
+ +
+
+datafusion.functions.functions.chr()
+

Returns the character with the given code.

+
+ +
+
+datafusion.functions.functions.concat()
+

Concatenates the text representations of all the arguments. +NULL arguments are ignored.

+
+ +
+
+datafusion.functions.functions.concat_ws()
+

Concatenates all but the first argument, with separators. +The first argument is used as the separator string, and should not be NULL. +Other NULL arguments are ignored.

+
+ +
+
+datafusion.functions.functions.cos()
+
+ +
+
+datafusion.functions.functions.count()
+
+ +
+
+datafusion.functions.functions.digest()
+

Computes a binary hash of the given data. type is the algorithm to use. +Standard algorithms are md5, sha224, sha256, sha384, sha512, blake2s, blake2b, and blake3.

+
+ +
+
+datafusion.functions.functions.exp()
+
+ +
+
+datafusion.functions.functions.floor()
+
+ +
+
+datafusion.functions.functions.in_list()
+
+ +
+
+datafusion.functions.functions.initcap()
+

Converts the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters.

+
+ +
+
+datafusion.functions.functions.left()
+

Returns first n characters in the string, or when n is negative, returns all but last |n| characters.

+
+ +
+
+datafusion.functions.functions.ln()
+
+ +
+
+datafusion.functions.functions.log10()
+
+ +
+
+datafusion.functions.functions.log2()
+
+ +
+
+datafusion.functions.functions.lower()
+

Converts the string to all lower case

+
+ +
+
+datafusion.functions.functions.lpad()
+

Extends the string to length length by prepending the characters fill (a space by default). If the string is already longer than length then it is truncated (on the right).

+
+ +
+
+datafusion.functions.functions.ltrim()
+

Removes the longest string containing only characters in characters (a space by default) from the start of string.

+
+ +
+
+datafusion.functions.functions.max()
+
+ +
+
+datafusion.functions.functions.md5()
+

Computes the MD5 hash of the argument, with the result written in hexadecimal.

+
+ +
+
+datafusion.functions.functions.min()
+
+ +
+
+datafusion.functions.functions.now()
+

Current date and time

+
+ +
+
+datafusion.functions.functions.octet_length()
+

Returns number of bytes in the string. Since this version of the function accepts type character directly, it will not strip trailing spaces.

+
+ +
+
+datafusion.functions.functions.order_by()
+

Creates a new Sort expression

+
+ +
+
+datafusion.functions.functions.random()
+

Returns a random value in the range 0.0 <= x < 1.0

+
+ +
+
+datafusion.functions.functions.regexp_match()
+
+ +
+
+datafusion.functions.functions.regexp_replace()
+

Replaces substring(s) matching a POSIX regular expression

+
+ +
+
+datafusion.functions.functions.repeat()
+

Repeats string the specified number of times.

+
+ +
+
+datafusion.functions.functions.replace()
+

Replaces all occurrences in string of substring from with substring to.

+
+ +
+
+datafusion.functions.functions.reverse()
+

Reverses the order of the characters in the string.

+
+ +
+
+datafusion.functions.functions.right()
+

Returns last n characters in the string, or when n is negative, returns all but first |n| characters.

+
+ +
+
+datafusion.functions.functions.round()
+
+ +
+
+datafusion.functions.functions.rpad()
+

Extends the string to length length by appending the characters fill (a space by default). If the string is already longer than length then it is truncated.

+
+ +
+
+datafusion.functions.functions.rtrim()
+

Removes the longest string containing only characters in characters (a space by default) from the end of string.

+
+ +
+
+datafusion.functions.functions.sha224()
+
+ +
+
+datafusion.functions.functions.sha256()
+
+ +
+
+datafusion.functions.functions.sha384()
+
+ +
+
+datafusion.functions.functions.sha512()
+
+ +
+
+datafusion.functions.functions.signum()
+
+ +
+
+datafusion.functions.functions.sin()
+
+ +
+
+datafusion.functions.functions.split_part()
+

Splits string at occurrences of delimiter and returns the n’th field (counting from one).

+
+ +
+
+datafusion.functions.functions.sqrt()
+
+ +
+
+datafusion.functions.functions.starts_with()
+

Returns true if string starts with prefix.

+
+ +
+
+datafusion.functions.functions.strpos()
+

Returns starting index of specified substring within string, or zero if it’s not present. (Same as position(substring in string), but note the reversed argument order.)

+
+ +
+
+datafusion.functions.functions.substr()
+
+ +
+
+datafusion.functions.functions.sum()
+
+ +
+
+datafusion.functions.functions.tan()
+
+ +
+
+datafusion.functions.functions.to_hex()
+

Converts the number to its equivalent hexadecimal representation.

+
+ +
+
+datafusion.functions.functions.to_timestamp()
+
+ +
+
+datafusion.functions.functions.translate()
+

Replaces each character in string that matches a character in the from set with the corresponding character in the to set. If from is longer than to, occurrences of the extra characters in from are deleted.

+
+ +
+
+datafusion.functions.functions.trim()
+

Removes the longest string containing only characters in characters (a space by default) from the start, end, or both ends (BOTH is the default) of string.

+
+ +
+
+datafusion.functions.functions.trunc()
+
+ +
+
+datafusion.functions.functions.upper()
+

Converts the string to all upper case.

+
+ +
+
+datafusion.functions.functions.window()
+

Creates a new Window function expression

+
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/generated/datafusion.object_store.object_store.html b/generated/datafusion.object_store.object_store.html new file mode 100644 index 000000000..f048e6030 --- /dev/null +++ b/generated/datafusion.object_store.object_store.html @@ -0,0 +1,303 @@ + + + + + + + + + datafusion.object_store.object_store — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ + +
+ + + +
+ +
+ + + + +
+ + +
+ + + + + + +
+ +
+ +
+

datafusion.object_store.object_store

+
+
+class datafusion.object_store.object_store.AmazonS3
+

Bases: object

+
+ +
+
+class datafusion.object_store.object_store.GoogleCloud
+

Bases: object

+
+ +
+
+class datafusion.object_store.object_store.LocalFileSystem
+

Bases: object

+
+ +
+
+class datafusion.object_store.object_store.MicrosoftAzure
+

Bases: object

+
+ +
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/genindex.html b/genindex.html new file mode 100644 index 000000000..5499f2688 --- /dev/null +++ b/genindex.html @@ -0,0 +1,714 @@ + + + + + + + + Index — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ +
+ + + + + + +
+ +
+ + +

Index

+ +
+ _ + | A + | B + | C + | D + | E + | F + | G + | I + | J + | L + | M + | N + | O + | R + | S + | T + | U + | W + +
+

_

+ + +
+ +

A

+ + + +
+ +

B

+ + + +
+ +

C

+ + + +
+ +

D

+ + + +
+ +

E

+ + + +
+ +

F

+ + + +
+ +

G

+ + + +
+ +

I

+ + + +
+ +

J

+ + +
+ +

L

+ + + +
+ +

M

+ + + +
+ +

N

+ + +
+ +

O

+ + + +
+ +

R

+ + + +
+ +

S

+ + + +
+ +

T

+ + + +
+ +

U

+ + + +
+ +

W

+ + + +
+ + + +
+ + + +
+
+ +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 000000000..3f05cc533 --- /dev/null +++ b/index.html @@ -0,0 +1,557 @@ + + + + + + + + + DataFusion in Python — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + + + + + + + + +
+ +
+ +
+

DataFusion in Python

+

This is a Python library that binds to Apache Arrow in-memory query engine DataFusion.

+

Like pyspark, it allows you to build a plan through SQL or a DataFrame API against in-memory data, parquet or CSV files, run it in a multi-threaded environment, and obtain the result back in Python.

+

It also allows you to use UDFs and UDAFs for complex operations.

+

The major advantage of this library over other execution engines is that this library achieves zero-copy between Python and its execution engine: there is no cost in using UDFs, UDAFs, and collecting the results to Python apart from having to lock the GIL when running those operations.

+

Its query engine, DataFusion, is written in Rust, which makes strong assumptions about thread safety and lack of memory leaks.

+

Technically, zero-copy is achieved via the c data interface.

+
+

How to use it

+

Simple usage:

+
import datafusion
+from datafusion import col
+import pyarrow
+
+# create a context
+ctx = datafusion.SessionContext()
+
+# create a RecordBatch and a new DataFrame from it
+batch = pyarrow.RecordBatch.from_arrays(
+    [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])],
+    names=["a", "b"],
+)
+df = ctx.create_dataframe([[batch]])
+
+# create a new statement
+df = df.select(
+    col("a") + col("b"),
+    col("a") - col("b"),
+)
+
+# execute and collect the first (and only) batch
+result = df.collect()[0]
+
+assert result.column(0) == pyarrow.array([5, 7, 9])
+assert result.column(1) == pyarrow.array([-3, -3, -3])
+
+
+

We can also execute a query against data stored in CSV

+
echo "a,b\n1,4\n2,5\n3,6" > example.csv
+
+
+
import datafusion
+from datafusion import col
+import pyarrow
+
+# create a context
+ctx = datafusion.SessionContext()
+
+# register a CSV
+ctx.register_csv('example', 'example.csv')
+
+# create a new statement
+df = ctx.table('example').select(
+    col("a") + col("b"),
+    col("a") - col("b"),
+)
+
+# execute and collect the first (and only) batch
+result = df.collect()[0]
+
+assert result.column(0) == pyarrow.array([5, 7, 9])
+assert result.column(1) == pyarrow.array([-3, -3, -3])
+
+
+

And how to execute a query against a CSV using SQL:

+
import datafusion
+from datafusion import col
+import pyarrow
+
+# create a context
+ctx = datafusion.SessionContext()
+
+# register a CSV
+ctx.register_csv('example', 'example.csv')
+
+# create a new statement via SQL
+df = ctx.sql("SELECT a+b, a-b FROM example")
+
+# execute and collect the first (and only) batch
+result = df.collect()[0]
+
+assert result.column(0) == pyarrow.array([5, 7, 9])
+assert result.column(1) == pyarrow.array([-3, -3, -3])
+
+
+
+

UDFs

+
import pyarrow
+from datafusion import udf
+
+def is_null(array: pyarrow.Array) -> pyarrow.Array:
+    return array.is_null()
+
+is_null_arr = udf(is_null, [pyarrow.int64()], pyarrow.bool_(), 'stable')
+
+# create a context
+ctx = datafusion.SessionContext()
+
+# create a RecordBatch and a new DataFrame from it
+batch = pyarrow.RecordBatch.from_arrays(
+    [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])],
+    names=["a", "b"],
+)
+df = ctx.create_dataframe([[batch]])
+
+df = df.select(is_null_arr(col("a")))
+
+result = df.collect()[0]
+
+assert result.column(0) == pyarrow.array([False] * 3)
+
+
+
+
+

UDAF

+
import pyarrow
+import pyarrow.compute
+import datafusion
+from datafusion import udaf, Accumulator
+from datafusion import col
+
+
+class MyAccumulator(Accumulator):
+    """
+    Interface of a user-defined accumulation.
+    """
+    def __init__(self):
+        self._sum = pyarrow.scalar(0.0)
+
+    def update(self, values: pyarrow.Array) -> None:
+        # not nice since pyarrow scalars can't be summed yet. This breaks on `None`
+        self._sum = pyarrow.scalar(self._sum.as_py() + pyarrow.compute.sum(values).as_py())
+
+    def merge(self, states: pyarrow.Array) -> None:
+        # not nice since pyarrow scalars can't be summed yet. This breaks on `None`
+        self._sum = pyarrow.scalar(self._sum.as_py() + pyarrow.compute.sum(states).as_py())
+
+    def state(self) -> pyarrow.Array:
+        return pyarrow.array([self._sum.as_py()])
+
+    def evaluate(self) -> pyarrow.Scalar:
+        return self._sum
+
+# create a context
+ctx = datafusion.SessionContext()
+
+# create a RecordBatch and a new DataFrame from it
+batch = pyarrow.RecordBatch.from_arrays(
+    [pyarrow.array([1, 2, 3]), pyarrow.array([4, 5, 6])],
+    names=["a", "b"],
+)
+df = ctx.create_dataframe([[batch]])
+
+my_udaf = udaf(MyAccumulator, pyarrow.float64(), pyarrow.float64(), [pyarrow.float64()], 'stable')
+
+df = df.aggregate(
+    [],
+    [my_udaf(col("a"))]
+)
+
+result = df.collect()[0]
+
+assert result.column(0) == pyarrow.array([6.0])
+
+
+
+
+
+

How to install (from pip)

+
pip install datafusion
+
+
+

You can verify the installation by running:

+
>>> import datafusion
+>>> datafusion.__version__
+'0.6.0'
+
+
+
+
+

How to develop

+

This assumes that you have rust and cargo installed. We use the workflow recommended by pyo3 and maturin.

+

Bootstrap:

+
# fetch this repo
+git clone git@github.com:apache/arrow-datafusion-python.git
+# prepare development environment (used to build wheel / install in development)
+python3 -m venv venv
+# activate the venv
+source venv/bin/activate
+# update pip itself if necessary
+python -m pip install -U pip
+# install dependencies (for Python 3.8+)
+python -m pip install -r requirements-310.txt
+
+
+

The tests rely on test data in git submodules.

+
git submodule init
+git submodule update
+
+
+

Whenever rust code changes (your changes or via git pull):

+
# make sure you activate the venv using "source venv/bin/activate" first
+maturin develop
+python -m pytest
+
+
+
+
+

How to update dependencies

+

To change test dependencies, change the requirements.in and run

+
# install pip-tools (this can be done only once), also consider running in venv
+python -m pip install pip-tools
+python -m piptools compile --generate-hashes -o requirements-310.txt
+
+
+

To update dependencies, run with -U

+
python -m piptools compile -U --generate-hashes -o requirements-310.txt
+
+
+

More details about pip-tools here

+
+
+

API reference

+ +
+
+ + +
+ + + + + +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/objects.inv b/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..3307cf4ebbef2a21f9766280bd8cb252f6f21197 GIT binary patch literal 1456 zcmV;h1yA}TAX9K?X>NERX>N99Zgg*Qc_4OWa&u{KZXhxWBOp+6Z)#;@bUGkGa&m8X zAVgtwVMcXxX>V={BOq2~a&u{KZaN?eBOp|0Wgv28ZDDC{WMy(7Z)PBLXlZjGW@&6? zAZc?TV{dJ6a%FRKWn>_Ab7^j8AbMqh(uDXAK<(L7yGB#_QO>%#I&5r~KB#@kkH-g8Xukj3c9EONm8W)BudG}Sxm?vSr z|H1?{CcF<5kf5oBXdRuJ-K91Yzx*1mf?*ROTyjfDiORsHD!QE&Yn2g@A3j(KSWg&2 zh46tgKRKd5-QlyQ8BBWZXnC1)h41DPX_9D2TyK9!Mp^0;r-T4zy#q;3wdK~eLF5k} zabvmkIb7H=$Y;j%d}b~vm;Qh;7Z$WX9+wVhyt@5O`MhAkGwyM48jjJ30wtS0NvTQw z!Hv7gGwP8Ce(&;{N8HU`WYT!#rfTbvrnJXvE~MA^sc^*q6K%_F+BgOUN;F7!%Hvag ztGNZj%!hB}oAK$en(1!(_X2*}Uw`d#4aPJPbuoQuO(#fKBrx-tRB&p10vR>dD{p3~ z&nI$2WHBcpn2!`LbTsvfocC~>;JwyuF3q;Evy-9NH=jYgA|$V8GuI+if`ZoIAfz%l z>@j?6MBw%Y?(q+rSh^7?8j$67kB4`&6cPHN6&ifjs&FHF-turGeD*qV3%>~)w8?4s zrHMhl2DN!BGf88W22`OX9HN0K9gz*SE`K+uQi%6-qfkUNMixNfoBAi=5eofXU|`YQ zS%C@cxUpz>Kan06ZXe_hOnX#uRaCgC`83WQ=~Tn(ZmVgHJG!ZK4kylC!C9p_5=`N1 z91?X@kv!LG*W0zC%4tpa=pu%3jxSRGKZdGdDZa)>f-SLe`vn0qu_?Ne)jY!%VZa5t zMoKkh<(j(8#IaPPODO5~cgv`dt-%*sK%$W76Bh9V47v*Ja%_oMD1{!xToS?Yr>p#n zg;De=6A+_cia=k%gi7u|EgU^iCjQ&va_48!y&V=r4!M~MC z1bh{$h!)fQM=>g%xq#Qbv5+mM`<*kbjEe2kk3xfI*>nC|-A2DIT1G}P>R8OdbOlGo zbJppYV>%Tb8P~a>z#P_z<|?2$4~>n!M2eNd?q@{{pI*L&|3M5IB!i=spc@cfI~R)s z%kpJN`4QAvX?|#ieBXKOd9bxxNC2Q!>zOAIJNNtV60Cci+l$_T3`EXQGdP~OuGz^xKRi9ne zeg3U}yq3p7>#LK{=z6f@wsqfa9s9o1`fgf}yQ$NA+({$uSf99~$LKlZWcJtn+3)o0 z&wYQk*Mr&abR5ieZ)z`moYng K2>u5}tykyDF33s% literal 0 HcmV?d00001 diff --git a/py-modindex.html b/py-modindex.html new file mode 100644 index 000000000..b039246d2 --- /dev/null +++ b/py-modindex.html @@ -0,0 +1,277 @@ + + + + + + + + Python Module Index — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ +
+ + + + + + +
+ +
+ + +

Python Module Index

+ +
+ d +
+ + + + + + + + + + + + + +
 
+ d
+ datafusion +
    + datafusion.functions.functions +
    + datafusion.object_store.object_store +
+ + +
+ + + +
+
+ +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/search.html b/search.html new file mode 100644 index 000000000..401203150 --- /dev/null +++ b/search.html @@ -0,0 +1,281 @@ + + + + + + + + Search — Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + +
+ + + + +
+ +
+ + + + + + +
+ +
+ +

Search

+ + + + +

+ Searching for multiple words only shows matches that contain + all words. +

+ + +
+ + + +
+ + + +
+ +
+ + +
+ + + +
+
+ +
+ + +
+
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/searchindex.js b/searchindex.js new file mode 100644 index 000000000..c435ee224 --- /dev/null +++ b/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({"docnames": ["api", "api/config", "api/dataframe", "api/execution_context", "api/expression", "api/functions", "api/object_store", "generated/datafusion.Config", "generated/datafusion.DataFrame", "generated/datafusion.Expression", "generated/datafusion.SessionContext", "generated/datafusion.functions.functions", "generated/datafusion.object_store.object_store", "index"], "filenames": ["api.rst", "api/config.rst", "api/dataframe.rst", "api/execution_context.rst", "api/expression.rst", "api/functions.rst", "api/object_store.rst", "generated/datafusion.Config.rst", "generated/datafusion.DataFrame.rst", "generated/datafusion.Expression.rst", "generated/datafusion.SessionContext.rst", "generated/datafusion.functions.functions.rst", "generated/datafusion.object_store.object_store.rst", "index.rst"], "titles": ["API Reference", "Config", "DataFrame", "SessionContext", "Expression", "Functions", "ObjectStore", "datafusion.Config", "datafusion.DataFrame", "datafusion.Expression", "datafusion.SessionContext", "datafusion.functions.functions", "datafusion.object_store.object_store", "DataFusion in Python"], "terms": {"config": [0, 13], "datafus": 0, "datafram": [0, 9, 13], "sessioncontext": [0, 13], "express": [0, 11, 13], "function": [0, 13], "objectstor": [0, 13], "object_stor": 0, "class": [7, 8, 9, 10, 12, 13], "base": [7, 8, 9, 10, 12], "object": [7, 8, 9, 10, 12], "__init__": [7, 8, 9, 10, 13], "method": [7, 8, 9, 10], "static": [7, 9], "from_env": 7, "get": 7, "configur": 7, "from": [7, 8, 9, 11], "environ": [7, 8, 13], "variabl": 7, "option": 7, "get_al": 7, "all": [7, 8, 11], "set": [7, 11], "A": 8, "pydatafram": [8, 10], "i": [8, 10, 11, 13], "represent": [8, 11], "logic": 8, "plan": [8, 10, 13], "an": [8, 9, 10, 11], "api": 8, "compos": 8, "statement": [8, 10, 13], "us": [8, 9, 11], "build": [8, 13], "collect": [8, 13], "execut": [8, 10, 13], "result": [8, 11, 13], "The": [8, 11, 13], "actual": 8, "run": [8, 13], "nativ": 8, "rust": [8, 13], "arrow": [8, 13], "multi": [8, 10, 13], "thread": [8, 10, 13], "aggreg": [8, 13], "cach": 8, "return": [8, 10, 11, 13], "list": 8, "recordbatch": [8, 13], "e": 8, "unless": 8, "some": 8, "order": [8, 11], "specifi": [8, 11], "guarante": 8, "collect_partit": 8, "thi": [8, 11, 13], "vector": 8, "maintain": 8, "input": 8, "partit": 8, "distinct": 8, "filter": 8, "out": 8, "duplic": 8, "row": 8, "except_al": 8, "calcul": 8, "except": 8, "two": 8, "": [8, 11], "must": [8, 11], "have": [8, 13], "exactli": 8, "same": [8, 11], "schema": 8, "explain": 8, "print": 8, "queri": [8, 13], "intersect": 8, "join": 8, "limit": 8, "repartit": 8, "scheme": 8, "repartition_by_hash": 8, "select": [8, 13], "select_column": 8, "show": 8, "20": 8, "line": 8, "default": [8, 11], "sort": [8, 9, 11], "union": 8, "preserv": 8, "union_distinct": 8, "with_column": 8, "with_column_renam": 8, "renam": 8, "one": [8, 11], "column": [8, 9, 13], "appli": 8, "new": [8, 11, 13], "project": 8, "op": 8, "doe": 8, "exist": [8, 9], "write_csv": 8, "write": 8, "csv": [8, 13], "file": [8, 13], "write_json": 8, "json": 8, "write_parquet": 8, "parquet": [8, 13], "pyexpr": 9, "can": [9, 13], "alia": [9, 11], "assign": 9, "name": [9, 10, 13], "cast": 9, "is_nul": [9, 13], "liter": 9, "creat": [9, 11, 13], "pysessioncontext": 10, "abl": 10, "It": [10, 13], "ha": 10, "power": 10, "optim": 10, "physic": 10, "planner": 10, "local": 10, "engin": [10, 13], "perform": 10, "catalog": 10, "create_datafram": [10, 13], "deregister_t": 10, "empty_t": 10, "read_avro": 10, "read_csv": 10, "read_json": 10, "read_parquet": 10, "register_csv": [10, 13], "register_dataset": 10, "register_object_stor": 10, "regist": [10, 13], "store": [10, 13], "given": [10, 11], "register_parquet": 10, "register_record_batch": 10, "register_t": 10, "register_udaf": 10, "register_udf": 10, "session_id": 10, "sql": [10, 13], "whose": 10, "correspond": [10, 11], "tabl": [10, 13], "table_exist": 10, "ab": 11, "aco": 11, "approx_distinct": 11, "arrai": [11, 13], "ascii": 11, "numer": 11, "code": [11, 13], "first": [11, 13], "charact": 11, "argument": 11, "In": 11, "utf8": 11, "encod": 11, "unicod": 11, "point": 11, "other": [11, 13], "multibyt": 11, "asin": 11, "atan": 11, "avg": 11, "bit_length": 11, "number": 11, "bit": 11, "string": 11, "8": [11, 13], "time": 11, "octet_length": 11, "btrim": 11, "remov": 11, "longest": 11, "contain": 11, "onli": [11, 13], "space": 11, "start": 11, "end": 11, "ceil": 11, "character_length": 11, "chr": 11, "concat": 11, "concaten": 11, "text": 11, "null": 11, "ar": 11, "ignor": 11, "concat_w": 11, "separ": 11, "should": 11, "co": 11, "count": 11, "digest": 11, "comput": [11, 13], "binari": 11, "hash": [11, 13], "data": [11, 13], "type": 11, "algorithm": 11, "standard": 11, "md5": 11, "sha224": 11, "sha256": 11, "sha384": 11, "sha512": 11, "blake2": 11, "blake2b": 11, "blake3": 11, "exp": 11, "floor": 11, "in_list": 11, "initcap": 11, "convert": 11, "letter": 11, "each": 11, "word": 11, "upper": 11, "case": 11, "rest": 11, "lower": 11, "sequenc": 11, "alphanumer": 11, "non": 11, "left": 11, "n": 11, "when": [11, 13], "neg": 11, "last": 11, "ln": 11, "log10": 11, "log2": 11, "lpad": 11, "extend": 11, "length": 11, "prepend": 11, "fill": 11, "If": 11, "alreadi": 11, "longer": 11, "than": 11, "truncat": 11, "right": 11, "ltrim": 11, "max": 11, "written": [11, 13], "hexadecim": 11, "min": 11, "now": 11, "current": 11, "date": 11, "byte": 11, "sinc": [11, 13], "version": 11, "accept": 11, "directli": 11, "strip": 11, "trail": 11, "order_bi": 11, "random": 11, "valu": [11, 13], "rang": 11, "0": [11, 13], "x": 11, "1": [11, 13], "regexp_match": 11, "regexp_replac": 11, "replac": 11, "substr": 11, "match": 11, "posix": 11, "regular": 11, "repeat": 11, "occurr": 11, "revers": 11, "round": 11, "rpad": 11, "append": 11, "rtrim": 11, "signum": 11, "sin": 11, "split_part": 11, "split": 11, "delimit": 11, "th": 11, "field": 11, "sqrt": 11, "starts_with": 11, "true": 11, "prefix": 11, "strpo": 11, "index": 11, "within": 11, "zero": [11, 13], "present": 11, "posit": 11, "note": 11, "sum": [11, 13], "tan": 11, "to_hex": 11, "its": [11, 13], "equival": 11, "to_timestamp": 11, "translat": 11, "extra": 11, "delet": 11, "trim": 11, "both": 11, "trunc": 11, "window": 11, "amazons3": 12, "googlecloud": 12, "localfilesystem": 12, "microsoftazur": 12, "librari": 13, "bind": 13, "apach": 13, "memori": 13, "like": 13, "pyspark": 13, "allow": 13, "you": 13, "through": 13, "against": 13, "obtain": 13, "back": 13, "also": 13, "complex": 13, "oper": 13, "major": 13, "advantag": 13, "over": 13, "achiev": 13, "copi": 13, "between": 13, "cost": 13, "apart": 13, "lock": 13, "gil": 13, "those": 13, "Its": 13, "which": 13, "make": 13, "strong": 13, "assumpt": 13, "about": 13, "safeti": 13, "lack": 13, "leak": 13, "technic": 13, "via": 13, "c": 13, "interfac": 13, "simpl": 13, "usag": 13, "import": 13, "col": 13, "pyarrow": 13, "context": 13, "ctx": 13, "batch": 13, "from_arrai": 13, "2": 13, "3": 13, "4": 13, "5": 13, "6": 13, "b": 13, "df": 13, "assert": 13, "7": 13, "9": 13, "we": 13, "echo": 13, "n1": 13, "n2": 13, "n3": 13, "exampl": 13, "And": 13, "def": 13, "is_null_arr": 13, "int64": 13, "bool_": 13, "stabl": 13, "fals": 13, "accumul": 13, "myaccumul": 13, "user": 13, "defin": 13, "self": 13, "_sum": 13, "scalar": 13, "none": 13, "nice": 13, "t": 13, "yet": 13, "break": 13, "as_pi": 13, "merg": 13, "state": 13, "evalu": 13, "my_udaf": 13, "float64": 13, "verifi": 13, "__version__": 13, "assum": 13, "cargo": 13, "workflow": 13, "recommend": 13, "pyo3": 13, "maturin": 13, "bootstrap": 13, "fetch": 13, "repo": 13, "git": 13, "clone": 13, "github": 13, "com": 13, "prepar": 13, "wheel": 13, "python3": 13, "m": 13, "venv": 13, "activ": 13, "sourc": 13, "bin": 13, "itself": 13, "necessari": 13, "u": 13, "r": 13, "requir": 13, "310": 13, "txt": 13, "test": 13, "reli": 13, "submodul": 13, "init": 13, "whenev": 13, "chang": 13, "your": 13, "pull": 13, "sure": 13, "pytest": 13, "To": 13, "tool": 13, "done": 13, "onc": 13, "consid": 13, "piptool": 13, "compil": 13, "gener": 13, "o": 13, "more": 13, "detail": 13, "here": 13}, "objects": {"datafusion": [[7, 0, 1, "", "Config"], [8, 0, 1, "", "DataFrame"], [9, 0, 1, "", "Expression"], [10, 0, 1, "", "SessionContext"]], "datafusion.Config": [[7, 1, 1, "", "__init__"], [7, 1, 1, "", "from_env"], [7, 1, 1, "", "get"], [7, 1, 1, "", "get_all"], [7, 1, 1, "", "set"]], "datafusion.DataFrame": [[8, 1, 1, "", "__init__"], [8, 1, 1, "", "aggregate"], [8, 1, 1, "", "cache"], [8, 1, 1, "", "collect"], [8, 1, 1, "", "collect_partitioned"], [8, 1, 1, "", "distinct"], [8, 1, 1, "", "except_all"], [8, 1, 1, "", "explain"], [8, 1, 1, "", "filter"], [8, 1, 1, "", "intersect"], [8, 1, 1, "", "join"], [8, 1, 1, "", "limit"], [8, 1, 1, "", "repartition"], [8, 1, 1, "", "repartition_by_hash"], [8, 1, 1, "", "schema"], [8, 1, 1, "", "select"], [8, 1, 1, "", "select_columns"], [8, 1, 1, "", "show"], [8, 1, 1, "", "sort"], [8, 1, 1, "", "union"], [8, 1, 1, "", "union_distinct"], [8, 1, 1, "", "with_column"], [8, 1, 1, "", "with_column_renamed"], [8, 1, 1, "", "write_csv"], [8, 1, 1, "", "write_json"], [8, 1, 1, "", "write_parquet"]], "datafusion.Expression": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "alias"], [9, 1, 1, "", "cast"], [9, 1, 1, "", "column"], [9, 1, 1, "", "is_null"], [9, 1, 1, "", "literal"], [9, 1, 1, "", "sort"]], "datafusion.SessionContext": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "catalog"], [10, 1, 1, "", "create_dataframe"], [10, 1, 1, "", "deregister_table"], [10, 1, 1, "", "empty_table"], [10, 1, 1, "", "read_avro"], [10, 1, 1, "", "read_csv"], [10, 1, 1, "", "read_json"], [10, 1, 1, "", "read_parquet"], [10, 1, 1, "", "register_csv"], [10, 1, 1, "", "register_dataset"], [10, 1, 1, "", "register_object_store"], [10, 1, 1, "", "register_parquet"], [10, 1, 1, "", "register_record_batches"], [10, 1, 1, "", "register_table"], [10, 1, 1, "", "register_udaf"], [10, 1, 1, "", "register_udf"], [10, 1, 1, "", "session_id"], [10, 1, 1, "", "sql"], [10, 1, 1, "", "table"], [10, 1, 1, "", "table_exist"], [10, 1, 1, "", "tables"]], "datafusion.functions": [[11, 2, 0, "-", "functions"]], "datafusion.functions.functions": [[11, 3, 1, "", "abs"], [11, 3, 1, "", "acos"], [11, 3, 1, "", "alias"], [11, 3, 1, "", "approx_distinct"], [11, 3, 1, "", "array"], [11, 3, 1, "", "ascii"], [11, 3, 1, "", "asin"], [11, 3, 1, "", "atan"], [11, 3, 1, "", "avg"], [11, 3, 1, "", "bit_length"], [11, 3, 1, "", "btrim"], [11, 3, 1, "", "ceil"], [11, 3, 1, "", "character_length"], [11, 3, 1, "", "chr"], [11, 3, 1, "", "concat"], [11, 3, 1, "", "concat_ws"], [11, 3, 1, "", "cos"], [11, 3, 1, "", "count"], [11, 3, 1, "", "digest"], [11, 3, 1, "", "exp"], [11, 3, 1, "", "floor"], [11, 3, 1, "", "in_list"], [11, 3, 1, "", "initcap"], [11, 3, 1, "", "left"], [11, 3, 1, "", "ln"], [11, 3, 1, "", "log10"], [11, 3, 1, "", "log2"], [11, 3, 1, "", "lower"], [11, 3, 1, "", "lpad"], [11, 3, 1, "", "ltrim"], [11, 3, 1, "", "max"], [11, 3, 1, "", "md5"], [11, 3, 1, "", "min"], [11, 3, 1, "", "now"], [11, 3, 1, "", "octet_length"], [11, 3, 1, "", "order_by"], [11, 3, 1, "", "random"], [11, 3, 1, "", "regexp_match"], [11, 3, 1, "", "regexp_replace"], [11, 3, 1, "", "repeat"], [11, 3, 1, "", "replace"], [11, 3, 1, "", "reverse"], [11, 3, 1, "", "right"], [11, 3, 1, "", "round"], [11, 3, 1, "", "rpad"], [11, 3, 1, "", "rtrim"], [11, 3, 1, "", "sha224"], [11, 3, 1, "", "sha256"], [11, 3, 1, "", "sha384"], [11, 3, 1, "", "sha512"], [11, 3, 1, "", "signum"], [11, 3, 1, "", "sin"], [11, 3, 1, "", "split_part"], [11, 3, 1, "", "sqrt"], [11, 3, 1, "", "starts_with"], [11, 3, 1, "", "strpos"], [11, 3, 1, "", "substr"], [11, 3, 1, "", "sum"], [11, 3, 1, "", "tan"], [11, 3, 1, "", "to_hex"], [11, 3, 1, "", "to_timestamp"], [11, 3, 1, "", "translate"], [11, 3, 1, "", "trim"], [11, 3, 1, "", "trunc"], [11, 3, 1, "", "upper"], [11, 3, 1, "", "window"]], "datafusion.object_store": [[12, 2, 0, "-", "object_store"]], "datafusion.object_store.object_store": [[12, 0, 1, "", "AmazonS3"], [12, 0, 1, "", "GoogleCloud"], [12, 0, 1, "", "LocalFileSystem"], [12, 0, 1, "", "MicrosoftAzure"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:module", "3": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "module", "Python module"], "3": ["py", "function", "Python function"]}, "titleterms": {"api": [0, 13], "refer": [0, 13], "config": [1, 7], "datafram": [2, 8], "sessioncontext": [3, 10], "express": [4, 9], "function": [5, 11], "objectstor": 6, "datafus": [7, 8, 9, 10, 11, 12, 13], "object_stor": 12, "python": 13, "how": 13, "us": 13, "udf": 13, "udaf": 13, "instal": 13, "from": 13, "pip": 13, "develop": 13, "updat": 13, "depend": 13}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx": 56}}) \ No newline at end of file From 195a4785ec1e1f923902143562bdbeb42eac7e84 Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Tue, 6 Dec 2022 22:43:26 +0200 Subject: [PATCH 02/36] Issue #39 - Add .asf.yaml for asf-site (#106) Signed-off-by: Martin Tzvetanov Grigorov Co-authored-by: Sutou Kouhei --- .asf.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .asf.yaml diff --git a/.asf.yaml b/.asf.yaml new file mode 100644 index 000000000..0e22a5e81 --- /dev/null +++ b/.asf.yaml @@ -0,0 +1,34 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +notifications: + commits: commits@arrow.apache.org + issues_status: issues@arrow.apache.org + issues_comment: github@arrow.apache.org + pullrequests: github@arrow.apache.org +github: + description: "Apache Arrow DataFusion Python Bindings" + homepage: https://arrow.apache.org/datafusion-python/ + enabled_merge_buttons: + squash: true + merge: false + rebase: false + features: + issues: true +publish: + whoami: asf-site + subdir: datafusion-python From cb9db9f003f6a607851ff637c83dd12f1b5e3da6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 14 Apr 2023 16:35:54 +0000 Subject: [PATCH 03/36] Publish built docs triggered by 5c90187207e218393297ff3cbe4f08b69049d224 --- .asf.yaml | 11 +- _sources/api/expression.rst.txt | 4 +- .../generated/datafusion.DataFrame.rst.txt | 10 + _sources/generated/datafusion.Expr.rst.txt | 31 + .../generated/datafusion.Expression.rst.txt | 28 - .../datafusion.SessionContext.rst.txt | 7 + _static/doctools.js | 130 +- _static/pygments.css | 1 + _static/searchtools.js | 74 +- _static/sphinx_highlight.js | 144 ++ api.html | 17 +- api/config.html | 13 +- api/dataframe.html | 13 +- api/execution_context.html | 13 +- api/expression.html | 29 +- api/functions.html | 19 +- api/object_store.html | 13 +- generated/datafusion.Config.html | 88 +- generated/datafusion.DataFrame.html | 539 ++++++- ...n.Expression.html => datafusion.Expr.html} | 205 ++- generated/datafusion.SessionContext.html | 437 +++++- generated/datafusion.functions.functions.html | 1347 ++++++++++++++++- .../datafusion.object_store.object_store.html | 56 +- genindex.html | 199 ++- index.html | 45 +- objects.inv | Bin 1456 -> 1819 bytes py-modindex.html | 9 +- search.html | 9 +- searchindex.js | 2 +- 29 files changed, 2976 insertions(+), 517 deletions(-) create mode 100644 _sources/generated/datafusion.Expr.rst.txt delete mode 100644 _sources/generated/datafusion.Expression.rst.txt create mode 100644 _static/sphinx_highlight.js rename generated/{datafusion.Expression.html => datafusion.Expr.html} (52%) diff --git a/.asf.yaml b/.asf.yaml index 0e22a5e81..f27975c84 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -17,18 +17,23 @@ notifications: commits: commits@arrow.apache.org - issues_status: issues@arrow.apache.org - issues_comment: github@arrow.apache.org + issues: github@arrow.apache.org pullrequests: github@arrow.apache.org + jira_options: link label worklog github: description: "Apache Arrow DataFusion Python Bindings" - homepage: https://arrow.apache.org/datafusion-python/ + homepage: https://arrow.apache.org/datafusion enabled_merge_buttons: squash: true merge: false rebase: false features: issues: true + +staging: + whoami: asf-staging + subdir: datafusion-python + publish: whoami: asf-site subdir: datafusion-python diff --git a/_sources/api/expression.rst.txt b/_sources/api/expression.rst.txt index 45923fb54..30137d135 100644 --- a/_sources/api/expression.rst.txt +++ b/_sources/api/expression.rst.txt @@ -18,10 +18,10 @@ .. _api.expression: .. currentmodule:: datafusion -Expression +Expr ========== .. autosummary:: :toctree: ../generated/ - Expression + Expr diff --git a/_sources/generated/datafusion.DataFrame.rst.txt b/_sources/generated/datafusion.DataFrame.rst.txt index e0ddc8651..aa70c2825 100644 --- a/_sources/generated/datafusion.DataFrame.rst.txt +++ b/_sources/generated/datafusion.DataFrame.rst.txt @@ -18,13 +18,18 @@ ~DataFrame.cache ~DataFrame.collect ~DataFrame.collect_partitioned + ~DataFrame.count + ~DataFrame.describe ~DataFrame.distinct ~DataFrame.except_all + ~DataFrame.execution_plan ~DataFrame.explain ~DataFrame.filter ~DataFrame.intersect ~DataFrame.join ~DataFrame.limit + ~DataFrame.logical_plan + ~DataFrame.optimized_logical_plan ~DataFrame.repartition ~DataFrame.repartition_by_hash ~DataFrame.schema @@ -32,6 +37,11 @@ ~DataFrame.select_columns ~DataFrame.show ~DataFrame.sort + ~DataFrame.to_arrow_table + ~DataFrame.to_pandas + ~DataFrame.to_polars + ~DataFrame.to_pydict + ~DataFrame.to_pylist ~DataFrame.union ~DataFrame.union_distinct ~DataFrame.with_column diff --git a/_sources/generated/datafusion.Expr.rst.txt b/_sources/generated/datafusion.Expr.rst.txt new file mode 100644 index 000000000..955ee039a --- /dev/null +++ b/_sources/generated/datafusion.Expr.rst.txt @@ -0,0 +1,31 @@ +datafusion.Expr +=============== + +.. currentmodule:: datafusion + +.. autoclass:: Expr + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Expr.__init__ + ~Expr.alias + ~Expr.canonical_name + ~Expr.cast + ~Expr.column + ~Expr.display_name + ~Expr.is_null + ~Expr.literal + ~Expr.sort + ~Expr.to_variant + + + + + + \ No newline at end of file diff --git a/_sources/generated/datafusion.Expression.rst.txt b/_sources/generated/datafusion.Expression.rst.txt deleted file mode 100644 index 92e9b4c5d..000000000 --- a/_sources/generated/datafusion.Expression.rst.txt +++ /dev/null @@ -1,28 +0,0 @@ -datafusion.Expression -===================== - -.. currentmodule:: datafusion - -.. autoclass:: Expression - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~Expression.__init__ - ~Expression.alias - ~Expression.cast - ~Expression.column - ~Expression.is_null - ~Expression.literal - ~Expression.sort - - - - - - \ No newline at end of file diff --git a/_sources/generated/datafusion.SessionContext.rst.txt b/_sources/generated/datafusion.SessionContext.rst.txt index 965f8b8fc..8ef3db621 100644 --- a/_sources/generated/datafusion.SessionContext.rst.txt +++ b/_sources/generated/datafusion.SessionContext.rst.txt @@ -16,8 +16,15 @@ ~SessionContext.__init__ ~SessionContext.catalog ~SessionContext.create_dataframe + ~SessionContext.create_dataframe_from_logical_plan ~SessionContext.deregister_table ~SessionContext.empty_table + ~SessionContext.execute + ~SessionContext.from_arrow_table + ~SessionContext.from_pandas + ~SessionContext.from_polars + ~SessionContext.from_pydict + ~SessionContext.from_pylist ~SessionContext.read_avro ~SessionContext.read_csv ~SessionContext.read_json diff --git a/_static/doctools.js b/_static/doctools.js index c3db08d1c..527b876ca 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -10,6 +10,13 @@ */ "use strict"; +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + const _ready = (callback) => { if (document.readyState !== "loading") { callback(); @@ -18,73 +25,11 @@ const _ready = (callback) => { } }; -/** - * highlight a given string on a node by wrapping it in - * span elements with the given class name. - */ -const _highlight = (node, addItems, text, className) => { - if (node.nodeType === Node.TEXT_NODE) { - const val = node.nodeValue; - const parent = node.parentNode; - const pos = val.toLowerCase().indexOf(text); - if ( - pos >= 0 && - !parent.classList.contains(className) && - !parent.classList.contains("nohighlight") - ) { - let span; - - const closestNode = parent.closest("body, svg, foreignObject"); - const isInSVG = closestNode && closestNode.matches("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.classList.add(className); - } - - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - parent.insertBefore( - span, - parent.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling - ) - ); - node.nodeValue = val.substr(0, pos); - - if (isInSVG) { - const rect = document.createElementNS( - "http://www.w3.org/2000/svg", - "rect" - ); - const bbox = parent.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute("class", className); - addItems.push({ parent: parent, target: rect }); - } - } - } else if (node.matches && !node.matches("button, select, textarea")) { - node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); - } -}; -const _highlightText = (thisNode, text, className) => { - let addItems = []; - _highlight(thisNode, addItems, text, className); - addItems.forEach((obj) => - obj.parent.insertAdjacentElement("beforebegin", obj.target) - ); -}; - /** * Small JavaScript module for the documentation. */ const Documentation = { init: () => { - Documentation.highlightSearchWords(); Documentation.initDomainIndexTable(); Documentation.initOnKeyListeners(); }, @@ -126,51 +71,6 @@ const Documentation = { Documentation.LOCALE = catalog.locale; }, - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords: () => { - const highlight = - new URLSearchParams(window.location.search).get("highlight") || ""; - const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); - if (terms.length === 0) return; // nothing to do - - // There should never be more than one element matching "div.body" - const divBody = document.querySelectorAll("div.body"); - const body = divBody.length ? divBody[0] : document.querySelector("body"); - window.setTimeout(() => { - terms.forEach((term) => _highlightText(body, term, "highlighted")); - }, 10); - - const searchBox = document.getElementById("searchbox"); - if (searchBox === null) return; - searchBox.appendChild( - document - .createRange() - .createContextualFragment( - '" - ) - ); - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords: () => { - document - .querySelectorAll("#searchbox .highlight-link") - .forEach((el) => el.remove()); - document - .querySelectorAll("span.highlighted") - .forEach((el) => el.classList.remove("highlighted")); - const url = new URL(window.location); - url.searchParams.delete("highlight"); - window.history.replaceState({}, "", url); - }, - /** * helper function to focus on search bar */ @@ -210,15 +110,11 @@ const Documentation = { ) return; - const blacklistedElements = new Set([ - "TEXTAREA", - "INPUT", - "SELECT", - "BUTTON", - ]); document.addEventListener("keydown", (event) => { - if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements - if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; if (!event.shiftKey) { switch (event.key) { @@ -240,10 +136,6 @@ const Documentation = { event.preventDefault(); } break; - case "Escape": - if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; - Documentation.hideSearchWords(); - event.preventDefault(); } } diff --git a/_static/pygments.css b/_static/pygments.css index c5d3a660a..f227e5c6e 100644 --- a/_static/pygments.css +++ b/_static/pygments.css @@ -54,6 +54,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: .highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #000000 } /* Name.Variable */ .highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */ +.highlight .pm { color: #000000; font-weight: bold } /* Punctuation.Marker */ .highlight .w { color: #f8f8f8 } /* Text.Whitespace */ .highlight .mb { color: #0000cf; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */ diff --git a/_static/searchtools.js b/_static/searchtools.js index f2fb7d5cf..e89e34d4e 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -57,14 +57,14 @@ const _removeChildren = (element) => { const _escapeRegExp = (string) => string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string -const _displayItem = (item, highlightTerms, searchTerms) => { +const _displayItem = (item, searchTerms) => { const docBuilder = DOCUMENTATION_OPTIONS.BUILDER; const docUrlRoot = DOCUMENTATION_OPTIONS.URL_ROOT; const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX; const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX; const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; - const [docName, title, anchor, descr] = item; + const [docName, title, anchor, descr, score, _filename] = item; let listItem = document.createElement("li"); let requestUrl; @@ -82,10 +82,9 @@ const _displayItem = (item, highlightTerms, searchTerms) => { requestUrl = docUrlRoot + docName + docFileSuffix; linkUrl = docName + docLinkSuffix; } - const params = new URLSearchParams(); - params.set("highlight", [...highlightTerms].join(" ")); let linkEl = listItem.appendChild(document.createElement("a")); - linkEl.href = linkUrl + "?" + params.toString() + anchor; + linkEl.href = linkUrl + anchor; + linkEl.dataset.score = score; linkEl.innerHTML = title; if (descr) listItem.appendChild(document.createElement("span")).innerHTML = @@ -96,7 +95,7 @@ const _displayItem = (item, highlightTerms, searchTerms) => { .then((data) => { if (data) listItem.appendChild( - Search.makeSearchSummary(data, searchTerms, highlightTerms) + Search.makeSearchSummary(data, searchTerms) ); }); Search.output.appendChild(listItem); @@ -116,15 +115,14 @@ const _finishSearch = (resultCount) => { const _displayNextItem = ( results, resultCount, - highlightTerms, searchTerms ) => { // results left, load the summary and display it // this is intended to be dynamic (don't sub resultsCount) if (results.length) { - _displayItem(results.pop(), highlightTerms, searchTerms); + _displayItem(results.pop(), searchTerms); setTimeout( - () => _displayNextItem(results, resultCount, highlightTerms, searchTerms), + () => _displayNextItem(results, resultCount, searchTerms), 5 ); } @@ -237,6 +235,12 @@ const Search = { * execute search (requires search index to be loaded) */ query: (query) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + const allTitles = Search._index.alltitles; + const indexEntries = Search._index.indexentries; + // stem the search terms and add them to the correct list const stemmer = new Stemmer(); const searchTerms = new Set(); @@ -264,6 +268,10 @@ const Search = { } }); + if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js + localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" ")) + } + // console.debug("SEARCH: searching for:"); // console.info("required: ", [...searchTerms]); // console.info("excluded: ", [...excludedTerms]); @@ -272,6 +280,40 @@ const Search = { let results = []; _removeChildren(document.getElementById("search-progress")); + const queryLower = query.toLowerCase(); + for (const [title, foundTitles] of Object.entries(allTitles)) { + if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) { + for (const [file, id] of foundTitles) { + let score = Math.round(100 * queryLower.length / title.length) + results.push([ + docNames[file], + titles[file] !== title ? `${titles[file]} > ${title}` : title, + id !== null ? "#" + id : "", + null, + score, + filenames[file], + ]); + } + } + } + + // search for explicit entries in index directives + for (const [entry, foundEntries] of Object.entries(indexEntries)) { + if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) { + for (const [file, id] of foundEntries) { + let score = Math.round(100 * queryLower.length / entry.length) + results.push([ + docNames[file], + titles[file], + id ? "#" + id : "", + null, + score, + filenames[file], + ]); + } + } + } + // lookup as object objectTerms.forEach((term) => results.push(...Search.performObjectSearch(term, objectTerms)) @@ -318,7 +360,7 @@ const Search = { // console.info("search results:", Search.lastresults); // print the results - _displayNextItem(results, results.length, highlightTerms, searchTerms); + _displayNextItem(results, results.length, searchTerms); }, /** @@ -399,8 +441,8 @@ const Search = { // prepare search const terms = Search._index.terms; const titleTerms = Search._index.titleterms; - const docNames = Search._index.docnames; const filenames = Search._index.filenames; + const docNames = Search._index.docnames; const titles = Search._index.titles; const scoreMap = new Map(); @@ -497,11 +539,9 @@ const Search = { /** * helper function to return a node containing the * search summary for a given text. keywords is a list - * of stemmed words, highlightWords is the list of normal, unstemmed - * words. the first one is used to find the occurrence, the - * latter for highlighting it. + * of stemmed words. */ - makeSearchSummary: (htmlText, keywords, highlightWords) => { + makeSearchSummary: (htmlText, keywords) => { const text = Search.htmlToText(htmlText); if (text === "") return null; @@ -519,10 +559,6 @@ const Search = { summary.classList.add("context"); summary.textContent = top + text.substr(startWithContext, 240).trim() + tail; - highlightWords.forEach((highlightWord) => - _highlightText(summary, highlightWord, "highlighted") - ); - return summary; }, }; diff --git a/_static/sphinx_highlight.js b/_static/sphinx_highlight.js new file mode 100644 index 000000000..aae669d7e --- /dev/null +++ b/_static/sphinx_highlight.js @@ -0,0 +1,144 @@ +/* Highlighting utilities for Sphinx HTML documentation. */ +"use strict"; + +const SPHINX_HIGHLIGHT_ENABLED = true + +/** + * highlight a given string on a node by wrapping it in + * span elements with the given class name. + */ +const _highlight = (node, addItems, text, className) => { + if (node.nodeType === Node.TEXT_NODE) { + const val = node.nodeValue; + const parent = node.parentNode; + const pos = val.toLowerCase().indexOf(text); + if ( + pos >= 0 && + !parent.classList.contains(className) && + !parent.classList.contains("nohighlight") + ) { + let span; + + const closestNode = parent.closest("body, svg, foreignObject"); + const isInSVG = closestNode && closestNode.matches("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.classList.add(className); + } + + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + parent.insertBefore( + span, + parent.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling + ) + ); + node.nodeValue = val.substr(0, pos); + + if (isInSVG) { + const rect = document.createElementNS( + "http://www.w3.org/2000/svg", + "rect" + ); + const bbox = parent.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute("class", className); + addItems.push({ parent: parent, target: rect }); + } + } + } else if (node.matches && !node.matches("button, select, textarea")) { + node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); + } +}; +const _highlightText = (thisNode, text, className) => { + let addItems = []; + _highlight(thisNode, addItems, text, className); + addItems.forEach((obj) => + obj.parent.insertAdjacentElement("beforebegin", obj.target) + ); +}; + +/** + * Small JavaScript module for the documentation. + */ +const SphinxHighlight = { + + /** + * highlight the search words provided in localstorage in the text + */ + highlightSearchWords: () => { + if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight + + // get and clear terms from localstorage + const url = new URL(window.location); + const highlight = + localStorage.getItem("sphinx_highlight_terms") + || url.searchParams.get("highlight") + || ""; + localStorage.removeItem("sphinx_highlight_terms") + url.searchParams.delete("highlight"); + window.history.replaceState({}, "", url); + + // get individual terms from highlight string + const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); + if (terms.length === 0) return; // nothing to do + + // There should never be more than one element matching "div.body" + const divBody = document.querySelectorAll("div.body"); + const body = divBody.length ? divBody[0] : document.querySelector("body"); + window.setTimeout(() => { + terms.forEach((term) => _highlightText(body, term, "highlighted")); + }, 10); + + const searchBox = document.getElementById("searchbox"); + if (searchBox === null) return; + searchBox.appendChild( + document + .createRange() + .createContextualFragment( + '" + ) + ); + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords: () => { + document + .querySelectorAll("#searchbox .highlight-link") + .forEach((el) => el.remove()); + document + .querySelectorAll("span.highlighted") + .forEach((el) => el.classList.remove("highlighted")); + localStorage.removeItem("sphinx_highlight_terms") + }, + + initEscapeListener: () => { + // only install a listener if it is really needed + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return; + if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) { + SphinxHighlight.hideSearchWords(); + event.preventDefault(); + } + }); + }, +}; + +_ready(SphinxHighlight.highlightSearchWords); +_ready(SphinxHighlight.initEscapeListener); diff --git a/api.html b/api.html index c47e4600f..2905f0b2b 100644 --- a/api.html +++ b/api.html @@ -4,7 +4,7 @@ - + API Reference — Arrow DataFusion documentation @@ -34,6 +34,7 @@ + @@ -135,7 +136,7 @@
  • - Expression + Expr @@ -214,7 +215,7 @@ @@ -249,8 +250,8 @@
  • datafusion.SessionContext
  • -
  • Expression
  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -450,13 +465,13 @@

    Module Contents
    -abstract build_table(input_item: Any, table_name: str, **kwarg) datafusion.common.SqlTable
    +abstract build_table(input_item: Any, table_name: str, **kwarg: Any) datafusion.common.SqlTable

    Create a table from the input source.

    -abstract is_correct_input(input_item: Any, table_name: str, **kwargs) bool
    +abstract is_correct_input(input_item: Any, table_name: str, **kwargs: Any) bool

    Returns True if the input is valid.

    diff --git a/autoapi/datafusion/input/index.html b/autoapi/datafusion/input/index.html index 896164da6..1f368148a 100644 --- a/autoapi/datafusion/input/index.html +++ b/autoapi/datafusion/input/index.html @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -365,6 +380,47 @@ Submodules
  • +
  • + + Classes + +
  • +
  • + + Package Contents + + +
  • @@ -398,6 +454,39 @@

    Submodulesdatafusion.input.location + +
    +

    Classes

    + + + + + + +

    LocationInputPlugin

    Input Plugin for everything.

    +
    +
    +

    Package Contents

    +
    +
    +class datafusion.input.LocationInputPlugin
    +

    Bases: datafusion.input.base.BaseInputSource

    +

    Input Plugin for everything.

    +

    This can be read in from a file (on disk, remote etc.).

    +
    +
    +build_table(input_item: str, table_name: str, **kwargs: Any) datafusion.common.SqlTable
    +

    Create a table from the input source.

    +
    + +
    +
    +is_correct_input(input_item: Any, table_name: str, **kwargs: Any) bool
    +

    Returns True if the input is valid.

    +
    + +
    +
    diff --git a/autoapi/datafusion/input/location/index.html b/autoapi/datafusion/input/location/index.html index 9d4668215..2be427480 100644 --- a/autoapi/datafusion/input/location/index.html +++ b/autoapi/datafusion/input/location/index.html @@ -34,7 +34,7 @@ - + @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@ +

  • + + datafusion.io + +
  • datafusion.object_store @@ -445,13 +460,13 @@

    Module Contents
    -build_table(input_file: str, table_name: str, **kwargs) datafusion.common.SqlTable
    +build_table(input_item: str, table_name: str, **kwargs: Any) datafusion.common.SqlTable

    Create a table from the input source.

    -is_correct_input(input_item: Any, table_name: str, **kwargs)
    +is_correct_input(input_item: Any, table_name: str, **kwargs: Any) bool

    Returns True if the input is valid.

    @@ -473,10 +488,10 @@

    Module Contentsdatafusion.input.base

    - +

    next

    -

    datafusion.object_store

    +

    datafusion.io

    diff --git a/autoapi/datafusion/io/index.html b/autoapi/datafusion/io/index.html new file mode 100644 index 000000000..3ce943551 --- /dev/null +++ b/autoapi/datafusion/io/index.html @@ -0,0 +1,639 @@ + + + + + + + + datafusion.io — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    +

    datafusion.io

    +

    IO read functions using global context.

    +
    +

    Functions

    + + + + + + + + + + + + + + + +

    read_avro(→ datafusion.dataframe.DataFrame)

    Create a DataFrame for reading Avro data source.

    read_csv(→ datafusion.dataframe.DataFrame)

    Read a CSV data source.

    read_json(→ datafusion.dataframe.DataFrame)

    Read a line-delimited JSON data source.

    read_parquet(→ datafusion.dataframe.DataFrame)

    Read a Parquet source into a Dataframe.

    +
    +
    +

    Module Contents

    +
    +
    +datafusion.io.read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str]] | None = None, file_extension: str = '.avro') datafusion.dataframe.DataFrame
    +

    Create a DataFrame for reading Avro data source.

    +

    This function will use the global context. Any functions or tables registered +with another context may not be accessible when used with a DataFrame created +using this function.

    +
    +
    Parameters:
    +
      +
    • path – Path to the Avro file.

    • +
    • schema – The data source schema.

    • +
    • file_partition_cols – Partition columns.

    • +
    • file_extension – File extension to select.

    • +
    +
    +
    Returns:
    +

    DataFrame representation of the read Avro file

    +
    +
    +
    + +
    +
    +datafusion.io.read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) datafusion.dataframe.DataFrame
    +

    Read a CSV data source.

    +

    This function will use the global context. Any functions or tables registered +with another context may not be accessible when used with a DataFrame created +using this function.

    +
    +
    Parameters:
    +
      +
    • path – Path to the CSV file

    • +
    • schema – An optional schema representing the CSV files. If None, the +CSV reader will try to infer it based on data in file.

    • +
    • has_header – Whether the CSV file have a header. If schema inference +is run on a file with no headers, default column names are +created.

    • +
    • delimiter – An optional column delimiter.

    • +
    • schema_infer_max_records – Maximum number of rows to read from CSV +files for schema inference if needed.

    • +
    • file_extension – File extension; only files with this extension are +selected for data input.

    • +
    • table_partition_cols – Partition columns.

    • +
    • file_compression_type – File compression type.

    • +
    +
    +
    Returns:
    +

    DataFrame representation of the read CSV files

    +
    +
    +
    + +
    +
    +datafusion.io.read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) datafusion.dataframe.DataFrame
    +

    Read a line-delimited JSON data source.

    +

    This function will use the global context. Any functions or tables registered +with another context may not be accessible when used with a DataFrame created +using this function.

    +
    +
    Parameters:
    +
      +
    • path – Path to the JSON file.

    • +
    • schema – The data source schema.

    • +
    • schema_infer_max_records – Maximum number of rows to read from JSON +files for schema inference if needed.

    • +
    • file_extension – File extension; only files with this extension are +selected for data input.

    • +
    • table_partition_cols – Partition columns.

    • +
    • file_compression_type – File compression type.

    • +
    +
    +
    Returns:
    +

    DataFrame representation of the read JSON files.

    +
    +
    +
    + +
    +
    +datafusion.io.read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr]] | None = None) datafusion.dataframe.DataFrame
    +

    Read a Parquet source into a Dataframe.

    +

    This function will use the global context. Any functions or tables registered +with another context may not be accessible when used with a DataFrame created +using this function.

    +
    +
    Parameters:
    +
      +
    • path – Path to the Parquet file.

    • +
    • table_partition_cols – Partition columns.

    • +
    • parquet_pruning – Whether the parquet reader should use the predicate +to prune row groups.

    • +
    • file_extension – File extension; only files with this extension are +selected for data input.

    • +
    • skip_metadata – Whether the parquet reader should skip any metadata +that may be in the file schema. This can help avoid schema +conflicts due to metadata.

    • +
    • schema – An optional schema representing the parquet files. If None, +the parquet reader will try to infer it based on data in the +file.

    • +
    • file_sort_order – Sort order for the file.

    • +
    +
    +
    Returns:
    +

    DataFrame representation of the read Parquet files

    +
    +
    +
    + +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/autoapi/datafusion/object_store/index.html b/autoapi/datafusion/object_store/index.html index 71ad4a83f..b27718f02 100644 --- a/autoapi/datafusion/object_store/index.html +++ b/autoapi/datafusion/object_store/index.html @@ -35,7 +35,7 @@ - + @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -499,11 +514,11 @@

    Module Contents +

    previous

    -

    datafusion.input.location

    +

    datafusion.io

    diff --git a/autoapi/datafusion/plan/index.html b/autoapi/datafusion/plan/index.html index ddf72b353..df79d85d4 100644 --- a/autoapi/datafusion/plan/index.html +++ b/autoapi/datafusion/plan/index.html @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -608,7 +623,7 @@

    Module Contents
    -children() List[ExecutionPlan]
    +children() list[ExecutionPlan]

    Get a list of children ExecutionPlan that act as inputs to this plan.

    The returned list will be empty for leaf nodes such as scans, will contain a single value for unary nodes, or two values for binary nodes (such as joins).

    @@ -707,7 +722,7 @@

    Module Contents
    -inputs() List[LogicalPlan]
    +inputs() list[LogicalPlan]

    Returns the list of inputs to the logical plan.

    diff --git a/autoapi/datafusion/record_batch/index.html b/autoapi/datafusion/record_batch/index.html index f322281dc..edeb5af68 100644 --- a/autoapi/datafusion/record_batch/index.html +++ b/autoapi/datafusion/record_batch/index.html @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -497,7 +512,7 @@

    Classes¶ - + @@ -510,13 +525,13 @@

    Module Contents
    class datafusion.record_batch.RecordBatch(record_batch: datafusion._internal.RecordBatch)
    -

    This class is essentially a wrapper for pyarrow.RecordBatch.

    +

    This class is essentially a wrapper for pa.RecordBatch.

    This constructor is generally not called by the end user.

    See the RecordBatchStream iterator for generating this class.

    to_pyarrow() pyarrow.RecordBatch
    -

    Convert to pyarrow.RecordBatch.

    +

    Convert to pa.RecordBatch.

    diff --git a/autoapi/datafusion/substrait/index.html b/autoapi/datafusion/substrait/index.html index 9b71cde55..87028dab2 100644 --- a/autoapi/datafusion/substrait/index.html +++ b/autoapi/datafusion/substrait/index.html @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@ +

  • + + datafusion.io + +
  • datafusion.object_store diff --git a/autoapi/datafusion/udf/index.html b/autoapi/datafusion/udf/index.html index 5452e5911..9f0f67409 100644 --- a/autoapi/datafusion/udf/index.html +++ b/autoapi/datafusion/udf/index.html @@ -126,6 +126,11 @@

    @@ -306,6 +316,11 @@

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -654,6 +669,42 @@
  • +
  • + + + + WindowUDF._create_window_udf() + + + +
  • +
  • + + + + WindowUDF._create_window_udf_decorator() + + + +
  • +
  • + + + + WindowUDF._get_default_name() + + + +
  • +
  • + + + + WindowUDF._normalize_input_types() + + + +
  • @@ -684,10 +735,28 @@
  • - + + + + udaf + + + +
  • +
  • + + + + udf + + + +
  • +
  • + - _W + udwf @@ -725,7 +794,13 @@

    Attributes

  • - + + + + + + + @@ -770,13 +845,13 @@

    Module Contents
    -abstract merge(states: List[pyarrow.Array]) None
    +abstract merge(states: list[pyarrow.Array]) None

    Merge a set of states.

    -abstract state() List[pyarrow.Scalar]
    +abstract state() list[pyarrow.Scalar]

    Return the current state.

    @@ -790,12 +865,12 @@

    Module Contents
    -class datafusion.udf.AggregateUDF(name: str | None, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    +class datafusion.udf.AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)

    Class for performing scalar user-defined functions (UDF).

    Aggregate UDFs operate on a group of rows and return a single value. See also ScalarUDF for operating on a row by row basis.

    Instantiate a user-defined aggregate function (UDAF).

    -

    See udaf() for a convenience function and argument +

    See udaf() for a convenience function and argument descriptions.

    @@ -807,44 +882,78 @@

    Module Contents
    -static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    -

    Create a new User-Defined Aggregate Function.

    -

    If your Accumulator can be instantiated with no arguments, you -can simply pass it’s type as accum. If you need to pass additional arguments -to it’s constructor, you can define a lambda or a factory method. During runtime -the Accumulator will be constructed for every instance in -which this UDAF is used. The following examples are all valid.

    -
    import pyarrow as pa
    -import pyarrow.compute as pc
    -
    -class Summarize(Accumulator):
    -    def __init__(self, bias: float = 0.0):
    -        self._sum = pa.scalar(bias)
    -
    -    def state(self) -> List[pa.Scalar]:
    -        return [self._sum]
    -
    -    def update(self, values: pa.Array) -> None:
    -        self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())
    -
    -    def merge(self, states: List[pa.Array]) -> None:
    -        self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())
    -
    -    def evaluate(self) -> pa.Scalar:
    -        return self._sum
    -
    -def sum_bias_10() -> Summarize:
    -    return Summarize(10.0)
    -
    -udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()], "immutable")
    -udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()], "immutable")
    -udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(), [pa.float64()], "immutable")
    -
    -
    +static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]

    +
    +static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    +

    Create a new User-Defined Aggregate Function (UDAF).

    +

    This class allows you to define an aggregate function that can be used in +data aggregation or window function calls.

    +
    +
    Usage:
      +
    • +
      As a function: Call `udaf(accum, input_types, return_type, state_type,

      volatility, name)`.

      +
      +
      +
    • +
    • +
      As a decorator: Use `@udaf(input_types, return_type, state_type,

      volatility, name)`.

      +
      +
      +
    • +
    +

    When using udaf as a decorator, do not pass `accum` explicitly.

    +
    +
    +

    Function example:

    +
    +

    If your :py:class:Accumulator can be instantiated with no arguments, you +can simply pass it’s type as accum. If you need to pass additional +arguments to it’s constructor, you can define a lambda or a factory method. +During runtime the :py:class:Accumulator will be constructed for every +instance in which this UDAF is used. The following examples are all valid. +``` +import pyarrow as pa +import pyarrow.compute as pc

    +
    +
    class Summarize(Accumulator):
    +
    def __init__(self, bias: float = 0.0):

    self._sum = pa.scalar(bias)

    +
    +
    def state(self) -> list[pa.Scalar]:

    return [self._sum]

    +
    +
    def update(self, values: pa.Array) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())

    +
    +
    def merge(self, states: list[pa.Array]) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())

    +
    +
    def evaluate(self) -> pa.Scalar:

    return self._sum

    +
    +
    +
    +
    def sum_bias_10() -> Summarize:

    return Summarize(10.0)

    +
    +
    udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    +
    +
    udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    +
    +
    udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),

    [pa.float64()], “immutable”)

    +
    +
    +

    ```

    +
    +
    +
    Decorator example:

    ``` +@udaf(pa.float64(), pa.float64(), [pa.float64()], “immutable”) +def udf4() -> Summarize:

    +
    +

    return Summarize(10.0)

    +
    +

    ```

    +
    +
    Parameters:
      -
    • accum – The accumulator python function.

    • +
    • accum – The accumulator python function. Only needed when calling as a +function. Skip this argument when using `udaf` as a decorator.

    • input_types – The data types of the arguments to accum.

    • return_type – The data type of the return value.

    • state_type – The data types of the intermediate accumulation.

    • @@ -868,12 +977,12 @@

      Module Contents
      -class datafusion.udf.ScalarUDF(name: str | None, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
      +class datafusion.udf.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)

      Class for performing scalar user-defined functions (UDF).

      Scalar UDFs operate on a row by row basis. See also AggregateUDF for operating on a group of rows.

      Instantiate a scalar user-defined function (UDF).

      -

      See helper method udf() for argument details.

      +

      See helper method udf() for argument details.

      __call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
      @@ -884,28 +993,56 @@

      Module Contents
      -static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
      -

      Create a new User-Defined Function.

      +static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF] +
      +static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
      +

      Create a new User-Defined Function (UDF).

      +

      This class can be used both as a function and as a decorator.

      +
      +
      Usage:
        +
      • As a function: Call udf(func, input_types, return_type, volatility, +name).

      • +
      • As a decorator: Use @udf(input_types, return_type, volatility, +name). In this case, do not pass func explicitly.

      • +
      +
      +
      Parameters:
        -
      • func – A callable python function.

      • -
      • input_types – The data types of the arguments to func. This list -must be of the same length as the number of arguments.

      • -
      • return_type – The data type of the return value from the python -function.

      • -
      • volatility – See Volatility for allowed values.

      • -
      • name – A descriptive name for the function.

      • +
      • func (Callable, optional) – Only needed when calling as a function. +Skip this argument when using udf as a decorator.

      • +
      • input_types (list[pa.DataType]) – The data types of the arguments +to func. This list must be of the same length as the number of +arguments.

      • +
      • return_type (_R) – The data type of the return value from the function.

      • +
      • volatility (Volatility | str) – See Volatility for allowed values.

      • +
      • name (Optional[str]) – A descriptive name for the function.

      Returns:
      -

      -
      A user-defined aggregate function, which can be used in either data

      aggregation or window function calls.

      -
      -
      -

      +

      A user-defined function that can be used in SQL expressions, +data aggregation, or window function calls.

      +

      Example

      +

      Using `udf` as a function: +``` +def double_func(x):

      +
      +

      return x * 2

      +
      +

      double_udf = udf(double_func, [pa.int32()], pa.int32(), +“volatile”, “double_it”) +```

      +

      Using `udf` as a decorator: +``` +@udf([pa.int32()], pa.int32(), “volatile”, “double_it”) +def double_udf(x):

      +
      +

      return x * 2

      +
      +

      ```

      @@ -925,7 +1062,7 @@

      Module Contents
      -__str__()
      +__str__() str

      Returns the string equivalent.

      @@ -1022,9 +1159,12 @@

      Module Contentsrow_number(), rank(), -dense_rank(), percent_rank(), -cume_dist(), lead(), +row_number(), +rank(), +dense_rank(), +percent_rank(), +cume_dist(), +lead(), and lag().

      It produces the result of all rows in a single pass. It expects to receive the entire partition as the value and @@ -1139,12 +1279,12 @@

      Module Contents
      -class datafusion.udf.WindowUDF(name: str | None, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
      +class datafusion.udf.WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)

      Class for performing window user-defined functions (UDF).

      Window UDFs operate on a partition of rows. See also ScalarUDF for operating on a row by row basis.

      Instantiate a user-defined window function (UDWF).

      -

      See udwf() for a convenience function and argument +

      See udwf() for a convenience function and argument descriptions.

      @@ -1155,44 +1295,86 @@

      Module Contents -
      -static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
      -

      Create a new User-Defined Window Function.

      -

      If your WindowEvaluator can be instantiated with no arguments, you -can simply pass it’s type as func. If you need to pass additional arguments -to it’s constructor, you can define a lambda or a factory method. During runtime -the WindowEvaluator will be constructed for every instance in -which this UDWF is used. The following examples are all valid.

      -
      import pyarrow as pa
      +
      +static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
      +

      Create a WindowUDF instance from function arguments.

      +

      -class BiasedNumbers(WindowEvaluator): - def __init__(self, start: int = 0) -> None: - self.start = start +
      +
      +static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
      +

      Create a decorator for a WindowUDF.

      +
      - def evaluate_all(self, values: list[pa.Array], num_rows: int) -> pa.Array: - return pa.array([self.start + i for i in range(num_rows)]) +
      +
      +static _get_default_name(func: Callable) str
      +

      Get the default name for a function based on its attributes.

      +
      -def bias_10() -> BiasedNumbers: - return BiasedNumbers(10) +
      +
      +static _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) list[pyarrow.DataType]
      +

      Convert a single DataType to a list if needed.

      +
      -udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable") -udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable") -udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable") - - +
      +
      +static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
      +
      +static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
      +

      Create a new User-Defined Window Function (UDWF).

      +

      This class can be used both as a function and as a decorator.

      +
      +
      Usage:
        +
      • As a function: Call udwf(func, input_types, return_type, volatility, +name).

      • +
      • As a decorator: Use @udwf(input_types, return_type, volatility, +name). When using udwf as a decorator, do not pass `func` +explicitly.

      • +
      +
      +
      Function example:

      ``` +import pyarrow as pa

      +
      +
      class BiasedNumbers(WindowEvaluator):
      +
      def __init__(self, start: int = 0) -> None:

      self.start = start

      +
      +
      def evaluate_all(self, values: list[pa.Array],

      num_rows: int) -> pa.Array: +return pa.array([self.start + i for i in range(num_rows)])

      +
      +
      +
      +
      def bias_10() -> BiasedNumbers:

      return BiasedNumbers(10)

      +
      +
      +

      udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), “immutable”) +udwf2 = udwf(bias_10, pa.int64(), pa.int64(), “immutable”) +udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), “immutable”)

      +

      ```

      +
      +
      Decorator example:

      ``` +@udwf(pa.int64(), pa.int64(), “immutable”) +def biased_numbers() -> BiasedNumbers:

      +
      +

      return BiasedNumbers(10)

      +
      +

      ```

      +
      +
      Parameters:
        -
      • func – A callable to create the window function.

      • -
      • input_types – The data types of the arguments to func.

      • +
      • funcOnly needed when calling as a function. Skip this argument when +using `udwf` as a decorator.

      • +
      • input_types – The data types of the arguments.

      • return_type – The data type of the return value.

      • volatility – See Volatility for allowed values.

      • -
      • arguments – A list of arguments to pass in to the __init__ method for accum.

      • name – A descriptive name for the function.

      Returns:
      -

      A user-defined window function.

      +

      A user-defined window function that can be used in window function calls.

      @@ -1210,8 +1392,18 @@

      Module Contents -
      -datafusion.udf._W
      +
      +datafusion.udf.udaf
      +

    + +
    +
    +datafusion.udf.udf
    +
    + +
    +
    +datafusion.udf.udwf
    diff --git a/autoapi/index.html b/autoapi/index.html index da449fcf0..40c2c4c10 100644 --- a/autoapi/index.html +++ b/autoapi/index.html @@ -35,7 +35,7 @@ - + @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@ +

  • + + datafusion.io + +
  • datafusion.object_store @@ -392,6 +407,7 @@

    API Referencedatafusion.input.location

  • +
  • datafusion.io
  • datafusion.object_store
  • datafusion.plan
  • datafusion.record_batch
  • @@ -415,11 +431,11 @@

    API Reference +

    previous

    -

    Introduction

    +

    Python Extensions

    diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html new file mode 100644 index 000000000..7abc76616 --- /dev/null +++ b/contributor-guide/ffi.html @@ -0,0 +1,649 @@ + + + + + + + + Python Extensions — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    +

    Python Extensions

    +

    The DataFusion in Python project is designed to allow users to extend its functionality in a few core +areas. Ideally many users would like to package their extensions as a Python package and easily +integrate that package with this project. This page serves to describe some of the challenges we face +when doing these integrations and the approach our project uses.

    +
    +

    The Primary Issue

    +

    Suppose you wish to use DataFusion and you have a custom data source that can produce tables that +can then be queried against, similar to how you can register a CSV or +Parquet file. In DataFusion terminology, you likely want to implement a +Custom Table Provider. In an effort to make your data source +as performant as possible and to utilize the features of DataFusion, you may decide to write +your source in Rust and then expose it through PyO3 as a Python library.

    +

    At first glance, it may appear the best way to do this is to add the datafusion-python +crate as a dependency, provide a PyTable, and then to register it with the +SessionContext. Unfortunately, this will not work.

    +

    When you produce your code as a Python library and it needs to interact with the DataFusion +library, at the lowest level they communicate through an Application Binary Interface (ABI). +The acronym sounds similar to API (Application Programming Interface), but it is distinctly +different.

    +

    The ABI sets the standard for how these libraries can share data and functions between each +other. One of the key differences between Rust and other programming languages is that Rust +does not have a stable ABI. What this means in practice is that if you compile a Rust library +with one version of the rustc compiler and I compile another library to interface with it +but I use a different version of the compiler, there is no guarantee the interface will be +the same.

    +

    In practice, this means that a Python library built with datafusion-python as a Rust +dependency will generally not be compatible with the DataFusion Python package, even +if they reference the same version of datafusion-python. If you attempt to do this, it may +work on your local computer if you have built both packages with the same optimizations. +This can sometimes lead to a false expectation that the code will work, but it frequently +breaks the moment you try to use your package against the released packages.

    +

    You can find more information about the Rust ABI in their +online documentation.

    +
    +
    +

    The FFI Approach

    +

    Rust supports interacting with other programming languages through it’s Foreign Function +Interface (FFI). The advantage of using the FFI is that it enables you to write data structures +and functions that have a stable ABI. The allows you to use Rust code with C, Python, and +other languages. In fact, the PyO3 library uses the FFI to share data +and functions between Python and Rust.

    +

    The approach we are taking in the DataFusion in Python project is to incrementally expose +more portions of the DataFusion project via FFI interfaces. This allows users to write Rust +code that does not require the datafusion-python crate as a dependency, expose their +code in Python via PyO3, and have it interact with the DataFusion Python package.

    +

    Early adopters of this approach include delta-rs +who has adapted their Table Provider for use in `datafusion-python` with only a few lines +of code. Also, the DataFusion Python project uses the existing definitions from +Apache Arrow CStream Interface +to support importing and exporting tables. Any Python package that supports reading +the Arrow C Stream interface can work with DataFusion Python out of the box! You can read +more about working with Arrow sources in the Data Sources +page.

    +

    To learn more about the Foreign Function Interface in Rust, the +Rustonomicon is a good resource.

    +
    +
    +

    Inspiration from Arrow

    +

    DataFusion is built upon Apache Arrow. The canonical Python +Arrow implementation, pyarrow provides +an excellent way to share Arrow data between Python projects without performing any copy +operations on the data. They do this by using a well defined set of interfaces. You can +find the details about their stream interface +here. The +Rust Arrow Implementation also supports these +C style definitions via the Foreign Function Interface.

    +

    In addition to using these interfaces to transfer Arrow data between libraries, pyarrow +goes one step further to make sharing the interfaces easier in Python. They do this +by exposing PyCapsules that contain the expected functionality.

    +

    You can learn more about PyCapsules from the official +Python online documentation. PyCapsules +have excellent support in PyO3 already. The +PyO3 online documentation is a good source +for more details on using PyCapsules in Rust.

    +

    Two lessons we leverage from the Arrow project in DataFusion Python are:

    +
      +
    • We reuse the existing Arrow FFI functionality wherever possible.

    • +
    • We expose PyCapsules that contain a FFI stable struct.

    • +
    +
    +
    +

    Implementation Details

    +

    The bulk of the code necessary to perform our FFI operations is in the upstream +DataFusion core repository. You can review the code and +documentation in the datafusion-ffi crate.

    +

    Our FFI implementation is narrowly focused at sharing data and functions with Rust backed +libraries. This allows us to use the abi_stable crate. +This is an excellent crate that allows for easy conversion between Rust native types +and FFI-safe alternatives. For example, if you needed to pass a Vec<String> via FFI, +you can simply convert it to a RVec<RString> in an intuitive manner. It also supports +features like RResult and ROption that do not have an obvious translation to a +C equivalent.

    +

    The datafusion-ffi crate has been designed to make it easy to convert from DataFusion +traits into their FFI counterparts. For example, if you have defined a custom +TableProvider +and you want to create a sharable FFI counterpart, you could write:

    +
    let my_provider = MyTableProvider::default();
    +let ffi_provider = FFI_TableProvider::new(Arc::new(my_provider), false, None);
    +
    +
    +

    If you were interfacing with a library that provided the above FFI_TableProvider and +you needed to turn it back into an TableProvider, you can turn it into a +ForeignTableProvider with implements the TableProvider trait.

    +
    let foreign_provider: ForeignTableProvider = ffi_provider.into();
    +
    +
    +

    If you review the code in datafusion-ffi you will find that each of the traits we share +across the boundary has two portions, one with a FFI_ prefix and one with a Foreign +prefix. This is used to distinguish which side of the FFI boundary that struct is +designed to be used on. The structures with the FFI_ prefix are to be used on the +provider of the structure. In the example we’re showing, this means the code that has +written the underlying TableProvider implementation to access your custom data source. +The structures with the Foreign prefix are to be used by the receiver. In this case, +it is the datafusion-python library.

    +

    In order to share these FFI structures, we need to wrap them in some kind of Python object +that can be used to interface from one package to another. As described in the above +section on our inspiration from Arrow, we use PyCapsule. We can create a PyCapsule +for our provider thusly:

    +
    let name = CString::new("datafusion_table_provider")?;
    +let my_capsule = PyCapsule::new_bound(py, provider, Some(name))?;
    +
    +
    +

    On the receiving side, turn this pycapsule object into the FFI_TableProvider, which +can then be turned into a ForeignTableProvider the associated code is:

    +
    let capsule = capsule.downcast::<PyCapsule>()?;
    +let provider = unsafe { capsule.reference::<FFI_TableProvider>() };
    +
    +
    +

    By convention the datafusion-python library expects a Python object that has a +TableProvider PyCapsule to have this capsule accessible by calling a function named +__datafusion_table_provider__. You can see a complete working example of how to +share a TableProvider from one python library to DataFusion Python in the +repository examples folder.

    +

    This section has been written using TableProvider as an example. It is the first +extension that has been written using this approach and the most thoroughly implemented. +As we continue to expose more of the DataFusion features, we intend to follow this same +design pattern.

    +
    +
    +

    Alternative Approach

    +

    Suppose you needed to expose some other features of DataFusion and you could not wait +for the upstream repository to implement the FFI approach we describe. In this case +you decide to create your dependency on the datafusion-python crate instead.

    +

    As we discussed, this is not guaranteed to work across different compiler versions and +optimization levels. If you wish to go down this route, there are two approaches we +have identified you can use.

    +
      +
    1. Re-export all of datafusion-python yourself with your extensions built in.

    2. +
    3. Carefully synchonize your software releases with the datafusion-python CI build +system so that your libraries use the exact same compiler, features, and +optimization level.

    4. +
    +

    We currently do not recommend either of these approaches as they are difficult to +maintain over a long period. Additionally, they require a tight version coupling +between libraries.

    +
    +
    +

    Status of Work

    +

    At the time of this writing, the FFI features are under active development. To see +the latest status, we recommend reviewing the code in the datafusion-ffi crate.

    +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html index 1ff78cefd..6a97a45fb 100644 --- a/contributor-guide/introduction.html +++ b/contributor-guide/introduction.html @@ -34,7 +34,7 @@ - + @@ -127,6 +127,11 @@

    @@ -307,6 +317,11 @@ +

  • + + datafusion.io + +
  • datafusion.object_store @@ -484,7 +499,7 @@

    Improving Build Speed.pyo3_build_config it will be ignored by git.

  • +
  • + + datafusion.io + +
  • datafusion.object_store @@ -526,8 +541,6 @@

    _

  • (datafusion.expr.Expr attribute)
  • - -

    + @@ -826,10 +863,10 @@

    B

  • bit_length() (in module datafusion.functions)
  • - - + @@ -1077,6 +1116,13 @@

    D

    +
  • + datafusion.io + +
  • @@ -1115,11 +1161,11 @@

    D

  • date_bin() (in module datafusion.functions) -
  • -
  • date_part() (in module datafusion.functions)
  • - + - + + - + + + + + + - + + + + @@ -2029,10 +2735,13 @@

    Classes

    - + + + + - + @@ -2042,28 +2751,25 @@

    Classes

    Functions

    RecordBatch

    This class is essentially a wrapper for pyarrow.RecordBatch.

    This class is essentially a wrapper for pa.RecordBatch.

    RecordBatchStream

    This class represents a stream of record batches.

    _R

    _W

    udaf

    udf

    udwf

    - +
  • global_ctx() (datafusion.context.SessionContext class method) +
  • GoogleCloud (in module datafusion.object_store)
  • GroupingSet (in module datafusion.expr) @@ -1433,6 +1481,8 @@

    I

  • InSubquery (in module datafusion.expr)
  • intersect() (datafusion.dataframe.DataFrame method) +
  • +
  • into_view() (datafusion.dataframe.DataFrame method)
  • is_causal() (datafusion.udf.WindowEvaluator method)
  • @@ -1440,14 +1490,16 @@

    I

  • is_current_row() (datafusion.expr.WindowFrameBound method) -
  • -
  • is_following() (datafusion.expr.WindowFrameBound method)
  • read_avro() (datafusion.context.SessionContext method) + +
  • read_csv() (datafusion.context.SessionContext method) + +
  • read_json() (datafusion.context.SessionContext method) + +
  • read_parquet() (datafusion.context.SessionContext method) + +
  • read_table() (datafusion.context.SessionContext method)
  • record_batch (datafusion.record_batch.RecordBatch attribute) @@ -1891,6 +1973,8 @@

    R

  • (class in datafusion.record_batch)
  • +
  • regexp_count() (in module datafusion.functions) +
  • regexp_like() (in module datafusion.functions)
  • regexp_match() (in module datafusion.functions) @@ -1909,6 +1993,8 @@

    R

  • register_object_store() (datafusion.context.SessionContext method)
  • +
  • ScalarVariable (in module datafusion.expr)
  • -
  • schema() (datafusion.catalog.Table method) +
  • schema (datafusion.catalog.Table property)
  • +
  • schema() (datafusion.dataframe.DataFrame method) +
  • schema_name() (datafusion.Expr method)
  • @@ -806,6 +831,33 @@ +
  • + + + + Expr.abs() + + + +
  • +
  • + + + + Expr.acos() + + + +
  • +
  • + + + + Expr.acosh() + + + +
  • @@ -815,6 +867,123 @@
  • +
  • + + + + Expr.array_dims() + + + +
  • +
  • + + + + Expr.array_distinct() + + + +
  • +
  • + + + + Expr.array_empty() + + + +
  • +
  • + + + + Expr.array_length() + + + +
  • +
  • + + + + Expr.array_ndims() + + + +
  • +
  • + + + + Expr.array_pop_back() + + + +
  • +
  • + + + + Expr.array_pop_front() + + + +
  • +
  • + + + + Expr.arrow_typeof() + + + +
  • +
  • + + + + Expr.ascii() + + + +
  • +
  • + + + + Expr.asin() + + + +
  • +
  • + + + + Expr.asinh() + + + +
  • +
  • + + + + Expr.atan() + + + +
  • +
  • + + + + Expr.atanh() + + + +
  • @@ -824,6 +993,24 @@
  • +
  • + + + + Expr.bit_length() + + + +
  • +
  • + + + + Expr.btrim() + + + +
  • @@ -833,6 +1020,15 @@
  • +
  • + + + + Expr.cardinality() + + + +
  • @@ -842,6 +1038,51 @@
  • +
  • + + + + Expr.cbrt() + + + +
  • +
  • + + + + Expr.ceil() + + + +
  • +
  • + + + + Expr.char_length() + + + +
  • +
  • + + + + Expr.character_length() + + + +
  • +
  • + + + + Expr.chr() + + + +
  • @@ -860,6 +1101,42 @@
  • +
  • + + + + Expr.cos() + + + +
  • +
  • + + + + Expr.cosh() + + + +
  • +
  • + + + + Expr.cot() + + + +
  • +
  • + + + + Expr.degrees() + + + +
  • @@ -878,6 +1155,33 @@
  • +
  • + + + + Expr.empty() + + + +
  • +
  • + + + + Expr.exp() + + + +
  • +
  • + + + + Expr.factorial() + + + +
  • @@ -905,6 +1209,42 @@
  • +
  • + + + + Expr.flatten() + + + +
  • +
  • + + + + Expr.floor() + + + +
  • +
  • + + + + Expr.from_unixtime() + + + +
  • +
  • + + + + Expr.initcap() + + + +
  • @@ -923,6 +1263,69 @@
  • +
  • + + + + Expr.isnan() + + + +
  • +
  • + + + + Expr.iszero() + + + +
  • +
  • + + + + Expr.length() + + + +
  • +
  • + + + + Expr.list_dims() + + + +
  • +
  • + + + + Expr.list_distinct() + + + +
  • +
  • + + + + Expr.list_length() + + + +
  • +
  • + + + + Expr.list_ndims() + + + +
  • @@ -932,6 +1335,60 @@
  • +
  • + + + + Expr.ln() + + + +
  • +
  • + + + + Expr.log10() + + + +
  • +
  • + + + + Expr.log2() + + + +
  • +
  • + + + + Expr.lower() + + + +
  • +
  • + + + + Expr.ltrim() + + + +
  • +
  • + + + + Expr.md5() + + + +
  • @@ -941,110 +1398,263 @@
  • +
  • + + + + Expr.octet_length() + + + +
  • - Expr.order_by() + Expr.order_by() + + + +
  • +
  • + + + + Expr.over() + + + +
  • +
  • + + + + Expr.partition_by() + + + +
  • +
  • + + + + Expr.python_value() + + + +
  • +
  • + + + + Expr.radians() + + + +
  • +
  • + + + + Expr.reverse() + + + +
  • +
  • + + + + Expr.rex_call_operands() + + + +
  • +
  • + + + + Expr.rex_call_operator() + + + +
  • +
  • + + + + Expr.rex_type() + + + +
  • +
  • + + + + Expr.rtrim() + + + +
  • +
  • + + + + Expr.schema_name() + + + +
  • +
  • + + + + Expr.sha224() + + + +
  • +
  • + + + + Expr.sha256() + + + +
  • +
  • + + + + Expr.sha384() + + + +
  • +
  • + + + + Expr.sha512() + + + +
  • +
  • + + + + Expr.signum() + + + +
  • +
  • + + + + Expr.sin()
  • - + - Expr.over() + Expr.sinh()
  • - + - Expr.partition_by() + Expr.sort()
  • - + - Expr.python_value() + Expr.sqrt()
  • - + - Expr.rex_call_operands() + Expr.string_literal()
  • - + - Expr.rex_call_operator() + Expr.tan()
  • - + - Expr.rex_type() + Expr.tanh()
  • - + - Expr.schema_name() + Expr.to_hex()
  • - + - Expr.sort() + Expr.to_variant()
  • - + - Expr.string_literal() + Expr.trim()
  • - + - Expr.to_variant() + Expr.types()
  • - + - Expr.types() + Expr.upper() @@ -1688,6 +2298,71 @@
  • +
  • + + + + TableFunction + + + + +
  • @@ -1810,19 +2485,10 @@
  • - - - - col() - - - -
  • -
  • - + - column() + configure_formatter() @@ -1890,6 +2556,24 @@
  • +
  • + + + + col + + + +
  • +
  • + + + + column + + + +
  • @@ -1908,6 +2592,15 @@
  • +
  • + + + + udtf + + + +
  • @@ -1950,10 +2643,12 @@

    Submodules @@ -1971,13 +2668,22 @@

    Attributes

  • DFSchema

    col

    column

    udaf

    udf

    udwf

    udtf

    udwf

    Table

    DataFusion table.

    WindowFrame

    TableFunction

    Class for performing user-defined table functions (UDTF).

    WindowFrame

    Defines a window frame for performing window operations.

    WindowUDF

    WindowUDF

    Class for performing window user-defined functions (UDF).

    - - - - - + + - + - + - + - + - + - + @@ -2103,7 +2809,7 @@

    Package Contents
    -class datafusion.AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    +class datafusion.AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)

    Class for performing scalar user-defined functions (UDF).

    Aggregate UDFs operate on a group of rows and return a single value. See also ScalarUDF for operating on a row by row basis.

    @@ -2120,78 +2826,67 @@

    Package Contents
    -static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]
    +static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]
    -static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    +static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF

    Create a new User-Defined Aggregate Function (UDAF).

    -

    This class allows you to define an aggregate function that can be used in +

    This class allows you to define an aggregate function that can be used in data aggregation or window function calls.

    -
    +
    Usage:
      -
    • -
      As a function: Call `udaf(accum, input_types, return_type, state_type,

      volatility, name)`.

      -
      -
      -
    • -
    • -
      As a decorator: Use `@udaf(input_types, return_type, state_type,

      volatility, name)`.

      -
      -
      -
    • +
    • As a function: udaf(accum, input_types, return_type, state_type, volatility, name).

    • +
    • As a decorator: @udaf(input_types, return_type, state_type, volatility, name). +When using udaf as a decorator, do not pass accum explicitly.

    -

    When using udaf as a decorator, do not pass `accum` explicitly.

    -

    Function example:

    -
    -

    If your :py:class:Accumulator can be instantiated with no arguments, you +

    Function example:

    +

    If your Accumulator can be instantiated with no arguments, you can simply pass it’s type as accum. If you need to pass additional arguments to it’s constructor, you can define a lambda or a factory method. -During runtime the :py:class:Accumulator will be constructed for every -instance in which this UDAF is used. The following examples are all valid. -``` -import pyarrow as pa -import pyarrow.compute as pc

    -
    -
    class Summarize(Accumulator):
    -
    def __init__(self, bias: float = 0.0):

    self._sum = pa.scalar(bias)

    -
    -
    def state(self) -> list[pa.Scalar]:

    return [self._sum]

    -
    -
    def update(self, values: pa.Array) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())

    -
    -
    def merge(self, states: list[pa.Array]) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())

    -
    -
    def evaluate(self) -> pa.Scalar:

    return self._sum

    -
    -
    -
    -
    def sum_bias_10() -> Summarize:

    return Summarize(10.0)

    -
    -
    udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    -
    -
    udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    -
    -
    udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),

    [pa.float64()], “immutable”)

    -
    -
    -

    ```

    -
    -
    -
    Decorator example:

    ``` -@udaf(pa.float64(), pa.float64(), [pa.float64()], “immutable”) -def udf4() -> Summarize:

    -
    -

    return Summarize(10.0)

    -
    -

    ```

    -
    -
    +During runtime the Accumulator will be constructed for every +instance in which this UDAF is used. The following examples are all valid:

    +
    import pyarrow as pa
    +import pyarrow.compute as pc
    +
    +class Summarize(Accumulator):
    +    def __init__(self, bias: float = 0.0):
    +        self._sum = pa.scalar(bias)
    +
    +    def state(self) -> list[pa.Scalar]:
    +        return [self._sum]
    +
    +    def update(self, values: pa.Array) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())
    +
    +    def merge(self, states: list[pa.Array]) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())
    +
    +    def evaluate(self) -> pa.Scalar:
    +        return self._sum
    +
    +def sum_bias_10() -> Summarize:
    +    return Summarize(10.0)
    +
    +udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),
    +    [pa.float64()], "immutable")
    +
    +
    +

    Decorator example::

    +
    @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable")
    +def udf4() -> Summarize:
    +    return Summarize(10.0)
    +
    +
    Parameters:
      -
    • accum – The accumulator python function. Only needed when calling as a -function. Skip this argument when using `udaf` as a decorator.

    • +
    • accum – The accumulator python function. Only needed when calling as a +function. Skip this argument when using udaf as a decorator.

    • input_types – The data types of the arguments to accum.

    • return_type – The data type of the return value.

    • state_type – The data types of the intermediate accumulation.

    • @@ -2376,76 +3071,197 @@

      Package Contents -
      -__le__(rhs: Any) Expr
      -

      Less than or equal to.

      -

      Accepts either an expression or any valid PyArrow scalar literal value.

      +
      +__le__(rhs: Any) Expr
      +

      Less than or equal to.

      +

      Accepts either an expression or any valid PyArrow scalar literal value.

      +

    + +
    +
    +__lt__(rhs: Any) Expr
    +

    Less than.

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +__mod__(rhs: Any) Expr
    +

    Modulo operator (%).

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +__mul__(rhs: Any) Expr
    +

    Multiplication operator.

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +__ne__(rhs: object) Expr
    +

    Not equal to.

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +__or__(rhs: Expr) Expr
    +

    Logical OR.

    +
    + +
    +
    +__repr__() str
    +

    Generate a string representation of this expression.

    +
    + +
    +
    +__richcmp__(other: Expr, op: int) Expr
    +

    Comparison operator.

    +
    + +
    +
    +__sub__(rhs: Any) Expr
    +

    Subtraction operator.

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +__truediv__(rhs: Any) Expr
    +

    Division operator.

    +

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    + +
    +
    +abs() Expr
    +

    Return the absolute value of a given number.

    +
    +

    Returns:

    +
    +
    Expr

    A new expression representing the absolute value of the input expression.

    +
    +
    +
    +
    + +
    +
    +acos() Expr
    +

    Returns the arc cosine or inverse cosine of a number.

    +
    +

    Returns:

    +
    +
    Expr

    A new expression representing the arc cosine of the input expression.

    +
    +
    +
    +
    + +
    +
    +acosh() Expr
    +

    Returns inverse hyperbolic cosine.

    +
    + +
    +
    +alias(name: str, metadata: dict[str, str] | None = None) Expr
    +

    Assign a name to the expression.

    +
    +
    Parameters:
    +
      +
    • name – The name to assign to the expression.

    • +
    • metadata – Optional metadata to attach to the expression.

    • +
    +
    +
    Returns:
    +

    A new expression with the assigned name.

    +
    +
    +
    + +
    +
    +array_dims() Expr
    +

    Returns an array of the array’s dimensions.

    +
    + +
    +
    +array_distinct() Expr
    +

    Returns distinct values from the array after removing duplicates.

    +
    + +
    +
    +array_empty() Expr
    +

    Returns a boolean indicating whether the array is empty.

    -
    -__lt__(rhs: Any) Expr
    -

    Less than.

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +array_length() Expr
    +

    Returns the length of the array.

    -
    -__mod__(rhs: Any) Expr
    -

    Modulo operator (%).

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +array_ndims() Expr
    +

    Returns the number of dimensions of the array.

    -
    -__mul__(rhs: Any) Expr
    -

    Multiplication operator.

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +array_pop_back() Expr
    +

    Returns the array without the last element.

    -
    -__ne__(rhs: object) Expr
    -

    Not equal to.

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +array_pop_front() Expr
    +

    Returns the array without the first element.

    -
    -__or__(rhs: Expr) Expr
    -

    Logical OR.

    +
    +arrow_typeof() Expr
    +

    Returns the Arrow type of the expression.

    -
    -__repr__() str
    -

    Generate a string representation of this expression.

    +
    +ascii() Expr
    +

    Returns the numeric code of the first character of the argument.

    -
    -__richcmp__(other: Expr, op: int) Expr
    -

    Comparison operator.

    +
    +asin() Expr
    +

    Returns the arc sine or inverse sine of a number.

    -
    -__sub__(rhs: Any) Expr
    -

    Subtraction operator.

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +asinh() Expr
    +

    Returns inverse hyperbolic sine.

    -
    -__truediv__(rhs: Any) Expr
    -

    Division operator.

    -

    Accepts either an expression or any valid PyArrow scalar literal value.

    +
    +atan() Expr
    +

    Returns inverse tangent of a number.

    -
    -alias(name: str) Expr
    -

    Assign a name to the expression.

    +
    +atanh() Expr
    +

    Returns inverse hyperbolic tangent.

    @@ -2463,18 +3279,66 @@

    Package Contents +
    +bit_length() Expr
    +

    Returns the number of bits in the string argument.

    +

    + +
    +
    +btrim() Expr
    +

    Removes all characters, spaces by default, from both sides of a string.

    +
    +
    canonical_name() str

    Returns a complete string representation of this expression.

    +
    +
    +cardinality() Expr
    +

    Returns the total number of elements in the array.

    +
    +
    cast(to: pyarrow.DataType[Any] | type[float | int | str | bool]) Expr

    Cast to a new data type.

    +
    +
    +cbrt() Expr
    +

    Returns the cube root of a number.

    +
    + +
    +
    +ceil() Expr
    +

    Returns the nearest integer greater than or equal to argument.

    +
    + +
    +
    +char_length() Expr
    +

    The number of characters in the string.

    +
    + +
    +
    +character_length() Expr
    +

    Returns the number of characters in the argument.

    +
    + +
    +
    +chr() Expr
    +

    Converts the Unicode code point to a UTF8 character.

    +
    +
    static column(value: str) Expr
    @@ -2487,6 +3351,30 @@

    Package Contents +
    +cos() Expr
    +

    Returns the cosine of the argument.

    +

    + +
    +
    +cosh() Expr
    +

    Returns the hyperbolic cosine of the argument.

    +
    + +
    +
    +cot() Expr
    +

    Returns the cotangent of the argument.

    +
    + +
    +
    +degrees() Expr
    +

    Converts the argument from radians to degrees.

    +
    +
    display_name() str
    @@ -2503,6 +3391,24 @@

    Package Contentsbuild() is called.

    +
    +
    +empty() Expr
    +

    This is an alias for array_empty().

    +
    + +
    +
    +exp() Expr
    +

    Returns the exponential of the argument.

    +
    + +
    +
    +factorial() Expr
    +

    Returns the factorial of the argument.

    +
    +
    fill_nan(value: Any | Expr | None = None) Expr
    @@ -2524,6 +3430,32 @@

    Package Contentsbuild() is called.

    +
    +
    +flatten() Expr
    +

    Flattens an array of arrays into a single array.

    +
    + +
    +
    +floor() Expr
    +

    Returns the nearest integer less than or equal to the argument.

    +
    + +
    +
    +from_unixtime() Expr
    +

    Converts an integer to RFC3339 timestamp format string.

    +
    + +
    +
    +initcap() Expr
    +

    Set the initial letter of each word to capital.

    +

    Converts the first letter of each word in string to uppercase and the +remaining characters to lowercase.

    +
    +
    is_not_null() Expr
    @@ -2536,6 +3468,52 @@

    Package ContentsTrue if this expression is null.

    +
    +
    +isnan() Expr
    +

    Returns true if a given number is +NaN or -NaN otherwise returns false.

    +
    + +
    +
    +iszero() Expr
    +

    Returns true if a given number is +0.0 or -0.0 otherwise returns false.

    +
    + +
    +
    +length() Expr
    +

    The number of characters in the string.

    +
    + +
    +
    +list_dims() Expr
    +

    Returns an array of the array’s dimensions.

    +

    This is an alias for array_dims().

    +
    + +
    +
    +list_distinct() Expr
    +

    Returns distinct values from the array after removing duplicates.

    +

    This is an alias for array_distinct().

    +
    + +
    +
    +list_length() Expr
    +

    Returns the length of the array.

    +

    This is an alias for array_length().

    +
    + +
    +
    +list_ndims() Expr
    +

    Returns the number of dimensions of the array.

    +

    This is an alias for array_ndims().

    +
    +
    static literal(value: Any) Expr
    @@ -2543,6 +3521,42 @@

    Package Contentsvalue must be a valid PyArrow scalar value or easily castable to one.

    +
    +
    +ln() Expr
    +

    Returns the natural logarithm (base e) of the argument.

    +
    + +
    +
    +log10() Expr
    +

    Base 10 logarithm of the argument.

    +
    + +
    +
    +log2() Expr
    +

    Base 2 logarithm of the argument.

    +
    + +
    +
    +lower() Expr
    +

    Converts a string to lowercase.

    +
    + +
    +
    +ltrim() Expr
    +

    Removes all characters, spaces by default, from the beginning of a string.

    +
    + +
    +
    +md5() Expr
    +

    Computes an MD5 128-bit checksum for a string expression.

    +
    +
    null_treatment(null_treatment: datafusion.common.NullTreatment) ExprFuncBuilder
    @@ -2552,6 +3566,12 @@

    Package Contentsbuild() is called.

    +
    +
    +octet_length() Expr
    +

    Returns the number of bytes of a string.

    +
    +
    order_by(*exprs: Expr | SortExpr) ExprFuncBuilder
    @@ -2596,6 +3616,18 @@

    Package Contents +
    +radians() Expr
    +

    Converts the argument from degrees to radians.

    +

    + +
    +
    +reverse() Expr
    +

    Reverse the string argument.

    +
    +
    rex_call_operands() list[Expr]
    @@ -2621,6 +3653,12 @@

    Package ContentsRexType.

    +
    +
    +rtrim() Expr
    +

    Removes all characters, spaces by default, from the end of a string.

    +
    +
    schema_name() str
    @@ -2628,6 +3666,48 @@

    Package Contents +
    +sha224() Expr
    +

    Computes the SHA-224 hash of a binary string.

    +

    + +
    +
    +sha256() Expr
    +

    Computes the SHA-256 hash of a binary string.

    +
    + +
    +
    +sha384() Expr
    +

    Computes the SHA-384 hash of a binary string.

    +
    + +
    +
    +sha512() Expr
    +

    Computes the SHA-512 hash of a binary string.

    +
    + +
    +
    +signum() Expr
    +

    Returns the sign of the argument (-1, 0, +1).

    +
    + +
    +
    +sin() Expr
    +

    Returns the sine of the argument.

    +
    + +
    +
    +sinh() Expr
    +

    Returns the hyperbolic sine of the argument.

    +
    +
    sort(ascending: bool = True, nulls_first: bool = True) SortExpr
    @@ -2642,6 +3722,12 @@

    Package Contents +
    +sqrt() Expr
    +

    Returns the square root of the argument.

    +

    +
    static string_literal(value: str) Expr
    @@ -2653,12 +3739,36 @@

    Package Contentshttps://github.com/apache/datafusion/blob/86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac/datafusion/functions/src/core/arrow_cast.rs#L179

    +
    +
    +tan() Expr
    +

    Returns the tangent of the argument.

    +
    + +
    +
    +tanh() Expr
    +

    Returns the hyperbolic tangent of the argument.

    +
    + +
    +
    +to_hex() Expr
    +

    Converts an integer to a hexadecimal string.

    +
    +
    to_variant() Any

    Convert this expression into a python object if possible.

    +
    +
    +trim() Expr
    +

    Removes all characters, spaces by default, from both sides of a string.

    +
    +
    types() datafusion.common.DataTypeMap
    @@ -2671,6 +3781,12 @@

    Package Contents +
    +upper() Expr
    +

    Converts a string to uppercase.

    +

    +
    variant_name() str
    @@ -3082,7 +4198,7 @@

    Package Contents
    -class datafusion.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    +class datafusion.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)

    Class for performing scalar user-defined functions (UDF).

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for operating on a group of rows.

    @@ -3098,30 +4214,29 @@

    Package Contents
    -static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF]
    +static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF]
    -static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    +static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF

    Create a new User-Defined Function (UDF).

    -

    This class can be used both as a function and as a decorator.

    +

    This class can be used both as either a function or a decorator.

    Usage:
      -
    • As a function: Call udf(func, input_types, return_type, volatility, -name).

    • -
    • As a decorator: Use @udf(input_types, return_type, volatility, -name). In this case, do not pass func explicitly.

    • +
    • As a function: udf(func, input_types, return_type, volatility, name).

    • +
    • As a decorator: @udf(input_types, return_type, volatility, name). +When used a decorator, do not pass func explicitly.

    Parameters:
      -
    • func (Callable, optional) – Only needed when calling as a function. -Skip this argument when using udf as a decorator.

    • +
    • func (Callable, optional) – Only needed when calling as a function. +Skip this argument when using udf as a decorator.

    • input_types (list[pa.DataType]) – The data types of the arguments -to func. This list must be of the same length as the number of +to func. This list must be of the same length as the number of arguments.

    • return_type (_R) – The data type of the return value from the function.

    • -
    • volatility (Volatility | str) – See Volatility for allowed values.

    • +
    • volatility (Volatility | str) – See Volatility for allowed values.

    • name (Optional[str]) – A descriptive name for the function.

    @@ -3130,24 +4245,19 @@

    Package ContentsExample

    -

    Using `udf` as a function: -``` -def double_func(x):

    -
    -

    return x * 2

    -
    -

    double_udf = udf(double_func, [pa.int32()], pa.int32(), -“volatile”, “double_it”) -```

    -

    Using `udf` as a decorator: -``` -@udf([pa.int32()], pa.int32(), “volatile”, “double_it”) -def double_udf(x):

    -
    -

    return x * 2

    -
    -

    ```

    +

    Example: Using udf as a function:

    +
    def double_func(x):
    +    return x * 2
    +double_udf = udf(double_func, [pa.int32()], pa.int32(),
    +"volatile", "double_it")
    +
    +
    +

    Example: Using udf as a decorator:

    +
    @udf([pa.int32()], pa.int32(), "volatile", "double_it")
    +def double_udf(x):
    +    return x * 2
    +
    +

    @@ -3389,6 +4499,54 @@

    Package Contents +
    +class datafusion.TableFunction(name: str, func: Callable[[], any])
    +

    Class for performing user-defined table functions (UDTF).

    +

    Table functions generate new table providers based on the +input expressions.

    +

    Instantiate a user-defined table function (UDTF).

    +

    See udtf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) Any
    +

    Execute the UDTF and return a table provider.

    +
    + +
    +
    +__repr__() str
    +

    User printable representation.

    +
    + +
    +
    +static _create_table_udf(func: Callable[Ellipsis, Any], name: str) TableFunction
    +

    Create a TableFunction instance from function arguments.

    +
    + +
    +
    +static _create_table_udf_decorator(name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
    +

    Create a decorator for a WindowUDF.

    +
    + +
    +
    +static udtf(name: str) Callable[Ellipsis, Any]
    +
    +static udtf(func: Callable[[], Any], name: str) TableFunction
    +

    Create a new User-Defined Table Function (UDTF).

    +
    + +
    +
    +_udtf
    +
    + +

    +
    class datafusion.WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None)
    @@ -3434,7 +4592,7 @@

    Package Contents
    -class datafusion.WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
    +class datafusion.WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)

    Class for performing window user-defined functions (UDF).

    Window UDFs operate on a partition of rows. See also ScalarUDF for operating on a row by row basis.

    @@ -3451,13 +4609,13 @@

    Package Contents
    -static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF

    Create a WindowUDF instance from function arguments.

    -static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
    +static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]

    Create a decorator for a WindowUDF.

    @@ -3475,53 +4633,49 @@

    Package Contents
    -static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
    +static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
    -static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF

    Create a new User-Defined Window Function (UDWF).

    -

    This class can be used both as a function and as a decorator.

    -
    +

    This class can be used both as either a function or a decorator.

    +
    Usage:
      -
    • As a function: Call udwf(func, input_types, return_type, volatility, -name).

    • -
    • As a decorator: Use @udwf(input_types, return_type, volatility, -name). When using udwf as a decorator, do not pass `func` -explicitly.

    • +
    • As a function: udwf(func, input_types, return_type, volatility, name).

    • +
    • As a decorator: @udwf(input_types, return_type, volatility, name). +When using udwf as a decorator, do not pass func explicitly.

    -
    Function example:

    ``` -import pyarrow as pa

    -
    -
    class BiasedNumbers(WindowEvaluator):
    -
    def __init__(self, start: int = 0) -> None:

    self.start = start

    -
    -
    def evaluate_all(self, values: list[pa.Array],

    num_rows: int) -> pa.Array: -return pa.array([self.start + i for i in range(num_rows)])

    -
    -
    -
    -
    def bias_10() -> BiasedNumbers:

    return BiasedNumbers(10)

    -
    -
    -

    udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), “immutable”) -udwf2 = udwf(bias_10, pa.int64(), pa.int64(), “immutable”) -udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), “immutable”)

    -

    ```

    -
    -
    Decorator example:

    ``` -@udwf(pa.int64(), pa.int64(), “immutable”) -def biased_numbers() -> BiasedNumbers:

    -
    -

    return BiasedNumbers(10)

    -
    -

    ```

    -
    +

    Function example:

    +
    import pyarrow as pa
    +
    +class BiasedNumbers(WindowEvaluator):
    +    def __init__(self, start: int = 0) -> None:
    +        self.start = start
    +
    +    def evaluate_all(self, values: list[pa.Array],
    +        num_rows: int) -> pa.Array:
    +        return pa.array([self.start + i for i in range(num_rows)])
    +
    +def bias_10() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable")
    +udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable")
    +udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable")
    +
    +
    +

    Decorator example:

    +
    @udwf(pa.int64(), pa.int64(), "immutable")
    +def biased_numbers() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +
    Parameters:
      -
    • funcOnly needed when calling as a function. Skip this argument when -using `udwf` as a decorator.

    • +
    • func – Only needed when calling as a function. Skip this argument when +using udwf as a decorator.

    • input_types – The data types of the arguments.

    • return_type – The data type of the return value.

    • volatility – See Volatility for allowed values.

    • @@ -3542,15 +4696,30 @@

      Package Contents -
      -datafusion.col(value: str) expr.Expr
      -

      Create a column expression.

      -

    - -
    -
    -datafusion.column(value: str) expr.Expr
    -

    Create a column expression.

    +
    +datafusion.configure_formatter(**kwargs: Any) None
    +

    Configure the global DataFrame HTML formatter.

    +

    This function creates a new formatter with the provided configuration +and sets it as the global formatter for all DataFrames.

    +
    +
    Parameters:
    +

    **kwargs – Formatter configuration parameters like max_cell_length, +max_width, max_height, enable_cell_expansion, etc.

    +
    +
    Raises:
    +

    ValueError – If any invalid parameters are provided

    +
    +
    +

    Example

    +
    >>> from datafusion.html_formatter import configure_formatter
    +>>> configure_formatter(
    +...     max_cell_length=50,
    +...     max_height=500,
    +...     enable_cell_expansion=True,
    +...     use_shared_styles=True
    +... )
    +
    +
    @@ -3680,6 +4849,16 @@

    Package Contentsdatafusion.DFSchema

    +
    +
    +datafusion.col: Col
    +
    + +
    +
    +datafusion.column: Col
    +
    +
    datafusion.udaf
    @@ -3690,6 +4869,11 @@

    Package Contentsdatafusion.udf

    +
    +
    +datafusion.udtf
    +
    +
    datafusion.udwf
    diff --git a/autoapi/datafusion/input/base/index.html b/autoapi/datafusion/input/base/index.html index 5c55d0bda..b7958e532 100644 --- a/autoapi/datafusion/input/base/index.html +++ b/autoapi/datafusion/input/base/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/input/index.html b/autoapi/datafusion/input/index.html index 1f368148a..299228ad0 100644 --- a/autoapi/datafusion/input/index.html +++ b/autoapi/datafusion/input/index.html @@ -35,7 +35,7 @@ - + @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -496,11 +521,11 @@

    Package Contents +

    previous

    -

    datafusion.functions

    +

    datafusion.html_formatter

    diff --git a/autoapi/datafusion/input/location/index.html b/autoapi/datafusion/input/location/index.html index 2be427480..f0890e2a2 100644 --- a/autoapi/datafusion/input/location/index.html +++ b/autoapi/datafusion/input/location/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/io/index.html b/autoapi/datafusion/io/index.html index 3ce943551..726ec2633 100644 --- a/autoapi/datafusion/io/index.html +++ b/autoapi/datafusion/io/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/object_store/index.html b/autoapi/datafusion/object_store/index.html index b27718f02..d3a249fb5 100644 --- a/autoapi/datafusion/object_store/index.html +++ b/autoapi/datafusion/object_store/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/plan/index.html b/autoapi/datafusion/plan/index.html index df79d85d4..bfb70723c 100644 --- a/autoapi/datafusion/plan/index.html +++ b/autoapi/datafusion/plan/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/record_batch/index.html b/autoapi/datafusion/record_batch/index.html index edeb5af68..3db4e2b6f 100644 --- a/autoapi/datafusion/record_batch/index.html +++ b/autoapi/datafusion/record_batch/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/substrait/index.html b/autoapi/datafusion/substrait/index.html index 87028dab2..9443e482e 100644 --- a/autoapi/datafusion/substrait/index.html +++ b/autoapi/datafusion/substrait/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/autoapi/datafusion/udf/index.html b/autoapi/datafusion/udf/index.html index 9f0f67409..a6ff5e142 100644 --- a/autoapi/datafusion/udf/index.html +++ b/autoapi/datafusion/udf/index.html @@ -34,6 +34,7 @@ + @@ -116,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -274,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -294,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -346,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -368,403 +394,9 @@
    -
    - On this page -
    @@ -786,627 +418,7 @@

    datafusion.udf

    -

    Provides the user-defined functions for evaluation of dataframes.

    -
    -

    Attributes

    -

    col(→ expr.Expr)

    Create a column expression.

    column(→ expr.Expr)

    Create a column expression.

    configure_formatter(→ None)

    Configure the global DataFrame HTML formatter.

    lit(→ expr.Expr)

    lit(→ expr.Expr)

    Create a literal expression.

    literal(→ expr.Expr)

    literal(→ expr.Expr)

    Create a literal expression.

    read_avro(→ datafusion.dataframe.DataFrame)

    read_avro(→ datafusion.dataframe.DataFrame)

    Create a DataFrame for reading Avro data source.

    read_csv(→ datafusion.dataframe.DataFrame)

    read_csv(→ datafusion.dataframe.DataFrame)

    Read a CSV data source.

    read_json(→ datafusion.dataframe.DataFrame)

    read_json(→ datafusion.dataframe.DataFrame)

    Read a line-delimited JSON data source.

    read_parquet(→ datafusion.dataframe.DataFrame)

    read_parquet(→ datafusion.dataframe.DataFrame)

    Read a Parquet source into a Dataframe.

    - - - - - - - - - - - - - - -

    _R

    udaf

    udf

    udwf

    - -
    -

    Classes

    - - - - - - - - - - - - - - - - - - - - - -

    Accumulator

    Defines how an AggregateUDF accumulates values.

    AggregateUDF

    Class for performing scalar user-defined functions (UDF).

    ScalarUDF

    Class for performing scalar user-defined functions (UDF).

    Volatility

    Defines how stable or volatile a function is.

    WindowEvaluator

    Evaluator class for user-defined window functions (UDWF).

    WindowUDF

    Class for performing window user-defined functions (UDF).

    -
    -
    -

    Module Contents

    -
    -
    -class datafusion.udf.Accumulator
    -

    Defines how an AggregateUDF accumulates values.

    -
    -
    -abstract evaluate() pyarrow.Scalar
    -

    Return the resultant value.

    -
    - -
    -
    -abstract merge(states: list[pyarrow.Array]) None
    -

    Merge a set of states.

    -
    - -
    -
    -abstract state() list[pyarrow.Scalar]
    -

    Return the current state.

    -
    - -
    -
    -abstract update(*values: pyarrow.Array) None
    -

    Evaluate an array of values and update state.

    -
    - -
    - -
    -
    -class datafusion.udf.AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    -

    Class for performing scalar user-defined functions (UDF).

    -

    Aggregate UDFs operate on a group of rows and return a single value. See -also ScalarUDF for operating on a row by row basis.

    -

    Instantiate a user-defined aggregate function (UDAF).

    -

    See udaf() for a convenience function and argument -descriptions.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDAF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]
    -
    -static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    -

    Create a new User-Defined Aggregate Function (UDAF).

    -

    This class allows you to define an aggregate function that can be used in -data aggregation or window function calls.

    -
    -
    Usage:
      -
    • -
      As a function: Call `udaf(accum, input_types, return_type, state_type,

      volatility, name)`.

      -
      -
      -
    • -
    • -
      As a decorator: Use `@udaf(input_types, return_type, state_type,

      volatility, name)`.

      -
      -
      -
    • -
    -

    When using udaf as a decorator, do not pass `accum` explicitly.

    -
    -
    -

    Function example:

    -
    -

    If your :py:class:Accumulator can be instantiated with no arguments, you -can simply pass it’s type as accum. If you need to pass additional -arguments to it’s constructor, you can define a lambda or a factory method. -During runtime the :py:class:Accumulator will be constructed for every -instance in which this UDAF is used. The following examples are all valid. -``` -import pyarrow as pa -import pyarrow.compute as pc

    -
    -
    class Summarize(Accumulator):
    -
    def __init__(self, bias: float = 0.0):

    self._sum = pa.scalar(bias)

    -
    -
    def state(self) -> list[pa.Scalar]:

    return [self._sum]

    -
    -
    def update(self, values: pa.Array) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())

    -
    -
    def merge(self, states: list[pa.Array]) -> None:

    self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())

    -
    -
    def evaluate(self) -> pa.Scalar:

    return self._sum

    -
    -
    -
    -
    def sum_bias_10() -> Summarize:

    return Summarize(10.0)

    -
    -
    udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    -
    -
    udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],

    “immutable”)

    -
    -
    udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),

    [pa.float64()], “immutable”)

    -
    -
    -

    ```

    -
    -
    -
    Decorator example:

    ``` -@udaf(pa.float64(), pa.float64(), [pa.float64()], “immutable”) -def udf4() -> Summarize:

    -
    -

    return Summarize(10.0)

    -
    -

    ```

    -
    -
    -
    -
    Parameters:
    -
      -
    • accum – The accumulator python function. Only needed when calling as a -function. Skip this argument when using `udaf` as a decorator.

    • -
    • input_types – The data types of the arguments to accum.

    • -
    • return_type – The data type of the return value.

    • -
    • state_type – The data types of the intermediate accumulation.

    • -
    • volatility – See Volatility for allowed values.

    • -
    • name – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined aggregate function, which can be used in either data -aggregation or window function calls.

    -
    -
    -
    - -
    -
    -_udaf
    -
    - -
    - -
    -
    -class datafusion.udf.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    -

    Class for performing scalar user-defined functions (UDF).

    -

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for -operating on a group of rows.

    -

    Instantiate a scalar user-defined function (UDF).

    -

    See helper method udf() for argument details.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF]
    -
    -static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    -

    Create a new User-Defined Function (UDF).

    -

    This class can be used both as a function and as a decorator.

    -
    -
    Usage:
      -
    • As a function: Call udf(func, input_types, return_type, volatility, -name).

    • -
    • As a decorator: Use @udf(input_types, return_type, volatility, -name). In this case, do not pass func explicitly.

    • -
    -
    -
    -
    -
    Parameters:
    -
      -
    • func (Callable, optional) – Only needed when calling as a function. -Skip this argument when using udf as a decorator.

    • -
    • input_types (list[pa.DataType]) – The data types of the arguments -to func. This list must be of the same length as the number of -arguments.

    • -
    • return_type (_R) – The data type of the return value from the function.

    • -
    • volatility (Volatility | str) – See Volatility for allowed values.

    • -
    • name (Optional[str]) – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined function that can be used in SQL expressions, -data aggregation, or window function calls.

    -
    -
    -

    Example

    -

    Using `udf` as a function: -``` -def double_func(x):

    -
    -

    return x * 2

    -
    -

    double_udf = udf(double_func, [pa.int32()], pa.int32(), -“volatile”, “double_it”) -```

    -

    Using `udf` as a decorator: -``` -@udf([pa.int32()], pa.int32(), “volatile”, “double_it”) -def double_udf(x):

    -
    -

    return x * 2

    -
    -

    ```

    -
    - -
    -
    -_udf
    -
    - -
    - -
    -
    -class datafusion.udf.Volatility(*args, **kwds)
    -

    Bases: enum.Enum

    -

    Defines how stable or volatile a function is.

    -

    When setting the volatility of a function, you can either pass this -enumeration or a str. The str equivalent is the lower case value of the -name (“immutable”, “stable”, or “volatile”).

    -
    -
    -__str__() str
    -

    Returns the string equivalent.

    -
    - -
    -
    -Immutable = 1
    -

    An immutable function will always return the same output when given the -same input.

    -

    DataFusion will attempt to inline immutable functions during planning.

    -
    - -
    -
    -Stable = 2
    -

    Returns the same value for a given input within a single queries.

    -

    A stable function may return different values given the same input across -different queries but must return the same value for a given input within a -query. An example of this is the Now function. DataFusion will attempt to -inline Stable functions during planning, when possible. For query -select col1, now() from t1, it might take a while to execute but now() -column will be the same for each output row, which is evaluated during -planning.

    -
    - -
    -
    -Volatile = 3
    -

    A volatile function may change the return value from evaluation to -evaluation.

    -

    Multiple invocations of a volatile function may return different results -when used in the same query. An example of this is the random() function. -DataFusion can not evaluate such functions during planning. In the query -select col1, random() from t1, random() function will be evaluated -for each output row, resulting in a unique random value for each row.

    -
    - -
    - -
    -
    -class datafusion.udf.WindowEvaluator
    -

    Evaluator class for user-defined window functions (UDWF).

    -

    It is up to the user to decide which evaluate function is appropriate.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    uses_window_frame

    supports_bounded_execution

    include_rank

    function_to_implement

    False (default)

    False (default)

    False (default)

    evaluate_all

    False

    True

    False

    evaluate

    False

    True/False

    True

    evaluate_all_with_rank

    True

    True/False

    True/False

    evaluate

    -
    -
    -evaluate(values: list[pyarrow.Array], eval_range: tuple[int, int]) pyarrow.Scalar
    -

    Evaluate window function on a range of rows in an input partition.

    -

    This is the simplest and most general function to implement -but also the least performant as it creates output one row at -a time. It is typically much faster to implement stateful -evaluation using one of the other specialized methods on this -trait.

    -

    Returns a [ScalarValue] that is the value of the window -function within range for the entire partition. Argument -values contains the evaluation result of function arguments -and evaluation results of ORDER BY expressions. If function has a -single argument, values[1..] will contain ORDER BY expression results.

    -
    - -
    -
    -evaluate_all(values: list[pyarrow.Array], num_rows: int) pyarrow.Array
    -

    Evaluate a window function on an entire input partition.

    -

    This function is called once per input partition for window functions that -do not use values from the window frame, such as -row_number(), -rank(), -dense_rank(), -percent_rank(), -cume_dist(), -lead(), -and lag().

    -

    It produces the result of all rows in a single pass. It -expects to receive the entire partition as the value and -must produce an output column with one output row for every -input row.

    -

    num_rows is required to correctly compute the output in case -len(values) == 0

    -

    Implementing this function is an optimization. Certain window -functions are not affected by the window frame definition or -the query doesn’t have a frame, and evaluate skips the -(costly) window frame boundary calculation and the overhead of -calling evaluate for each output row.

    -

    For example, the LAG built in window function does not use -the values of its window frame (it can be computed in one shot -on the entire partition with Self::evaluate_all regardless of the -window defined in the OVER clause)

    -
    lag(x, 1) OVER (ORDER BY z ROWS BETWEEN 2 PRECEDING AND 3 FOLLOWING)
    -
    -
    -

    However, avg() computes the average in the window and thus -does use its window frame.

    -
    avg(x) OVER (PARTITION BY y ORDER BY z ROWS BETWEEN 2 PRECEDING AND 3 FOLLOWING)
    -
    -
    -
    - -
    -
    -evaluate_all_with_rank(num_rows: int, ranks_in_partition: list[tuple[int, int]]) pyarrow.Array
    -

    Called for window functions that only need the rank of a row.

    -

    Evaluate the partition evaluator against the partition using -the row ranks. For example, rank(col("a")) produces

    -
    a | rank
    -- + ----
    -A | 1
    -A | 1
    -C | 3
    -D | 4
    -D | 4
    -
    -
    -

    For this case, num_rows would be 5 and the -ranks_in_partition would be called with

    -
    [
    -    (0,1),
    -    (2,2),
    -    (3,4),
    -]
    -
    -
    -

    The user must implement this method if include_rank returns True.

    -
    - -
    -
    -get_range(idx: int, num_rows: int) tuple[int, int]
    -

    Return the range for the window fuction.

    -

    If uses_window_frame flag is false. This method is used to -calculate required range for the window function during -stateful execution.

    -

    Generally there is no required range, hence by default this -returns smallest range(current row). e.g seeing current row is -enough to calculate window result (such as row_number, rank, -etc)

    -
    -
    Parameters:
    -
      -
    • idx: – Current index:

    • -
    • num_rows – Number of rows.

    • -
    -
    -
    -
    - -
    -
    -include_rank() bool
    -

    Can this function be evaluated with (only) rank?

    -
    - -
    -
    -is_causal() bool
    -

    Get whether evaluator needs future data for its result.

    -
    - -
    -
    -memoize() None
    -

    Perform a memoize operation to improve performance.

    -

    When the window frame has a fixed beginning (e.g UNBOUNDED -PRECEDING), some functions such as FIRST_VALUE and -NTH_VALUE do not need the (unbounded) input once they have -seen a certain amount of input.

    -

    memoize is called after each input batch is processed, and -such functions can save whatever they need

    -
    - -
    -
    -supports_bounded_execution() bool
    -

    Can the window function be incrementally computed using bounded memory?

    -
    - -
    -
    -uses_window_frame() bool
    -

    Does the window function use the values from the window frame?

    -
    - -
    - -
    -
    -class datafusion.udf.WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
    -

    Class for performing window user-defined functions (UDF).

    -

    Window UDFs operate on a partition of rows. See -also ScalarUDF for operating on a row by row basis.

    -

    Instantiate a user-defined window function (UDWF).

    -

    See udwf() for a convenience function and argument -descriptions.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDWF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    -

    Create a WindowUDF instance from function arguments.

    -
    - -
    -
    -static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
    -

    Create a decorator for a WindowUDF.

    -
    - -
    -
    -static _get_default_name(func: Callable) str
    -

    Get the default name for a function based on its attributes.

    -
    - -
    -
    -static _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) list[pyarrow.DataType]
    -

    Convert a single DataType to a list if needed.

    -
    - -
    -
    -static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
    -
    -static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    -

    Create a new User-Defined Window Function (UDWF).

    -

    This class can be used both as a function and as a decorator.

    -
    -
    Usage:
      -
    • As a function: Call udwf(func, input_types, return_type, volatility, -name).

    • -
    • As a decorator: Use @udwf(input_types, return_type, volatility, -name). When using udwf as a decorator, do not pass `func` -explicitly.

    • -
    -
    -
    Function example:

    ``` -import pyarrow as pa

    -
    -
    class BiasedNumbers(WindowEvaluator):
    -
    def __init__(self, start: int = 0) -> None:

    self.start = start

    -
    -
    def evaluate_all(self, values: list[pa.Array],

    num_rows: int) -> pa.Array: -return pa.array([self.start + i for i in range(num_rows)])

    -
    -
    -
    -
    def bias_10() -> BiasedNumbers:

    return BiasedNumbers(10)

    -
    -
    -

    udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), “immutable”) -udwf2 = udwf(bias_10, pa.int64(), pa.int64(), “immutable”) -udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), “immutable”)

    -

    ```

    -
    -
    Decorator example:

    ``` -@udwf(pa.int64(), pa.int64(), “immutable”) -def biased_numbers() -> BiasedNumbers:

    -
    -

    return BiasedNumbers(10)

    -
    -

    ```

    -
    -
    -
    -
    Parameters:
    -
      -
    • funcOnly needed when calling as a function. Skip this argument when -using `udwf` as a decorator.

    • -
    • input_types – The data types of the arguments.

    • -
    • return_type – The data type of the return value.

    • -
    • volatility – See Volatility for allowed values.

    • -
    • name – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined window function that can be used in window function calls.

    -
    -
    -
    - -
    -
    -_udwf
    -
    - -
    - -
    -
    -datafusion.udf._R
    -
    - -
    -
    -datafusion.udf.udaf
    -
    - -
    -
    -datafusion.udf.udf
    -
    - -
    -
    -datafusion.udf.udwf
    -
    - -
    +

    Deprecated module for user defined functions.

    @@ -1422,6 +434,13 @@

    Module Contentsdatafusion.substrait

    + +
    +

    next

    +

    datafusion.unparser

    +
    + +
    diff --git a/autoapi/datafusion/unparser/index.html b/autoapi/datafusion/unparser/index.html new file mode 100644 index 000000000..33d59e041 --- /dev/null +++ b/autoapi/datafusion/unparser/index.html @@ -0,0 +1,682 @@ + + + + + + + + datafusion.unparser — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    +

    datafusion.unparser

    +

    This module provides support for unparsing datafusion plans to SQL.

    +

    For additional information about unparsing, see https://docs.rs/datafusion-sql/latest/datafusion_sql/unparser/index.html

    +
    +

    Classes

    + + + + + + + + + +

    Dialect

    DataFusion data catalog.

    Unparser

    DataFusion unparser.

    +
    +
    +

    Module Contents

    +
    +
    +class datafusion.unparser.Dialect(dialect: datafusion._internal.unparser.Dialect)
    +

    DataFusion data catalog.

    +

    This constructor is not typically called by the end user.

    +
    +
    +static default() Dialect
    +

    Create a new default dialect.

    +
    + +
    +
    +static duckdb() Dialect
    +

    Create a new DuckDB dialect.

    +
    + +
    +
    +static mysql() Dialect
    +

    Create a new MySQL dialect.

    +
    + +
    +
    +static postgres() Dialect
    +

    Create a new PostgreSQL dialect.

    +
    + +
    +
    +static sqlite() Dialect
    +

    Create a new SQLite dialect.

    +
    + +
    +
    +dialect
    +
    + +
    + +
    +
    +class datafusion.unparser.Unparser(dialect: Dialect)
    +

    DataFusion unparser.

    +

    This constructor is not typically called by the end user.

    +
    +
    +plan_to_sql(plan: datafusion.plan.LogicalPlan) str
    +

    Convert a logical plan to a SQL string.

    +
    + +
    +
    +with_pretty(pretty: bool) Unparser
    +

    Set the pretty flag.

    +
    + +
    +
    +unparser
    +
    + +
    + +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/autoapi/datafusion/user_defined/index.html b/autoapi/datafusion/user_defined/index.html new file mode 100644 index 000000000..40d8f0714 --- /dev/null +++ b/autoapi/datafusion/user_defined/index.html @@ -0,0 +1,1597 @@ + + + + + + + + datafusion.user_defined — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + +
    + +
    + On this page +
    + + +
    + +
    + +
    + + +
    + + + + + + +
    + +
    + +
    +

    datafusion.user_defined

    +

    Provides the user-defined functions for evaluation of dataframes.

    +
    +

    Attributes

    + + + + + + + + + + + + + + + + + + +

    _R

    udaf

    udf

    udtf

    udwf

    +
    +
    +

    Classes

    + + + + + + + + + + + + + + + + + + + + + + + + +

    Accumulator

    Defines how an AggregateUDF accumulates values.

    AggregateUDF

    Class for performing scalar user-defined functions (UDF).

    ScalarUDF

    Class for performing scalar user-defined functions (UDF).

    TableFunction

    Class for performing user-defined table functions (UDTF).

    Volatility

    Defines how stable or volatile a function is.

    WindowEvaluator

    Evaluator class for user-defined window functions (UDWF).

    WindowUDF

    Class for performing window user-defined functions (UDF).

    +
    +
    +

    Module Contents

    +
    +
    +class datafusion.user_defined.Accumulator
    +

    Defines how an AggregateUDF accumulates values.

    +
    +
    +abstract evaluate() pyarrow.Scalar
    +

    Return the resultant value.

    +
    + +
    +
    +abstract merge(states: list[pyarrow.Array]) None
    +

    Merge a set of states.

    +
    + +
    +
    +abstract state() list[pyarrow.Scalar]
    +

    Return the current state.

    +
    + +
    +
    +abstract update(*values: pyarrow.Array) None
    +

    Evaluate an array of values and update state.

    +
    + +
    + +
    +
    +class datafusion.user_defined.AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    +

    Class for performing scalar user-defined functions (UDF).

    +

    Aggregate UDFs operate on a group of rows and return a single value. See +also ScalarUDF for operating on a row by row basis.

    +

    Instantiate a user-defined aggregate function (UDAF).

    +

    See udaf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDAF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]
    +
    +static udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    +

    Create a new User-Defined Aggregate Function (UDAF).

    +

    This class allows you to define an aggregate function that can be used in +data aggregation or window function calls.

    +
    +
    Usage:
      +
    • As a function: udaf(accum, input_types, return_type, state_type, volatility, name).

    • +
    • As a decorator: @udaf(input_types, return_type, state_type, volatility, name). +When using udaf as a decorator, do not pass accum explicitly.

    • +
    +
    +
    +

    Function example:

    +

    If your Accumulator can be instantiated with no arguments, you +can simply pass it’s type as accum. If you need to pass additional +arguments to it’s constructor, you can define a lambda or a factory method. +During runtime the Accumulator will be constructed for every +instance in which this UDAF is used. The following examples are all valid:

    +
    import pyarrow as pa
    +import pyarrow.compute as pc
    +
    +class Summarize(Accumulator):
    +    def __init__(self, bias: float = 0.0):
    +        self._sum = pa.scalar(bias)
    +
    +    def state(self) -> list[pa.Scalar]:
    +        return [self._sum]
    +
    +    def update(self, values: pa.Array) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())
    +
    +    def merge(self, states: list[pa.Array]) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())
    +
    +    def evaluate(self) -> pa.Scalar:
    +        return self._sum
    +
    +def sum_bias_10() -> Summarize:
    +    return Summarize(10.0)
    +
    +udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),
    +    [pa.float64()], "immutable")
    +
    +
    +

    Decorator example::

    +
    @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable")
    +def udf4() -> Summarize:
    +    return Summarize(10.0)
    +
    +
    +
    +
    Parameters:
    +
      +
    • accum – The accumulator python function. Only needed when calling as a +function. Skip this argument when using udaf as a decorator.

    • +
    • input_types – The data types of the arguments to accum.

    • +
    • return_type – The data type of the return value.

    • +
    • state_type – The data types of the intermediate accumulation.

    • +
    • volatility – See Volatility for allowed values.

    • +
    • name – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined aggregate function, which can be used in either data +aggregation or window function calls.

    +
    +
    +
    + +
    +
    +_udaf
    +
    + +
    + +
    +
    +class datafusion.user_defined.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    +

    Class for performing scalar user-defined functions (UDF).

    +

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for +operating on a group of rows.

    +

    Instantiate a scalar user-defined function (UDF).

    +

    See helper method udf() for argument details.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF]
    +
    +static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    +

    Create a new User-Defined Function (UDF).

    +

    This class can be used both as either a function or a decorator.

    +
    +
    Usage:
      +
    • As a function: udf(func, input_types, return_type, volatility, name).

    • +
    • As a decorator: @udf(input_types, return_type, volatility, name). +When used a decorator, do not pass func explicitly.

    • +
    +
    +
    +
    +
    Parameters:
    +
      +
    • func (Callable, optional) – Only needed when calling as a function. +Skip this argument when using udf as a decorator.

    • +
    • input_types (list[pa.DataType]) – The data types of the arguments +to func. This list must be of the same length as the number of +arguments.

    • +
    • return_type (_R) – The data type of the return value from the function.

    • +
    • volatility (Volatility | str) – See Volatility for allowed values.

    • +
    • name (Optional[str]) – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined function that can be used in SQL expressions, +data aggregation, or window function calls.

    +
    +
    +

    Example: Using udf as a function:

    +
    def double_func(x):
    +    return x * 2
    +double_udf = udf(double_func, [pa.int32()], pa.int32(),
    +"volatile", "double_it")
    +
    +
    +

    Example: Using udf as a decorator:

    +
    @udf([pa.int32()], pa.int32(), "volatile", "double_it")
    +def double_udf(x):
    +    return x * 2
    +
    +
    +
    + +
    +
    +_udf
    +
    + +
    + +
    +
    +class datafusion.user_defined.TableFunction(name: str, func: Callable[[], any])
    +

    Class for performing user-defined table functions (UDTF).

    +

    Table functions generate new table providers based on the +input expressions.

    +

    Instantiate a user-defined table function (UDTF).

    +

    See udtf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) Any
    +

    Execute the UDTF and return a table provider.

    +
    + +
    +
    +__repr__() str
    +

    User printable representation.

    +
    + +
    +
    +static _create_table_udf(func: Callable[Ellipsis, Any], name: str) TableFunction
    +

    Create a TableFunction instance from function arguments.

    +
    + +
    +
    +static _create_table_udf_decorator(name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
    +

    Create a decorator for a WindowUDF.

    +
    + +
    +
    +static udtf(name: str) Callable[Ellipsis, Any]
    +
    +static udtf(func: Callable[[], Any], name: str) TableFunction
    +

    Create a new User-Defined Table Function (UDTF).

    +
    + +
    +
    +_udtf
    +
    + +
    + +
    +
    +class datafusion.user_defined.Volatility(*args, **kwds)
    +

    Bases: enum.Enum

    +

    Defines how stable or volatile a function is.

    +

    When setting the volatility of a function, you can either pass this +enumeration or a str. The str equivalent is the lower case value of the +name (“immutable”, “stable”, or “volatile”).

    +
    +
    +__str__() str
    +

    Returns the string equivalent.

    +
    + +
    +
    +Immutable = 1
    +

    An immutable function will always return the same output when given the +same input.

    +

    DataFusion will attempt to inline immutable functions during planning.

    +
    + +
    +
    +Stable = 2
    +

    Returns the same value for a given input within a single queries.

    +

    A stable function may return different values given the same input across +different queries but must return the same value for a given input within a +query. An example of this is the Now function. DataFusion will attempt to +inline Stable functions during planning, when possible. For query +select col1, now() from t1, it might take a while to execute but now() +column will be the same for each output row, which is evaluated during +planning.

    +
    + +
    +
    +Volatile = 3
    +

    A volatile function may change the return value from evaluation to +evaluation.

    +

    Multiple invocations of a volatile function may return different results +when used in the same query. An example of this is the random() function. +DataFusion can not evaluate such functions during planning. In the query +select col1, random() from t1, random() function will be evaluated +for each output row, resulting in a unique random value for each row.

    +
    + +
    + +
    +
    +class datafusion.user_defined.WindowEvaluator
    +

    Evaluator class for user-defined window functions (UDWF).

    +

    It is up to the user to decide which evaluate function is appropriate.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    uses_window_frame

    supports_bounded_execution

    include_rank

    function_to_implement

    False (default)

    False (default)

    False (default)

    evaluate_all

    False

    True

    False

    evaluate

    False

    True/False

    True

    evaluate_all_with_rank

    True

    True/False

    True/False

    evaluate

    +
    +
    +evaluate(values: list[pyarrow.Array], eval_range: tuple[int, int]) pyarrow.Scalar
    +

    Evaluate window function on a range of rows in an input partition.

    +

    This is the simplest and most general function to implement +but also the least performant as it creates output one row at +a time. It is typically much faster to implement stateful +evaluation using one of the other specialized methods on this +trait.

    +

    Returns a [ScalarValue] that is the value of the window +function within range for the entire partition. Argument +values contains the evaluation result of function arguments +and evaluation results of ORDER BY expressions. If function has a +single argument, values[1..] will contain ORDER BY expression results.

    +
    + +
    +
    +evaluate_all(values: list[pyarrow.Array], num_rows: int) pyarrow.Array
    +

    Evaluate a window function on an entire input partition.

    +

    This function is called once per input partition for window functions that +do not use values from the window frame, such as +row_number(), +rank(), +dense_rank(), +percent_rank(), +cume_dist(), +lead(), +and lag().

    +

    It produces the result of all rows in a single pass. It +expects to receive the entire partition as the value and +must produce an output column with one output row for every +input row.

    +

    num_rows is required to correctly compute the output in case +len(values) == 0

    +

    Implementing this function is an optimization. Certain window +functions are not affected by the window frame definition or +the query doesn’t have a frame, and evaluate skips the +(costly) window frame boundary calculation and the overhead of +calling evaluate for each output row.

    +

    For example, the LAG built in window function does not use +the values of its window frame (it can be computed in one shot +on the entire partition with Self::evaluate_all regardless of the +window defined in the OVER clause)

    +
    lag(x, 1) OVER (ORDER BY z ROWS BETWEEN 2 PRECEDING AND 3 FOLLOWING)
    +
    +
    +

    However, avg() computes the average in the window and thus +does use its window frame.

    +
    avg(x) OVER (PARTITION BY y ORDER BY z ROWS BETWEEN 2 PRECEDING AND 3 FOLLOWING)
    +
    +
    +
    + +
    +
    +evaluate_all_with_rank(num_rows: int, ranks_in_partition: list[tuple[int, int]]) pyarrow.Array
    +

    Called for window functions that only need the rank of a row.

    +

    Evaluate the partition evaluator against the partition using +the row ranks. For example, rank(col("a")) produces

    +
    a | rank
    +- + ----
    +A | 1
    +A | 1
    +C | 3
    +D | 4
    +D | 4
    +
    +
    +

    For this case, num_rows would be 5 and the +ranks_in_partition would be called with

    +
    [
    +    (0,1),
    +    (2,2),
    +    (3,4),
    +]
    +
    +
    +

    The user must implement this method if include_rank returns True.

    +
    + +
    +
    +get_range(idx: int, num_rows: int) tuple[int, int]
    +

    Return the range for the window fuction.

    +

    If uses_window_frame flag is false. This method is used to +calculate required range for the window function during +stateful execution.

    +

    Generally there is no required range, hence by default this +returns smallest range(current row). e.g seeing current row is +enough to calculate window result (such as row_number, rank, +etc)

    +
    +
    Parameters:
    +
      +
    • idx: – Current index:

    • +
    • num_rows – Number of rows.

    • +
    +
    +
    +
    + +
    +
    +include_rank() bool
    +

    Can this function be evaluated with (only) rank?

    +
    + +
    +
    +is_causal() bool
    +

    Get whether evaluator needs future data for its result.

    +
    + +
    +
    +memoize() None
    +

    Perform a memoize operation to improve performance.

    +

    When the window frame has a fixed beginning (e.g UNBOUNDED +PRECEDING), some functions such as FIRST_VALUE and +NTH_VALUE do not need the (unbounded) input once they have +seen a certain amount of input.

    +

    memoize is called after each input batch is processed, and +such functions can save whatever they need

    +
    + +
    +
    +supports_bounded_execution() bool
    +

    Can the window function be incrementally computed using bounded memory?

    +
    + +
    +
    +uses_window_frame() bool
    +

    Does the window function use the values from the window frame?

    +
    + +
    + +
    +
    +class datafusion.user_defined.WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
    +

    Class for performing window user-defined functions (UDF).

    +

    Window UDFs operate on a partition of rows. See +also ScalarUDF for operating on a row by row basis.

    +

    Instantiate a user-defined window function (UDWF).

    +

    See udwf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDWF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +

    Create a WindowUDF instance from function arguments.

    +
    + +
    +
    +static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
    +

    Create a decorator for a WindowUDF.

    +
    + +
    +
    +static _get_default_name(func: Callable) str
    +

    Get the default name for a function based on its attributes.

    +
    + +
    +
    +static _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) list[pyarrow.DataType]
    +

    Convert a single DataType to a list if needed.

    +
    + +
    +
    +static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
    +
    +static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +

    Create a new User-Defined Window Function (UDWF).

    +

    This class can be used both as either a function or a decorator.

    +
    +
    Usage:
      +
    • As a function: udwf(func, input_types, return_type, volatility, name).

    • +
    • As a decorator: @udwf(input_types, return_type, volatility, name). +When using udwf as a decorator, do not pass func explicitly.

    • +
    +
    +
    +

    Function example:

    +
    import pyarrow as pa
    +
    +class BiasedNumbers(WindowEvaluator):
    +    def __init__(self, start: int = 0) -> None:
    +        self.start = start
    +
    +    def evaluate_all(self, values: list[pa.Array],
    +        num_rows: int) -> pa.Array:
    +        return pa.array([self.start + i for i in range(num_rows)])
    +
    +def bias_10() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable")
    +udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable")
    +udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable")
    +
    +
    +

    Decorator example:

    +
    @udwf(pa.int64(), pa.int64(), "immutable")
    +def biased_numbers() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +
    +
    +
    Parameters:
    +
      +
    • func – Only needed when calling as a function. Skip this argument when +using udwf as a decorator.

    • +
    • input_types – The data types of the arguments.

    • +
    • return_type – The data type of the return value.

    • +
    • volatility – See Volatility for allowed values.

    • +
    • name – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined window function that can be used in window function calls.

    +
    +
    +
    + +
    +
    +_udwf
    +
    + +
    + +
    +
    +datafusion.user_defined._R
    +
    + +
    +
    +datafusion.user_defined.udaf
    +
    + +
    +
    +datafusion.user_defined.udf
    +
    + +
    +
    +datafusion.user_defined.udtf
    +
    + +
    +
    +datafusion.user_defined.udwf
    +
    + +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/autoapi/index.html b/autoapi/index.html index 40c2c4c10..b8d920eaf 100644 --- a/autoapi/index.html +++ b/autoapi/index.html @@ -117,6 +117,11 @@ Data Sources

  • +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -398,10 +423,12 @@

    API Referencedatafusion diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html index 7abc76616..2607e7220 100644 --- a/contributor-guide/ffi.html +++ b/contributor-guide/ffi.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html index 6a97a45fb..a8c329ba2 100644 --- a/contributor-guide/introduction.html +++ b/contributor-guide/introduction.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/genindex.html b/genindex.html index 6d65db2fd..3044426d6 100644 --- a/genindex.html +++ b/genindex.html @@ -114,6 +114,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -272,6 +277,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -292,6 +302,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -344,6 +359,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -442,13 +467,19 @@

    _

  • __call__() (datafusion.AggregateUDF method)
  • - - + -
  • _create_window_udf() (datafusion.udf.WindowUDF static method) +
  • _build_expandable_cell() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_html_footer() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_html_header() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_regular_cell() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_table_body() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_table_container_start() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _build_table_header() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _create_table_udf() (datafusion.TableFunction static method) + +
  • +
  • _create_table_udf_decorator() (datafusion.TableFunction static method) + +
  • +
  • _create_window_udf() (datafusion.user_defined.WindowUDF static method)
  • -
  • _create_window_udf_decorator() (datafusion.udf.WindowUDF static method) +
  • _create_window_udf_decorator() (datafusion.user_defined.WindowUDF static method)
  • -
  • _get_default_name() (datafusion.udf.WindowUDF static method) +
  • _custom_cell_builder (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • _custom_header_builder (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • _default_formatter (datafusion.html_formatter.FormatterManager attribute) +
  • +
  • _format_cell_value() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _get_cell_value() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _get_default_css() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _get_default_name() (datafusion.user_defined.WindowUDF static method)
  • -
  • _normalize_input_types() (datafusion.udf.WindowUDF static method) +
  • _get_javascript() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • +
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method)
  • +
  • _refresh_formatter_reference() (in module datafusion.html_formatter) +
  • _repr_html_() (datafusion.dataframe.DataFrame method) +
  • +
  • _styles_loaded (datafusion.html_formatter.DataFrameHtmlFormatter attribute)
  • _to_pyarrow_types (datafusion.Expr attribute) @@ -667,24 +746,36 @@

    _

  • (datafusion.expr.Expr attribute)
  • +
  • _type_formatters (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • _udaf (datafusion.AggregateUDF attribute)
  • _udf (datafusion.ScalarUDF attribute)
  • +
  • _udtf (datafusion.TableFunction attribute) + +
  • -
  • _udwf (datafusion.udf.WindowUDF attribute) +
  • _udwf (datafusion.user_defined.WindowUDF attribute)
  • +
  • _validate_bool() (in module datafusion.html_formatter) +
  • +
  • _validate_positive_int() (in module datafusion.html_formatter) +
  • _window_frame (datafusion.expr.Window attribute)
  • @@ -693,18 +784,36 @@

    _

    A

    - + @@ -861,8 +1048,14 @@

    B

  • bit_and() (in module datafusion.functions)
  • -
  • bit_length() (in module datafusion.functions) +
  • bit_length() (datafusion.Expr method) + +
  • bit_or() (in module datafusion.functions)
  • @@ -875,8 +1068,14 @@

    B

  • BROTLI (datafusion.dataframe.Compression attribute)
  • -
  • btrim() (in module datafusion.functions) +
  • btrim() (datafusion.Expr method) + +
  • build_table() (datafusion.input.base.BaseInputSource method)
  • -
  • cardinality() (in module datafusion.functions) +
  • cardinality() (datafusion.Expr method) + +
  • Case (in module datafusion.expr)
  • case() (in module datafusion.functions) @@ -933,34 +1138,74 @@

    C

  • catalog() (datafusion.context.SessionContext method)
  • -
  • cbrt() (in module datafusion.functions) +
  • cbrt() (datafusion.Expr method) + +
  • +
  • ceil() (datafusion.Expr method) + +
  • +
  • CellFormatter (class in datafusion.html_formatter)
  • -
  • char_length() (in module datafusion.functions) +
  • char_length() (datafusion.Expr method) + +
  • +
  • character_length() (datafusion.Expr method) + +
  • children() (datafusion.ExecutionPlan method)
  • -
  • chr() (in module datafusion.functions) +
  • chr() (datafusion.Expr method) + +
  • coalesce() (in module datafusion.functions)
  • -
  • col() (in module datafusion) +
  • col (in module datafusion)
  • +
  • col() (in module datafusion.functions) +
  • collect() (datafusion.dataframe.DataFrame method)
  • collect_partitioned() (datafusion.dataframe.DataFrame method)
  • +
  • column (in module datafusion) + +
  • Column (in module datafusion.expr)
  • @@ -969,8 +1214,6 @@

    C

  • column_name() (datafusion.Expr method) @@ -993,18 +1236,44 @@

    C

  • (datafusion.RuntimeEnvBuilder attribute)
  • (datafusion.SessionConfig attribute) +
  • + +
  • configure_formatter() (in module datafusion) + +
  • Consumer (class in datafusion.substrait) +
  • +
  • CopyTo (in module datafusion.expr)
  • corr() (in module datafusion.functions)
  • -
  • cos() (in module datafusion.functions) +
  • cos() (datafusion.Expr method) + +
  • +
  • cosh() (datafusion.Expr method) + +
  • +
  • cot() (datafusion.Expr method) + +
  • count() (datafusion.dataframe.DataFrame method)
  • @@ -1054,6 +1337,8 @@

    D

  • DataFrame (class in datafusion.dataframe) +
  • +
  • DataFrameHtmlFormatter (class in datafusion.html_formatter)
  • datafusion @@ -1067,6 +1352,13 @@

    D

  • +
  • + datafusion.col + +
  • @@ -1095,6 +1387,13 @@

    D

  • +
  • + datafusion.html_formatter + +
  • @@ -1158,16 +1457,30 @@

    D

  • +
  • + datafusion.unparser + +
  • +
  • + datafusion.user_defined + +
  • date_bin() (in module datafusion.functions)
  • - - + +
  • Deallocate (in module datafusion.expr) +
  • decode() (in module datafusion.functions)
  • -
  • degrees() (in module datafusion.functions) +
  • default() (datafusion.unparser.Dialect static method) +
  • +
  • DefaultStyleProvider (class in datafusion.html_formatter) +
  • +
  • degrees() (datafusion.Expr method) + +
  • dense_rank() (in module datafusion.functions)
  • deregister_table() (datafusion.context.SessionContext method)
  • describe() (datafusion.dataframe.DataFrame method) +
  • +
  • DescribeTable (in module datafusion.expr)
  • deserialize() (datafusion.substrait.Serde static method)
  • @@ -1195,6 +1522,10 @@

    D

  • df (datafusion.dataframe.DataFrame attribute)
  • DFSchema (in module datafusion) +
  • +
  • Dialect (class in datafusion.unparser) +
  • +
  • dialect (datafusion.unparser.Dialect attribute)
  • digest() (in module datafusion.functions)
  • @@ -1246,9 +1577,19 @@

    D

  • (datafusion.expr.Expr method)
  • +
  • DmlStatement (in module datafusion.expr) +
  • drop() (datafusion.dataframe.DataFrame method) +
  • +
  • DropCatalogSchema (in module datafusion.expr) +
  • +
  • DropFunction (in module datafusion.expr)
  • DropTable (in module datafusion.expr) +
  • +
  • DropView (in module datafusion.expr) +
  • +
  • duckdb() (datafusion.unparser.Dialect static method)
  • @@ -1256,11 +1597,19 @@

    D

    E

    + - - +
  • Exists (in module datafusion.expr)
  • -
  • exp() (in module datafusion.functions) +
  • exp() (datafusion.Expr method) + +
  • Explain (in module datafusion.expr)
  • explain() (datafusion.dataframe.DataFrame method) @@ -1336,7 +1693,15 @@

    E

    F

    -
  • fill_null() (datafusion.Expr method) +
  • fill_null() (datafusion.dataframe.DataFrame method)
  • @@ -1364,12 +1731,28 @@

    F

  • first_value() (in module datafusion.functions)
  • -
  • flatten() (in module datafusion.functions) +
  • flatten() (datafusion.Expr method) + +
  • +
  • floor() (datafusion.Expr method) + +
  • @@ -1408,14 +1797,34 @@

    G

  • is_current_row() (datafusion.expr.WindowFrameBound method)
  • -
    +
    @@ -1582,8 +2009,14 @@

    L

  • left() (in module datafusion.functions)
  • -
  • length() (in module datafusion.functions) +
  • length() (datafusion.Expr method) + +
  • levenshtein() (in module datafusion.functions)
  • Like (in module datafusion.expr) @@ -1598,10 +2031,22 @@

    L

  • list_concat() (in module datafusion.functions)
  • -
  • list_dims() (in module datafusion.functions) +
  • list_dims() (datafusion.Expr method) + +
  • +
  • list_distinct() (datafusion.Expr method) + +
  • list_element() (in module datafusion.functions)
  • list_except() (in module datafusion.functions) @@ -1614,10 +2059,22 @@

    L

  • list_join() (in module datafusion.functions)
  • -
  • list_length() (in module datafusion.functions) +
  • list_length() (datafusion.Expr method) + +
  • +
  • list_ndims() (datafusion.Expr method) + +
  • list_position() (in module datafusion.functions)
  • list_positions() (in module datafusion.functions) @@ -1666,8 +2123,14 @@

    L

  • (in module datafusion)
  • -
  • ln() (in module datafusion.functions) +
  • ln() (datafusion.Expr method) + +
  • LocalFileSystem (in module datafusion.object_store)
  • LocationInputPlugin (class in datafusion.input) @@ -1678,10 +2141,22 @@

    L

  • log() (in module datafusion.functions)
  • -
  • log10() (in module datafusion.functions) +
  • log10() (datafusion.Expr method) + +
  • +
  • log2() (datafusion.Expr method) + +
  • logical_plan() (datafusion.dataframe.DataFrame method)
  • LogicalPlan (class in datafusion) @@ -1690,12 +2165,24 @@

    L

  • (class in datafusion.plan)
  • -
  • lower() (in module datafusion.functions) +
  • lower() (datafusion.Expr method) + +
  • lpad() (in module datafusion.functions)
  • -
  • ltrim() (in module datafusion.functions) +
  • ltrim() (datafusion.Expr method) + +
  • LZ4 (datafusion.dataframe.Compression attribute)
  • LZ4_RAW (datafusion.dataframe.Compression attribute) @@ -1714,23 +2201,39 @@

    M

  • max() (in module datafusion.functions)
  • -
  • md5() (in module datafusion.functions) +
  • max_cell_length (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • max_height (datafusion.html_formatter.DataFrameHtmlFormatter attribute)
  • +
  • max_memory_bytes (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • max_width (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • md5() (datafusion.Expr method) + +
  • mean() (in module datafusion.functions)
  • median() (in module datafusion.functions)
  • -
  • memoize() (datafusion.udf.WindowEvaluator method) +
  • memoize() (datafusion.user_defined.WindowEvaluator method)
  • merge() (datafusion.Accumulator method)
  • MicrosoftAzure (in module datafusion.object_store)
  • min() (in module datafusion.functions) +
  • +
  • min_rows_display (datafusion.html_formatter.DataFrameHtmlFormatter attribute)
  • module @@ -1739,6 +2242,8 @@

    M

  • datafusion
  • datafusion.catalog +
  • +
  • datafusion.col
  • datafusion.context
  • @@ -1747,6 +2252,8 @@

    M

  • datafusion.expr
  • datafusion.functions +
  • +
  • datafusion.html_formatter
  • datafusion.input
  • @@ -1765,9 +2272,17 @@

    M

  • datafusion.substrait
  • datafusion.udf +
  • +
  • datafusion.unparser +
  • +
  • datafusion.user_defined
  • +

    N

    @@ -1823,7 +2338,15 @@

    N

    O

    + - - + - + + + + + + + + + + + + +
    +
  • table_exist() (datafusion.context.SessionContext method)
  • +
  • TableFunction (class in datafusion) + +
  • TableProviderExportable (class in datafusion.context)
  • TableScan (in module datafusion.expr)
  • tail() (datafusion.dataframe.DataFrame method)
  • -
  • tan() (in module datafusion.functions) +
  • tan() (datafusion.Expr method) + +
  • +
  • tanh() (datafusion.Expr method) + +
  • to_arrow_table() (datafusion.dataframe.DataFrame method)
  • -
  • to_hex() (in module datafusion.functions) +
  • to_hex() (datafusion.Expr method) + +
  • to_pandas() (datafusion.dataframe.DataFrame method)
  • to_polars() (datafusion.dataframe.DataFrame method) @@ -2317,12 +2968,28 @@

    T

  • (datafusion.plan.LogicalPlan method)
  • +
  • TransactionAccessMode (in module datafusion.expr) +
  • +
  • TransactionConclusion (in module datafusion.expr) +
  • +
  • TransactionEnd (in module datafusion.expr) +
  • +
  • TransactionIsolationLevel (in module datafusion.expr) +
  • +
  • TransactionStart (in module datafusion.expr) +
  • transform() (datafusion.dataframe.DataFrame method)
  • translate() (in module datafusion.functions)
  • -
  • trim() (in module datafusion.functions) +
  • trim() (datafusion.Expr method) + +
  • trunc() (in module datafusion.functions)
  • TryCast (in module datafusion.expr) @@ -2342,34 +3009,46 @@

    U

  • udaf (in module datafusion)
  • udaf() (datafusion.AggregateUDF static method)
  • udf (in module datafusion)
  • udf() (datafusion.ScalarUDF static method)
  • +
  • udtf (in module datafusion) + +
  • +
  • udtf() (datafusion.TableFunction static method) + +
  • udwf (in module datafusion)
  • -
  • udwf() (datafusion.udf.WindowUDF static method) +
  • udwf() (datafusion.user_defined.WindowUDF static method)
  • -
  • WindowEvaluator (class in datafusion.udf) +
  • WindowEvaluator (class in datafusion.user_defined)
  • WindowExpr (in module datafusion.expr)
  • @@ -2472,7 +3165,7 @@

    W

  • WindowUDF (class in datafusion)
  • with_allow_ddl() (datafusion.context.SQLOptions method) @@ -2523,14 +3216,14 @@

    W

  • (datafusion.RuntimeEnvBuilder method)
  • -
    diff --git a/objects.inv b/objects.inv index b94584081409bbada82a892fc86efc5b9e475192..da03cabba9cb48d4da33f9ea456f318ceee93134 100644 GIT binary patch delta 7762 zcmV-Y9+qkjE-}Na}mGe5N-8Z#$$rY( zpMPRJqube97x`a&vb+D8-c9xiX0Ow)}D;|sk5nI%a|@;pgk@-$1Tj4UmSXf4^IGB+E8 zYiQ$g_SXEFi`D3Ys;{4=d(P=vXzaD&j=SD`A zZUdNQi>Q)qIe)PQ(s0awc|`r(Z)sX-^Vefe_~_C(pqO4NX(?lR=@Czo=cKIjH@f5x zndzG4nWP*lj~P=YhdW?gV$*XCMO{i!B&8HuKoLtKHM5_RR8&5rhF?;tcX41X;xk&x zhz4Cs(~e1&#WiD3;Sd!19RRYTAP`gMw16OK00`q7(|_IoKsiL=W>DgY5_#jvZ5K=z|h)k zMOEEFmSRZu;khGHiswY{N^fSy-6C12$V`z`Kp@t!jGU3^d`M|bvy2r`Af*{kH3*Cr zrQU&%a(~KKdJTf&U}aT`GFg!H8yL)(#2ldH>z*c-u_%=?7R_KB01;jFns5L_Y&I5D zKT{f;lLgZ-9b#cd;Ubce5-vDPNuJnAglL$|7&pUW^stc<72A{2g^Wf}md7I2M8edz zC6QE9Fr17fh`cH|2n3|@McV`bCP6A<+gwIhl7G_JTWRKe0Lm4}q<}Cc=(da}$ao8O zY5Jj%jKmHOOP1SlmxExc93VSpc!`DNrfj31k;`0&=$zOY%8IkCX3?F1ai&ue+xnPF zxX=()Wl0c}_{PW74=N+4R%akjwA>6-5N}d72V~T9EV#SlAh%~adGyeg$F`eXtbYD$ zJb&X=G~zjW$jbrj@FM#ql3>S!L`zC^L8D(og)uaN8m^F;u~`?f&wjCquBZJ1Q*>_1 zow<}J)^Q{D(IQF42#@X6lA7{S(Rra;?-gN}-3ZSVC{IT}(k;)i|4BZ=Gh-V z83!;Ir$w@++jz)^m>0R|=Ow^^(yp#VFsibQeoEE_0x_~Zo8QHAvXoJ%4`O8}D5IQ; zIt+k?)&m-dLs6F)?f!EHmaHTx*BkZ&mKy6)beWl`)<-WM4dJWQswL~PFAM!%?IoHn?;mwfPYHN0!;{Cl{95bhHx88!Ytm-vzJ2T;C#E}lkJj% z7DDcDBs49`WXW=xlq6m6s^?gMwmHJFiWXj4nx)>!jY75%kZ^_J6feBd)u8_RS=S*?HtC``#SKX*cAJ9_=0HeZ^Bc;2*^SK?x9rh@a%RRt=MnWTi3mzB;o8;qU8|Bb@ska; zhxf91B^Zv=%|gu85_ZW#O4%ixy|znvukBX4`)z4nVnh1Usm1`fT}*R(?b5{W;OjMj z2I~1`Cak+Trgv^fxt}2Kr=If)oifyh~Oo z#fD}5TVUh$Le6J^P`QbSzKP274OBLa;u)LDe@s}0C-FVUWGC*8T$HHq;WOMW?|VAk zf?Ai(e}Cbz9z77&Y%lOU;q2?h$`^mzkkQ(Cr_{cMAevoeEs7#S}SwtZnV-{Ea) zG>K*fiDC()#Jp|b!TU{t(QJ|DG{wg6S4aANXU0oa9PK_bs!}tSqE&Iw*51+Zz*wK7 z`BIcvY`RTpsjW8$o`PE?s7LDCsNAAI(B_P=pp~!jDu&L`@WG*ZXktM zVv?D+lz`>?IDwEA^*DvV1?Lcv=1`q$3k)_*|Js60HGAEijJmw#@tAlO)s27>iEIvi zjKpw~?|uN>;+y@Mbdey&iQF|OUB|KB*89ujDPda!2h!|}Ax##0bkD@nP(1Aq7=JPp zDfF7kXVxEIU?})`-G5k9AX5WWdB9%hFiyGqEC4vpWx5lO0uVQEUy~r9_glXes*OSb z0fiej4|#7ywu53m*hEmU-`w6u&@%j^o*{~3y`y%+UJCM5d{<}<Y{HjM}nsj3AyQ_G5GYy-`0vwsRy?FZR} zVeXHe*~fE)Dgd%jU>PL=r=bsmt>I|R1R4y@#qJ6@7I!c*Y=VCvHs~1ify}UDS_eWo zLYbDLOco^lhJam4!9nY)?%`qy2URI!fHcNIVSo)N;DE?MFu1HO_OsNI)3vcY6qjt%-zgGnPqGw@DTnEa6x| z>&ydjz|9)aY63NyQUTYRGisw5!rf?da3^R@fSX^ihL`yZk|iPEBbH_)5RwtNALYlpd5{rp!*+ABcVGvF|t zgT5;j*)L!$J4z*XFOx1P;KYP5Mm~7w5YmPlSio6FVgp#m-E9kS(4B$sWJB@_?g1)E z#sVUfhV$sg?qCAsZGZh)Pxj0Y!ZU?L)_|stCEIy8I3Vbd;kUZLzWS&&dG+e=ptxWD z0g3zDKS6W%%g=C+7sXb*0<2!ZIabgq){sp;;jr(JFw?*IDuK3+Ag7c;XOy)_)^rPr z+Ys~e4rnug4tPPQ*ag$v35#H~y5L|(#%xo`2=^bNy_LCe^biahzYJ zs7llQ=M=zy^Wg*g25@f=`~!nc|P`h_i?0<`a- zL4o@4wosx{%Cmq&kOooPjmA(wJ4>sQC6h3oCoNZ!=YOPmMF&{c1?+A$31}Cy+r4DE zFu=g_*#?Cm{;89uRH@%YMnSR0tV#0<=GCi%z4x1a!FUf!_{~=znz)`|=(#2kqtIu$ zgW2u-g@aVa7Z)o7iUYF){tvsd0MNt!bkh$2X)c1WKLxDfOoL469pl|vZ{m)X#lXACLmWI>t8n-?O_t%R(;;WR zKHCyO$h9kYv0MfmD>DkuRAOF!q#2o#fMdhPN-Tvv{1(VMJtt5~n$iqWpgpZQQeauX z=&Qc?J#E7NAUz~u@7Ur_7EfCM*V zws|$w_8ix=-m-(Q;?F&Krfju_SG0SOP@wi;UnH=3boyrmJUb;C32ffqu-J`fAO;z! zulntTc^fPR0p7UGBcNT_axAvCn_+O^YogG=O%!(|I7g~Wm(uT(#DI6Ac*EnH5ZmzN zy?>7;Je%VUSKTeTIP`X>E(Tt;%N%%gtdf@$@1a~)YK>X17LQo5k`}_Rkz%p&#@?FG zvFIfwXr*4-#a2`}X1RL-w1QXc2U6LnoM9DvvnmBo)*|t~pE&q7rZ+I!oOrWV-1gsD_ zO7U7QLUtQ(aY*PdmMdz57lTh; zW^6^_J2c9&8RZx?MtP>(+Bi6PTf!qzmh}#zWr2cCqJ;6Jc9nufOQrY0D?rivz*n$X z0spRg5(WzrzDmJg*-c}}5e$e<+ z8lH(Umypwqu@Kgp!rP)QY#5HSltUxT0(dUU1j9i9IRr3{qm+Xq`AK;;iZ4@*MzMJu z8_8{_W+Qp+I68*Y&QZ`oa5P8jH&{+D2XLgU~hTBCK z&ynC5&Mpla!`G$DMl5qAPnVjG;ppPfD1I)UjNsW8S48TX3Y0Kn#kc@Uu8L8^j8DtKLQe z%NpZND7zCz0hGI;GKU|! z>&=!ZOLQf;qiYG@#YzmDpc73T7RxhHAW&Bn0SexpBwf*MnV>k~)a<+tREU5sh)&l? zY@|0}LzfBJthQL-9SRt$fk;0$iZNsC=<*c`R^_6^X&P#~MdIQ#41cvl;9^W`q4nqX zPzq2iMra1vM8biEJ}0~?76?y#gjoQIF$=Iip#qxf52^sB*5_3KQ|n_ZK&kEN6|hu} zfCM)~RGBl4;`rH|Zvo1*p%ig^=akMey1}7h_*~ay45#b*FcE|}IEGxpZ$ZGBX;Rg~ zfN`ka4FHFYuu7ufhkr+e?W7nRKlkU%08_2=q#4cNJ8zer6fBkS{q0C1&l#=+Cmi`E z6ir2aG8?c4mZPk;@r84Qg&PdZ6=gR?dx{Y#v|`{d0|-00koIw5?c!><@Cz5uYk05u z=Qj9rJk@@eEQKtrf4}St_j#DQKj!CQ`q^8W=kL2(S0deBmVX+cF-!dUlf9=Hj8%JQ zesLjK|82gH3__l(42I0+icYR-zL6s^JD6?0p3u)AX{Jfd!L}&mb}ftx(#uDd+mZ2 zLhh2qPE++VIe2E-ixfQL_OuFRx3HD9f7NYsU~EyQY=5+-!xy~UHGX%5oGpXf-@CHU z`|~E)4GW-?i&GQqmibuQu#`)SNmy+5&sm)jR8!9Oe@c%&~f@;7hiuBt7f~IASM#97o2qj#~;HyouSFL5M5 zcbhV_@NL@J8}pC5fw`z;N`p%OSR|M}ybi`ojjM?uy}YjYuqtU%hgM6Iest$JCpcJX zcvZp3j;pp1ZP8m@BA|+d8PG|VkWEO~u0!GlRH`;Wq^~Muw|o$)B=UO|5~=ShEoUKw zYk!wh84`)`GD0lA+NPwmki8>lH*J4Q=%${%F31nT=YP9?!to`6Yvf;rSmpF>E~*S3 z{%@^Ic&hEz`Fobr`A%tCzzh85oae++zy4AAYK`WXIq4nFZJPdeVN=cSw=}J6dws0A zR|f54Y%gz?ByN7O*STW^S(4|ZDT|)B`hVf{bZs6f()$I$=DRb~i~@FU!Cb@hUCho> z3N7H-`(xtU-Frrva+_m(ajutlH2CM!wG^@jbx z;=}cq%k)I0Yg!O!5!f!-B|BSHK~s_Xpyh6eWF)#8hZxM)Az`NSbw;3(d>s;Q9)Dlq znD?A4Su|VNuUQ`5wEY%HH}&kveR$KTTp3j_i3HM5Zm4HKjFq#^e&>#r>ua8oN^@o$=&wmZh3E3>o!Vqq2PL#-N@2qZ{uz&bzlg{1> zuBxJUIqNLD7wVtW?f0!6cC7}6DSri6qQilmlPh3z>K@=eng;iCCOu7LpoBD)odVZo z1GR%WW=+ni%qVEi9dVXXMeSJ`bwE(y40rK+H!^4u)H}Fk{%tH$sHRh8WO;pF>Dsl+ zzR}bq=^sa{Oh@G5dHl89ShuQwPgIjG;7;n4vv;PZ>L}<}dg3{74{=tzrGNC*{V4Q4 z(>){VD0-EC%N7{!$I(nTdq2ivvDteH<%=t=s@8rINY>QQfYw zTU67jWMa=DmCb_%=RTk5$mer@=2Y-Q{4-Nwtt7Gpfk ztBl_4=Bzs-sT8?M9oikI0TX!;QmQITVIw{+Y)n~dqp;L|A-7OBKiXK6_RC~x_qySU z;@Gw=8`YNTsMMxLU4Lds=FK%dT-&Cj+>JQFv75#$;dbAIn|^lQ9WLgALe^|%cM%@l zdzD56`aY7U>l4#snEliBeNZXaCB{g67k^pQrYsyH&+9`co>3 zLhw85K1h6Qwa!(lVZGjeH#w7u)cl!?mDhJtnMkcrUs}hXc7N`^{`IVg$ioDhbf<8U zp9gbIw>l8sNqa`X{d!Ks{b?U*K{7|FPlVdv&q>j3DT7q@2~Py(t6+Wf(-^(= zdck05H7~L|jMtA3)2C+l{KP)HoYg5B(_pz|UBcM}o`3YXGqxn3-fuN^;keWp8Z%#5 zub|c%xrpti^!$g;Hxv74qRPn(uxdJ2HAc<-{;SD~@_muD#OB*37v|526SydRl6RwX zko%L0=?J(GFRoI}w{@XTnD9Q<7Zt@%_IEGF#GOn0+Wcd$w2swRE;K*4*V&|R=YP1X ze1IQ6e}CPEwz z_eZj#6D`u2>Ai=EJJ!DW{m%Ywy0lB%=~T&?27h~WO@ICJ z@b2DG`$;~gr`a#fOKF|2v;_s?8WVELGjka`K}us<(pMlg88}_{HV| zG~jLM;9cnIr7nkej4ws7+Wr!+^~Qdlergj;LdUpZ#p7}DU{t(%Wox_#YwaU`JEixn z^?!f$s*@43KXub8?2o~v_f@a~_u^7}o&VTBud@}kUQl<0XLn1M>v}W|(K)%YxwpJ3 zxEUktul@IC%pQj@|C3?9wgyC^_WVa=DbI9h3H7b$@x*bh}e7n8l^sc9ZN)gQ<^zp^jmGru;I= z{ob)K?8gJhCDZJhU2|yF9N8mo_s#`S{c}B*+CL|!*36ZQ8(YWQI4AbZqC1D|x6F8-j)9dxB;vFYGh Y7WPKb9YFr#Kius(CnL)L13UjWgN~~^!2kdN delta 6118 zcmVYYMWlETXk!>&Con z3a+Eg%h|R0vlQFe1=T*k%8#7cuhp^aS8JkZ@>{Jqsi>NddH4Py-_eR#g8e%B`N50K zD%}pSD%MFQ+kbOX3#8+i|H_2=xp|^_qs?D;CE>G6=Y(Q7~zjl00U0o4?s5 zf6B~vtSltuPawv+s7efvo!b=98?Qq3BOq-8@3wuhnh z*-EOqlPsl>?BsbMQi{h+A8M~=roAF58BvMZT2uW<(=;wa$q5&nnPp&RHRxoR(y0hh zHWdefK!3bZr#Ql(G~;<{0nt_uOKX4|R@xd*EohHv$}*j!sZ4}0m2sgVvSUfM$Aw~iLMftE(RuKL1nf+q+<5Tm33U{BVAqtqx+ zUTZ8((2VziDLZ-G!WyUeS&0u9N_8pd*YMHvs%v5jcO-DnRyoNl+ z>qaXWR=SPr87+Avxu?0Aao-Z1?`HS60mBUc_U~-n0cUrTA@sPq0eR5}tE*HHuj@(H z;D2YQhLlm}ER@qH4GqP}D11IG5t1j@X-ne!hHF;Q8@_+ru(F`@?aVJoW+})wY-@%> zQ#0JF7jXGB)3V-WX1M*DRfLnRseJRn?jRKj(4IAj&AggoGg(6p*Evtp%LP4o^N-+%D6Xv{+e%u77{>%*toF0|C_UUfvQg#RC= zKMlC<&CNo|=(t4z^0p_)3LNSDLhOn>p(j2VU4zIJZ;qY-;L0&zHAR{m#}U<%X6A@0 z`~S5Y!snOKkODd%oRSsQK(FfCnbYzz#lBNeY;H|SG%M(aG^Ng3_ZGLQnz~RpBY*9c z#4x@QvLeo&gn+M!{MJxymKP0Yd<)7pE9l-7Mq2l$ZnQ=b;%2Ujarmb7LW;@>;*0zx z7$V(Tw(#iQo&(F*L~d;(?Sv%IKX+bGvqoI^^y;fgkmA7NDaYQN#_9dKW{>v&c2)Mi zv%t+NnE_*E>&n^ljK;@On%Z-yQGZXYk>4tjaL}f%VWH10nu+z2qDA!t04-|3YG>N^ zMUyn4F{+tk&4N5_b78=@mEFzSX@=_ol-t?4H1kd741QUnb$vi?ipLF1^I3JMd3hT6 z36FW!x5=hG?AwHae#~dE!Jsy-lJwd!K{{BlkwQl=92{sZ9d`ZjooxG z|B%DYQ*G4kkT&yDMg-iN{hb?EZvQ8T>4`p4o;QeNz0Gs_;B}Py3G#hf>tvAeC7K#+ z>Q5lgF!iKJo4*wRD|LEn0Do3q@K!;x*vPGeWO?yh3CSYkwic4b&Dv@Rmm0kFFb6qj zD`J+MxUGp~5f!?K@U4poNfD;{nN-yAJld2$7aeKZPZE=C>Q9pX|0FhkDmf;A^j5?iY2BI>cz>#KABWaFglw<6 zq1h%3@#zHAeWVQb~btoQOGhxNhG$6L&0*5Eu&-#PsX+sYcpuI;|huhGg=lI z*-L>dAy<1`0e>mMaepPWiZ8AZ-2UCqAIKHnO2Mu4R)|fiP^+aCgxtbfDWy9!yM3*O zAl84;TxUuP`3lnTyHG1=cy5F$e0i@_TTYBU^Rs8g^nuiLc_9~)K}dNOA&;*hWzQ&{ z8mRooj1_nyzLl8l%&nD0jk-c!;dVyf2k8^2-sg7E@7jKiuz#C+fxpVKW8!C{3&hsy z>1uyuC%sQNy_eo6U0sW+mcDW(3hFFAgu8ls|LOCG+kjR5d=bC?d3%Q{;KQH)z~*Q7 zZ~l!cld9yl8wcu&@Bz7#bUn?B{V*4EDgPlB`GwE{-$bTL%SAgBJ$7E*$4PUZ~p%r}0 zR_|OH)`U^9@3hEXL)yTZ;T1$=>qE99YKJ8%%tvW9onq=so}T#=1`18ePN0n%A@|qK zWoyFF)BrP>M(ltmND15iP7x5a_njgjXyZFcK*+B5YypyRWnCJv1T-9RAa(EzTcvL} zrwV->@_#f`EEV0MobzH<@204ihAFj6HG^T_naqUI4KX`0bcR#@y_%_5aUE1x|k?wtn2mwayljK zOkE_+8uVzkKB6b=KCyT@eWOGyQs^C(k8Jt?dVehVaW{S8ejrl=RCzxaC32jP@bB&j zSbuOE0{KU~-cMt_8)y%SBq?g37re1f!S}QzFaza{-9T3moZi5d41yR(Vgf(K@Hi|l zBp6f#E+i~e6fSVjEQYB;aiKw@B9J9)A(pVY3koR}!wU&66~W`Mr56%#DgqZAdMb*^ z;eVMyTgfrN(7;qN%+L^3QOv+#RWZ!KuvIb0&;V93%$QJC5!|4lRuR15@K)i>8G){X z;XxsnKm@87 zV!+OHFfJn0RumJG7Z^||m=_m_D;OIZl7A~4xCgB0m@r-8(1?It!O-Z?T{Fo6_iRRy zL&A9l10w=^g);-TNW)=K!M=jA;lX;sks()<2Ge3ffdxZjf`WxXHRTG#p7p+;Z_+rw zO3~D&#XL{|^WW_U_7%YNcgsI82=nbNe`wa<8Y&L}EcKq05Zeg1>Z8z*tdH%S4u639 zEE}j?ec@lZc;p~7pcjOCJFr*#O)wzJwcuvpCyZ+t-sg7COe4XJ1|K@-y;Mv;Bc_2q zx?7?40B>fxNjl`NQy|;Ru@Y$|$>~mXJCTVnDeP%)kooTZ)F&|w=ELW}O%9&-hgCs9 z_P!oWlQ+Q60sz%2m+2Is4XX|XYJdFgp+x1B7XkOgMNxZ~5-6Zu>Z)wRB#iZ{=h^_T z-EsoJ_yX8NS`v`IirZs0y$)b3_$&`F&H`UJ$k_D7x!OT-U>sFLH68(O{eY3s?lJ)^ww45|z;{HUfxEjEkl-AtE?r8o!GaGC@5AG}llAcAlJc$I z;jlU0a8-*sTa)}N9(^MP)__$D)tjmD=vXB$Dc+=9H)@AjuNIG3v44_Q!f*RvvGK;< zmd~;1H6>`JUfVq>R5)h2djV(#-vx?+XRDH76??Zu0Z-N<^Bzz*`2HwAFxuV?*lt3= zldYo_f@Y+0#^9j{nvh|_t3VpTHer}QV?g2Geh=Qi)=b+&hZtBKCD@X^rz$k{2>~la ziBi0li;!J2gjdkeoPWrIaZ)mPb3)!;FaXM2!_Sd9W#D>Fz9SN;i&-?uU6cwWK6uN` z1u3b5*PDVul*b}5ESa8~Jt}yxM5rxJ(BeyZV-DBF4)!xWMca3ybJ5@j}?G=yXr>Vls%oIPPoZ`&Mv$!;1$iJ(9*&U8+|`x{dn-q6O>ck1I& zLQ+ezg-2rbuzxZKx384#?fJ0GjfQ7p*b;11BCd9t!t0{8yCOMDIW&S5z;jUy3=WOq zdeDM#9Hkr_$xq6&QGA(NG>XpS*hp?WEgQ*e$I&sIb{rUKe6nbc)^D(!UQXahS;ujC z@oX%Qmm?j;;l<%`{9OiU47ZCRo+H6AoLxFJhOf(zjel6?NS-b&9mCPZp;7!?JQ=~w z#evbhTpS(6$)$uRiY)^2r@tXUe}-p1QgBN~StBgqFn01Q@|9*NCte&GV-LiEG3+iC zc>+fkzknktycGxMfLH~u)w?J&cEE1nmm-|-J@|ai{h?P-q~75evfS}HaA;GO417_F zP*Wn;6n|^QIJ`yyl)I<0gde)w!1SoiW zl5|U->I}sRr)8Jz-D?Qwis*cY#70^H8@kNMe*1(4KA?cH8i@3^Q4EW*qsyOBu&NX_ zPSa3NPe@#xhM^7!Tnw`oT7TYK(>^#B<7x)k-G77w3w_LZQ>_tZd;}|i#IORW9r^j^ ze_&95`A-Du-~S6EufO~RKGZ6!rcoR})i(sDHW|h7om09f=pKiP z;d9-RF`Ta3EA#BF5&yzGZAIUa7A#!kzYd5T(kjRfMsAg%4$itDiJnrFf><`(-iI^ zQgCR)z!w7uC%KT$abca}>bUS57hU*lP-cJmb2^pry3td&e7Z!_H+;Hes}CY~5u$JH zr@OM*`gO+0rM55dq1=@V(VpqO&MDF zHtp)I`NzG$gJ@(0>_d*AoDwgfa8q-Q)i>Jl7$e)9)ItG z{>(*)wT)quDJ|sW2s%tV-4ceWS8povUGRs$kKfjRNx&HSS0T0~y)H#lz{CGr>l&VF zyLI`VmGt4DG_BwT{O%TlVx!-DZzKib*Cm-8&TX3Mc41SkZk}k~*!FtYaz_U3=h#VJ zaO|BKWE+B}D~pM{|KsWT&P*wCI)5y6Jh=_5j0ScluIcER@qBmww3b2(c=j>mNxu_q zB$;)lK0t}E5z(PC|3PeRgmIuAGoXR?mlG~i~q8D^p)cF8k6 zQ-O)&^hv*-xYvET*L*iC>vbea9}o$qclk|L!X~Y{eZuMCr%$@FagCdbPQ@KP%btY# zdAk3;*TcqYAWl+%CK?YM+<(FZn^QM|d(TkrZ6*^4PG<<_FOGg(`gE_8MiBqJ-eA2O-+*NanvMQ zy~*>YYD%KTRL6UU9A~YlJVy2N6;Ry{E>L}EK?T26fsc8H?vNr2@zV7A>mxeSlUZoo*&;UB`ZZq{9o zo>YKG)atgXntlr~`IQIY2NY`iCpb5==YJvEQ5)CUkG=q7`ZFHjxPFP;-9Umz_klLM zgL|-YZ0O!4+Yqt7SqnK z69Ue;&Mwb6<9{wLwYdoaXR(U_AI3@U8JEZ9S@+7txbJF^pb;61K+nD)IcJ;!mlvH7 z7b8AxQ_{pG31SiCi8R5#;JUQD;1;zQ-I<+`^=u1w`D|l&5wyiHA>+cH#PY)4$70%c zHzDwxrEhu8l(-n1OeTb!PCCoeNvj86Bn=*Yb9cMEr+*tNDbMM`jsm{V}Jg!Pg)0tkq6Ds{c|?y^}`?Tsm65h%KKtlUyr>>F2^{hDUV3UxpKc=^_*+> z?eeoT$lSHxTCvVkVnmAly=S|`zdd~VXrJudBSs!>ll0GbkKFnH7nLZ^G=TbW)&1bB z=yz{r_f28&>%?Pi2RV6KQ6lr*>4W|||ICB`{eO;Z=|YQqWqR*v;(_{Te!sH6n=b9r z4mwqKroldY@m%o0weRt!i(JLucwYa^N`<^zb1s^@~mZ zj&2yIMQHWy8GQ^dR+rifyQf>G%nREi`G0@dugB$hgHgDoHoceSjUbm^iEr4pk>t7N zaw$zeCLO;T@~p;orQD&hOSv5;IjROrf70wEbC7_@&b zUMeCZ4|i&cS5IE3BA1`+^c1I{oc=U6I-D+;Za*zv>Jyir?6nQAWt`O}E1Q&nB&Y>5TsKJE$!}05@{<)J$xP{t= soDJLhIq-|tKE$8&mXlu4S>I2lp|Hikuh($ diff --git a/py-modindex.html b/py-modindex.html index 05bc2ece3..997fa8017 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -399,6 +424,11 @@

    Python Module Index

        datafusion.catalog
        + datafusion.col +
        @@ -419,6 +449,11 @@

    Python Module Index

        datafusion.functions
        + datafusion.html_formatter +
        @@ -464,6 +499,16 @@

    Python Module Index

        datafusion.udf
        + datafusion.unparser +
        + datafusion.user_defined +
    diff --git a/search.html b/search.html index 6461c9167..6602d8b2f 100644 --- a/search.html +++ b/search.html @@ -121,6 +121,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -279,6 +284,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -299,6 +309,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -351,6 +366,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/searchindex.js b/searchindex.js index 143eae672..bd9247ebd 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API Reference": [[15, null]], "Aggregate Functions": [[20, "aggregate-functions"], [27, "aggregate-functions"], [29, "aggregate-functions"]], "Aggregation": [[20, null]], "Alternative Approach": [[16, "alternative-approach"]], "Arrays": [[22, "arrays"]], "Arrow": [[33, null]], "Attributes": [[3, "attributes"], [5, "attributes"], [10, "attributes"], [14, "attributes"]], "Available Functions": [[29, "available-functions"]], "Avro": [[34, null]], "Basic Operations": [[21, null]], "Boolean": [[22, "boolean"]], "CSV": [[35, null]], "Casting": [[23, "casting"]], "Classes": [[0, "classes"], [1, "classes"], [2, "classes"], [3, "classes"], [5, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [11, "classes"], [12, "classes"], [13, "classes"], [14, "classes"]], "Column": [[22, "column"]], "Column Selections": [[26, null]], "Common Operations": [[24, null]], "Concepts": [[19, null]], "Conditional": [[23, "conditional"]], "Configuration": [[30, null]], "Create in-memory": [[31, "create-in-memory"]], "Custom Table Provider": [[31, "custom-table-provider"], [39, null]], "Data Sources": [[31, null]], "DataFrame": [[19, "dataframe"]], "DataFusion in Python": [[18, null]], "Delta Lake": [[31, "delta-lake"]], "Distinct": [[20, "distinct"]], "Example": [[18, "example"]], "Exporting from DataFusion": [[33, "exporting-from-datafusion"]], "Expressions": [[19, "expressions"], [22, null]], "Filter": [[20, "filter"]], "Full Join": [[25, "full-join"]], "Functions": [[4, "functions"], [5, "functions"], [9, "functions"], [22, "functions"], [23, null]], "Guidelines for Separating Python and Rust Code": [[17, "guidelines-for-separating-python-and-rust-code"]], "How to develop": [[17, "how-to-develop"]], "IO": [[36, null]], "Iceberg": [[31, "iceberg"]], "Implementation Details": [[16, "implementation-details"]], "Importing to DataFusion": [[33, "importing-to-datafusion"]], "Improving Build Speed": [[17, "improving-build-speed"]], "Inner Join": [[25, "inner-join"]], "Inspiration from Arrow": [[16, "inspiration-from-arrow"]], "Install": [[18, "install"]], "Installation": [[32, "installation"]], "Introduction": [[17, null], [32, null]], "JSON": [[37, null]], "Joins": [[25, null]], "Left Anti Join": [[25, "left-anti-join"]], "Left Join": [[25, "left-join"]], "Left Semi Join": [[25, "left-semi-join"]], "Literal": [[22, "literal"]], "Local file": [[31, "local-file"]], "Mathematical": [[23, "mathematical"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [6, "module-contents"], [8, "module-contents"], [9, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"]], "Null Treatment": [[20, "null-treatment"], [29, "null-treatment"]], "Object Store": [[31, "object-store"]], "Ordering": [[20, "ordering"], [29, "ordering"]], "Other": [[23, "other"]], "Other DataFrame Libraries": [[31, "other-dataframe-libraries"]], "Package Contents": [[5, "package-contents"], [7, "package-contents"]], "Parquet": [[38, null]], "Partitions": [[29, "partitions"]], "Python Extensions": [[16, null]], "Registering Views": [[28, null]], "Returns:": [[4, "returns"], [4, "id1"]], "Running & Installing pre-commit hooks": [[17, "running-installing-pre-commit-hooks"]], "SQL": [[40, null]], "Scalar Functions": [[27, "scalar-functions"]], "Session Context": [[19, "session-context"]], "Setting Parameters": [[20, "setting-parameters"], [29, "setting-parameters"]], "Status of Work": [[16, "status-of-work"]], "String": [[23, "string"]], "Structs": [[22, "structs"]], "Submodules": [[5, "submodules"], [7, "submodules"]], "Temporal": [[23, "temporal"]], "The FFI Approach": [[16, "the-ffi-approach"]], "The Primary Issue": [[16, "the-primary-issue"]], "UDWF options": [[27, "udwf-options"]], "Update Dependencies": [[17, "update-dependencies"]], "User-Defined Functions": [[27, null]], "Window Frame": [[29, "window-frame"]], "Window Functions": [[27, "window-functions"], [29, null]], "datafusion": [[5, null]], "datafusion.catalog": [[0, null]], "datafusion.context": [[1, null]], "datafusion.dataframe": [[2, null]], "datafusion.expr": [[3, null]], "datafusion.functions": [[4, null]], "datafusion.input": [[7, null]], "datafusion.input.base": [[6, null]], "datafusion.input.location": [[8, null]], "datafusion.io": [[9, null]], "datafusion.object_store": [[10, null]], "datafusion.plan": [[11, null]], "datafusion.record_batch": [[12, null]], "datafusion.substrait": [[13, null]], "datafusion.udf": [[14, null]]}, "docnames": ["autoapi/datafusion/catalog/index", "autoapi/datafusion/context/index", "autoapi/datafusion/dataframe/index", "autoapi/datafusion/expr/index", "autoapi/datafusion/functions/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/udf/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/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/expr/index.rst", "autoapi/datafusion/functions/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/udf/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/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)": [[5, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[12, "datafusion.record_batch.RecordBatchStream.__aiter__", false]], "__aiter__() (datafusion.recordbatchstream method)": [[5, "datafusion.RecordBatchStream.__aiter__", false]], "__and__() (datafusion.expr method)": [[5, "datafusion.Expr.__and__", false]], "__and__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__and__", false]], "__anext__() (datafusion.record_batch.recordbatchstream method)": [[12, "datafusion.record_batch.RecordBatchStream.__anext__", false]], "__anext__() (datafusion.recordbatchstream method)": [[5, "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)": [[5, "datafusion.AggregateUDF.__call__", false]], "__call__() (datafusion.scalarudf method)": [[5, "datafusion.ScalarUDF.__call__", false]], "__call__() (datafusion.udf.aggregateudf method)": [[14, "datafusion.udf.AggregateUDF.__call__", false]], "__call__() (datafusion.udf.scalarudf method)": [[14, "datafusion.udf.ScalarUDF.__call__", false]], "__call__() (datafusion.udf.windowudf method)": [[14, "datafusion.udf.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[5, "datafusion.WindowUDF.__call__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__eq__() (datafusion.expr method)": [[5, "datafusion.Expr.__eq__", false]], "__eq__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__eq__", false]], "__ge__() (datafusion.expr method)": [[5, "datafusion.Expr.__ge__", false]], "__ge__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__ge__", false]], "__getitem__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__getitem__", false]], "__getitem__() (datafusion.expr method)": [[5, "datafusion.Expr.__getitem__", false]], "__getitem__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__getitem__", false]], "__gt__() (datafusion.expr method)": [[5, "datafusion.Expr.__gt__", false]], "__gt__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__gt__", false]], "__invert__() (datafusion.expr method)": [[5, "datafusion.Expr.__invert__", false]], "__invert__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__invert__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[12, "datafusion.record_batch.RecordBatchStream.__iter__", false]], "__iter__() (datafusion.recordbatchstream method)": [[5, "datafusion.RecordBatchStream.__iter__", false]], "__le__() (datafusion.expr method)": [[5, "datafusion.Expr.__le__", false]], "__le__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__le__", false]], "__lt__() (datafusion.expr method)": [[5, "datafusion.Expr.__lt__", false]], "__lt__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__lt__", false]], "__mod__() (datafusion.expr method)": [[5, "datafusion.Expr.__mod__", false]], "__mod__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__mod__", false]], "__mul__() (datafusion.expr method)": [[5, "datafusion.Expr.__mul__", false]], "__mul__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__mul__", false]], "__ne__() (datafusion.expr method)": [[5, "datafusion.Expr.__ne__", false]], "__ne__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__ne__", false]], "__next__() (datafusion.record_batch.recordbatchstream method)": [[12, "datafusion.record_batch.RecordBatchStream.__next__", false]], "__next__() (datafusion.recordbatchstream method)": [[5, "datafusion.RecordBatchStream.__next__", false]], "__or__() (datafusion.expr method)": [[5, "datafusion.Expr.__or__", false]], "__or__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__or__", false]], "__radd__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__radd__", false]], "__radd__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__radd__", false]], "__rand__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__rand__", false]], "__rand__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__rand__", false]], "__repr__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__repr__", false]], "__repr__() (datafusion.executionplan method)": [[5, "datafusion.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.expr method)": [[5, "datafusion.Expr.__repr__", false]], "__repr__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__repr__", false]], "__repr__() (datafusion.expr.sortexpr method)": [[3, "datafusion.expr.SortExpr.__repr__", false]], "__repr__() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.__repr__", false]], "__repr__() (datafusion.plan.executionplan method)": [[11, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.__repr__", false]], "__richcmp__() (datafusion.expr method)": [[5, "datafusion.Expr.__richcmp__", false]], "__richcmp__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__richcmp__", false]], "__rmod__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__rmod__", false]], "__rmod__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__rmod__", false]], "__rmul__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__rmul__", false]], "__rmul__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__rmul__", false]], "__ror__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__ror__", false]], "__ror__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__ror__", false]], "__rsub__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__rsub__", false]], "__rsub__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__rsub__", false]], "__rtruediv__ (datafusion.expr attribute)": [[5, "datafusion.Expr.__rtruediv__", false]], "__rtruediv__ (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.__rtruediv__", false]], "__str__() (datafusion.udf.volatility method)": [[14, "datafusion.udf.Volatility.__str__", false]], "__sub__() (datafusion.expr method)": [[5, "datafusion.Expr.__sub__", false]], "__sub__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__sub__", false]], "__truediv__() (datafusion.expr method)": [[5, "datafusion.Expr.__truediv__", false]], "__truediv__() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.__truediv__", false]], "_create_window_udf() (datafusion.udf.windowudf static method)": [[14, "datafusion.udf.WindowUDF._create_window_udf", false]], "_create_window_udf() (datafusion.windowudf static method)": [[5, "datafusion.WindowUDF._create_window_udf", false]], "_create_window_udf_decorator() (datafusion.udf.windowudf static method)": [[14, "datafusion.udf.WindowUDF._create_window_udf_decorator", false]], "_create_window_udf_decorator() (datafusion.windowudf static method)": [[5, "datafusion.WindowUDF._create_window_udf_decorator", false]], "_get_default_name() (datafusion.udf.windowudf static method)": [[14, "datafusion.udf.WindowUDF._get_default_name", false]], "_get_default_name() (datafusion.windowudf static method)": [[5, "datafusion.WindowUDF._get_default_name", false]], "_normalize_input_types() (datafusion.udf.windowudf static method)": [[14, "datafusion.udf.WindowUDF._normalize_input_types", false]], "_normalize_input_types() (datafusion.windowudf static method)": [[5, "datafusion.WindowUDF._normalize_input_types", false]], "_null_treatment (datafusion.expr.window attribute)": [[3, "datafusion.expr.Window._null_treatment", false]], "_order_by (datafusion.expr.window attribute)": [[3, "datafusion.expr.Window._order_by", false]], "_partition_by (datafusion.expr.window attribute)": [[3, "datafusion.expr.Window._partition_by", false]], "_r (in module datafusion.udf)": [[14, "datafusion.udf._R", false]], "_raw_plan (datafusion.executionplan attribute)": [[5, "datafusion.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.logicalplan attribute)": [[5, "datafusion.LogicalPlan._raw_plan", false]], "_raw_plan (datafusion.plan.executionplan attribute)": [[11, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[11, "datafusion.plan.LogicalPlan._raw_plan", false]], "_repr_html_() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame._repr_html_", false]], "_to_pyarrow_types (datafusion.expr attribute)": [[5, "datafusion.Expr._to_pyarrow_types", false]], "_to_pyarrow_types (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr._to_pyarrow_types", false]], "_udaf (datafusion.aggregateudf attribute)": [[5, "datafusion.AggregateUDF._udaf", false]], "_udaf (datafusion.udf.aggregateudf attribute)": [[14, "datafusion.udf.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[5, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.udf.scalarudf attribute)": [[14, "datafusion.udf.ScalarUDF._udf", false]], "_udwf (datafusion.udf.windowudf attribute)": [[14, "datafusion.udf.WindowUDF._udwf", false]], "_udwf (datafusion.windowudf attribute)": [[5, "datafusion.WindowUDF._udwf", false]], "_window_frame (datafusion.expr.window attribute)": [[3, "datafusion.expr.Window._window_frame", false]], "abs() (in module datafusion.functions)": [[4, "datafusion.functions.abs", false]], "accumulator (class in datafusion)": [[5, "datafusion.Accumulator", false]], "accumulator (class in datafusion.udf)": [[14, "datafusion.udf.Accumulator", false]], "acos() (in module datafusion.functions)": [[4, "datafusion.functions.acos", false]], "acosh() (in module datafusion.functions)": [[4, "datafusion.functions.acosh", false]], "aggregate (in module datafusion.expr)": [[3, "datafusion.expr.Aggregate", false]], "aggregate() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.aggregate", false]], "aggregatefunction (in module datafusion.expr)": [[3, "datafusion.expr.AggregateFunction", false]], "aggregateudf (class in datafusion)": [[5, "datafusion.AggregateUDF", false]], "aggregateudf (class in datafusion.udf)": [[14, "datafusion.udf.AggregateUDF", false]], "alias (in module datafusion.expr)": [[3, "datafusion.expr.Alias", false]], "alias() (datafusion.expr method)": [[5, "datafusion.Expr.alias", false]], "alias() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.alias", false]], "alias() (in module datafusion.functions)": [[4, "datafusion.functions.alias", false]], "amazons3 (in module datafusion.object_store)": [[10, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[3, "datafusion.expr.Analyze", false]], "approx_distinct() (in module datafusion.functions)": [[4, "datafusion.functions.approx_distinct", false]], "approx_median() (in module datafusion.functions)": [[4, "datafusion.functions.approx_median", false]], "approx_percentile_cont() (in module datafusion.functions)": [[4, "datafusion.functions.approx_percentile_cont", false]], "approx_percentile_cont_with_weight() (in module datafusion.functions)": [[4, "datafusion.functions.approx_percentile_cont_with_weight", false]], "array() (in module datafusion.functions)": [[4, "datafusion.functions.array", false]], "array_agg() (in module datafusion.functions)": [[4, "datafusion.functions.array_agg", false]], "array_append() (in module datafusion.functions)": [[4, "datafusion.functions.array_append", false]], "array_cat() (in module datafusion.functions)": [[4, "datafusion.functions.array_cat", false]], "array_concat() (in module datafusion.functions)": [[4, "datafusion.functions.array_concat", false]], "array_dims() (in module datafusion.functions)": [[4, "datafusion.functions.array_dims", false]], "array_distinct() (in module datafusion.functions)": [[4, "datafusion.functions.array_distinct", false]], "array_element() (in module datafusion.functions)": [[4, "datafusion.functions.array_element", false]], "array_empty() (in module datafusion.functions)": [[4, "datafusion.functions.array_empty", false]], "array_except() (in module datafusion.functions)": [[4, "datafusion.functions.array_except", false]], "array_extract() (in module datafusion.functions)": [[4, "datafusion.functions.array_extract", false]], "array_has() (in module datafusion.functions)": [[4, "datafusion.functions.array_has", false]], "array_has_all() (in module datafusion.functions)": [[4, "datafusion.functions.array_has_all", false]], "array_has_any() (in module datafusion.functions)": [[4, "datafusion.functions.array_has_any", false]], "array_indexof() (in module datafusion.functions)": [[4, "datafusion.functions.array_indexof", false]], "array_intersect() (in module datafusion.functions)": [[4, "datafusion.functions.array_intersect", false]], "array_join() (in module datafusion.functions)": [[4, "datafusion.functions.array_join", false]], "array_length() (in module datafusion.functions)": [[4, "datafusion.functions.array_length", false]], "array_ndims() (in module datafusion.functions)": [[4, "datafusion.functions.array_ndims", false]], "array_pop_back() (in module datafusion.functions)": [[4, "datafusion.functions.array_pop_back", false]], "array_pop_front() (in module datafusion.functions)": [[4, "datafusion.functions.array_pop_front", false]], "array_position() (in module datafusion.functions)": [[4, "datafusion.functions.array_position", false]], "array_positions() (in module datafusion.functions)": [[4, "datafusion.functions.array_positions", false]], "array_prepend() (in module datafusion.functions)": [[4, "datafusion.functions.array_prepend", false]], "array_push_back() (in module datafusion.functions)": [[4, "datafusion.functions.array_push_back", false]], "array_push_front() (in module datafusion.functions)": [[4, "datafusion.functions.array_push_front", false]], "array_remove() (in module datafusion.functions)": [[4, "datafusion.functions.array_remove", false]], "array_remove_all() (in module datafusion.functions)": [[4, "datafusion.functions.array_remove_all", false]], "array_remove_n() (in module datafusion.functions)": [[4, "datafusion.functions.array_remove_n", false]], "array_repeat() (in module datafusion.functions)": [[4, "datafusion.functions.array_repeat", false]], "array_replace() (in module datafusion.functions)": [[4, "datafusion.functions.array_replace", false]], "array_replace_all() (in module datafusion.functions)": [[4, "datafusion.functions.array_replace_all", false]], "array_replace_n() (in module datafusion.functions)": [[4, "datafusion.functions.array_replace_n", false]], "array_resize() (in module datafusion.functions)": [[4, "datafusion.functions.array_resize", false]], "array_slice() (in module datafusion.functions)": [[4, "datafusion.functions.array_slice", false]], "array_sort() (in module datafusion.functions)": [[4, "datafusion.functions.array_sort", false]], "array_to_string() (in module datafusion.functions)": [[4, "datafusion.functions.array_to_string", false]], "array_union() (in module datafusion.functions)": [[4, "datafusion.functions.array_union", false]], "arrow_cast() (in module datafusion.functions)": [[4, "datafusion.functions.arrow_cast", false]], "arrow_typeof() (in module datafusion.functions)": [[4, "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)": [[3, "datafusion.expr.SortExpr.ascending", false]], "ascii() (in module datafusion.functions)": [[4, "datafusion.functions.ascii", false]], "asin() (in module datafusion.functions)": [[4, "datafusion.functions.asin", false]], "asinh() (in module datafusion.functions)": [[4, "datafusion.functions.asinh", false]], "atan() (in module datafusion.functions)": [[4, "datafusion.functions.atan", false]], "atan2() (in module datafusion.functions)": [[4, "datafusion.functions.atan2", false]], "atanh() (in module datafusion.functions)": [[4, "datafusion.functions.atanh", false]], "avg() (in module datafusion.functions)": [[4, "datafusion.functions.avg", false]], "baseinputsource (class in datafusion.input.base)": [[6, "datafusion.input.base.BaseInputSource", false]], "between (in module datafusion.expr)": [[3, "datafusion.expr.Between", false]], "between() (datafusion.expr method)": [[5, "datafusion.Expr.between", false]], "between() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.between", false]], "binaryexpr (in module datafusion.expr)": [[3, "datafusion.expr.BinaryExpr", false]], "bit_and() (in module datafusion.functions)": [[4, "datafusion.functions.bit_and", false]], "bit_length() (in module datafusion.functions)": [[4, "datafusion.functions.bit_length", false]], "bit_or() (in module datafusion.functions)": [[4, "datafusion.functions.bit_or", false]], "bit_xor() (in module datafusion.functions)": [[4, "datafusion.functions.bit_xor", false]], "bool_and() (in module datafusion.functions)": [[4, "datafusion.functions.bool_and", false]], "bool_or() (in module datafusion.functions)": [[4, "datafusion.functions.bool_or", false]], "brotli (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.BROTLI", false]], "btrim() (in module datafusion.functions)": [[4, "datafusion.functions.btrim", false]], "build_table() (datafusion.input.base.baseinputsource method)": [[6, "datafusion.input.base.BaseInputSource.build_table", false]], "build_table() (datafusion.input.location.locationinputplugin method)": [[8, "datafusion.input.location.LocationInputPlugin.build_table", false]], "build_table() (datafusion.input.locationinputplugin method)": [[7, "datafusion.input.LocationInputPlugin.build_table", false]], "cache() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cache", false]], "canonical_name() (datafusion.expr method)": [[5, "datafusion.Expr.canonical_name", false]], "canonical_name() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.canonical_name", false]], "cardinality() (in module datafusion.functions)": [[4, "datafusion.functions.cardinality", false]], "case (in module datafusion.expr)": [[3, "datafusion.expr.Case", false]], "case() (in module datafusion.functions)": [[4, "datafusion.functions.case", false]], "case_builder (datafusion.expr.casebuilder attribute)": [[3, "datafusion.expr.CaseBuilder.case_builder", false]], "casebuilder (class in datafusion.expr)": [[3, "datafusion.expr.CaseBuilder", false]], "cast (in module datafusion.expr)": [[3, "datafusion.expr.Cast", false]], "cast() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.cast", false]], "cast() (datafusion.expr method)": [[5, "datafusion.Expr.cast", false]], "cast() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.cast", false]], "catalog (class in datafusion)": [[5, "datafusion.Catalog", false]], "catalog (class in datafusion.catalog)": [[0, "datafusion.catalog.Catalog", false]], "catalog (datafusion.catalog attribute)": [[5, "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]], "cbrt() (in module datafusion.functions)": [[4, "datafusion.functions.cbrt", false]], "ceil() (in module datafusion.functions)": [[4, "datafusion.functions.ceil", false]], "char_length() (in module datafusion.functions)": [[4, "datafusion.functions.char_length", false]], "character_length() (in module datafusion.functions)": [[4, "datafusion.functions.character_length", false]], "children() (datafusion.executionplan method)": [[5, "datafusion.ExecutionPlan.children", false]], "children() (datafusion.plan.executionplan method)": [[11, "datafusion.plan.ExecutionPlan.children", false]], "chr() (in module datafusion.functions)": [[4, "datafusion.functions.chr", false]], "coalesce() (in module datafusion.functions)": [[4, "datafusion.functions.coalesce", false]], "col() (in module datafusion)": [[5, "datafusion.col", false]], "col() (in module datafusion.functions)": [[4, "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.expr)": [[3, "datafusion.expr.Column", false]], "column() (datafusion.expr static method)": [[5, "datafusion.Expr.column", false]], "column() (datafusion.expr.expr static method)": [[3, "datafusion.expr.Expr.column", false]], "column() (in module datafusion)": [[5, "datafusion.column", false]], "column_name() (datafusion.expr method)": [[5, "datafusion.Expr.column_name", false]], "column_name() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.column_name", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "concat() (in module datafusion.functions)": [[4, "datafusion.functions.concat", false]], "concat_ws() (in module datafusion.functions)": [[4, "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)": [[5, "datafusion.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.sessionconfig attribute)": [[5, "datafusion.SessionConfig.config_internal", false]], "consumer (class in datafusion.substrait)": [[13, "datafusion.substrait.Consumer", false]], "corr() (in module datafusion.functions)": [[4, "datafusion.functions.corr", false]], "cos() (in module datafusion.functions)": [[4, "datafusion.functions.cos", false]], "cosh() (in module datafusion.functions)": [[4, "datafusion.functions.cosh", false]], "cot() (in module datafusion.functions)": [[4, "datafusion.functions.cot", false]], "count() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.count", false]], "count() (in module datafusion.functions)": [[4, "datafusion.functions.count", false]], "count_star() (in module datafusion.functions)": [[4, "datafusion.functions.count_star", false]], "covar() (in module datafusion.functions)": [[4, "datafusion.functions.covar", false]], "covar_pop() (in module datafusion.functions)": [[4, "datafusion.functions.covar_pop", false]], "covar_samp() (in module datafusion.functions)": [[4, "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]], "creatememorytable (in module datafusion.expr)": [[3, "datafusion.expr.CreateMemoryTable", false]], "createview (in module datafusion.expr)": [[3, "datafusion.expr.CreateView", false]], "ctx (datafusion.context.sessioncontext attribute)": [[1, "datafusion.context.SessionContext.ctx", false]], "cume_dist() (in module datafusion.functions)": [[4, "datafusion.functions.cume_dist", false]], "current_date() (in module datafusion.functions)": [[4, "datafusion.functions.current_date", false]], "current_time() (in module datafusion.functions)": [[4, "datafusion.functions.current_time", false]], "database (class in datafusion)": [[5, "datafusion.Database", false]], "database (class in datafusion.catalog)": [[0, "datafusion.catalog.Database", false]], "database() (datafusion.catalog method)": [[5, "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]], "datafusion": [[5, "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.expr": [[3, "module-datafusion.expr", false]], "datafusion.functions": [[4, "module-datafusion.functions", false]], "datafusion.input": [[7, "module-datafusion.input", false]], "datafusion.input.base": [[6, "module-datafusion.input.base", false]], "datafusion.input.location": [[8, "module-datafusion.input.location", false]], "datafusion.io": [[9, "module-datafusion.io", false]], "datafusion.object_store": [[10, "module-datafusion.object_store", false]], "datafusion.plan": [[11, "module-datafusion.plan", false]], "datafusion.record_batch": [[12, "module-datafusion.record_batch", false]], "datafusion.substrait": [[13, "module-datafusion.substrait", false]], "datafusion.udf": [[14, "module-datafusion.udf", false]], "date_bin() (in module datafusion.functions)": [[4, "datafusion.functions.date_bin", false]], "date_part() (in module datafusion.functions)": [[4, "datafusion.functions.date_part", false]], "date_trunc() (in module datafusion.functions)": [[4, "datafusion.functions.date_trunc", false]], "datepart() (in module datafusion.functions)": [[4, "datafusion.functions.datepart", false]], "datetrunc() (in module datafusion.functions)": [[4, "datafusion.functions.datetrunc", false]], "db (datafusion.catalog.database attribute)": [[0, "datafusion.catalog.Database.db", false]], "db (datafusion.database attribute)": [[5, "datafusion.Database.db", false]], "decode() (in module datafusion.functions)": [[4, "datafusion.functions.decode", false]], "degrees() (in module datafusion.functions)": [[4, "datafusion.functions.degrees", false]], "dense_rank() (in module datafusion.functions)": [[4, "datafusion.functions.dense_rank", 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]], "deserialize() (datafusion.substrait.serde static method)": [[13, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[13, "datafusion.substrait.Serde.deserialize_bytes", false]], "df (datafusion.dataframe.dataframe attribute)": [[2, "datafusion.dataframe.DataFrame.df", false]], "dfschema (in module datafusion)": [[5, "datafusion.DFSchema", false]], "digest() (in module datafusion.functions)": [[4, "datafusion.functions.digest", false]], "display() (datafusion.executionplan method)": [[5, "datafusion.ExecutionPlan.display", false]], "display() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.display", false]], "display() (datafusion.plan.executionplan method)": [[11, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.display_graphviz", false]], "display_indent() (datafusion.executionplan method)": [[5, "datafusion.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.display_indent", false]], "display_indent() (datafusion.plan.executionplan method)": [[11, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.display_indent", false]], "display_indent_schema() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.display_indent_schema", false]], "display_indent_schema() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.display_indent_schema", false]], "display_name() (datafusion.expr method)": [[5, "datafusion.Expr.display_name", false]], "display_name() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.display_name", false]], "distinct (in module datafusion.expr)": [[3, "datafusion.expr.Distinct", false]], "distinct() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.distinct", false]], "distinct() (datafusion.expr method)": [[5, "datafusion.Expr.distinct", false]], "distinct() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.distinct", false]], "drop() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.drop", false]], "droptable (in module datafusion.expr)": [[3, "datafusion.expr.DropTable", false]], "empty() (in module datafusion.functions)": [[4, "datafusion.functions.empty", false]], "empty_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.empty_table", false]], "emptyrelation (in module datafusion.expr)": [[3, "datafusion.expr.EmptyRelation", false]], "enable_url_table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.enable_url_table", false]], "encode() (datafusion.substrait.plan method)": [[13, "datafusion.substrait.Plan.encode", false]], "encode() (in module datafusion.functions)": [[4, "datafusion.functions.encode", false]], "end() (datafusion.expr.casebuilder method)": [[3, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[4, "datafusion.functions.ends_with", false]], "evaluate() (datafusion.accumulator method)": [[5, "datafusion.Accumulator.evaluate", false]], "evaluate() (datafusion.udf.accumulator method)": [[14, "datafusion.udf.Accumulator.evaluate", false]], "evaluate() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.evaluate_all_with_rank", false]], "except_all() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.except_all", 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)": [[5, "datafusion.ExecutionPlan", false]], "executionplan (class in datafusion.plan)": [[11, "datafusion.plan.ExecutionPlan", false]], "exists (in module datafusion.expr)": [[3, "datafusion.expr.Exists", false]], "exp() (in module datafusion.functions)": [[4, "datafusion.functions.exp", false]], "explain (in module datafusion.expr)": [[3, "datafusion.expr.Explain", false]], "explain() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.explain", false]], "expr (class in datafusion)": [[5, "datafusion.Expr", false]], "expr (class in datafusion.expr)": [[3, "datafusion.expr.Expr", false]], "expr (datafusion.expr attribute)": [[5, "datafusion.Expr.expr", false]], "expr (datafusion.expr.expr attribute)": [[3, "datafusion.expr.Expr.expr", false]], "expr() (datafusion.expr.sortexpr method)": [[3, "datafusion.expr.SortExpr.expr", false]], "extension (in module datafusion.expr)": [[3, "datafusion.expr.Extension", false]], "extract() (in module datafusion.functions)": [[4, "datafusion.functions.extract", false]], "factorial() (in module datafusion.functions)": [[4, "datafusion.functions.factorial", false]], "fill_nan() (datafusion.expr method)": [[5, "datafusion.Expr.fill_nan", false]], "fill_nan() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.fill_nan", false]], "fill_null() (datafusion.expr method)": [[5, "datafusion.Expr.fill_null", false]], "fill_null() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.fill_null", false]], "filter (in module datafusion.expr)": [[3, "datafusion.expr.Filter", false]], "filter() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.filter", false]], "filter() (datafusion.expr method)": [[5, "datafusion.Expr.filter", false]], "filter() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.filter", false]], "find_in_set() (in module datafusion.functions)": [[4, "datafusion.functions.find_in_set", false]], "first_value() (in module datafusion.functions)": [[4, "datafusion.functions.first_value", false]], "flatten() (in module datafusion.functions)": [[4, "datafusion.functions.flatten", false]], "floor() (in module datafusion.functions)": [[4, "datafusion.functions.floor", false]], "frame_bound (datafusion.expr.windowframebound attribute)": [[3, "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_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)": [[5, "datafusion.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.logicalplan static method)": [[5, "datafusion.LogicalPlan.from_proto", false]], "from_proto() (datafusion.plan.executionplan static method)": [[11, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[11, "datafusion.plan.LogicalPlan.from_proto", 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)": [[13, "datafusion.substrait.Consumer.from_substrait_plan", false]], "from_unixtime() (in module datafusion.functions)": [[4, "datafusion.functions.from_unixtime", false]], "gcd() (in module datafusion.functions)": [[4, "datafusion.functions.gcd", false]], "get_default_level() (datafusion.dataframe.compression method)": [[2, "datafusion.dataframe.Compression.get_default_level", false]], "get_frame_units() (datafusion.expr.windowframe method)": [[3, "datafusion.expr.WindowFrame.get_frame_units", false]], "get_frame_units() (datafusion.windowframe method)": [[5, "datafusion.WindowFrame.get_frame_units", false]], "get_lower_bound() (datafusion.expr.windowframe method)": [[3, "datafusion.expr.WindowFrame.get_lower_bound", false]], "get_lower_bound() (datafusion.windowframe method)": [[5, "datafusion.WindowFrame.get_lower_bound", false]], "get_offset() (datafusion.expr.windowframebound method)": [[3, "datafusion.expr.WindowFrameBound.get_offset", false]], "get_range() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.get_range", false]], "get_upper_bound() (datafusion.expr.windowframe method)": [[3, "datafusion.expr.WindowFrame.get_upper_bound", false]], "get_upper_bound() (datafusion.windowframe method)": [[5, "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)": [[10, "datafusion.object_store.GoogleCloud", false]], "groupingset (in module datafusion.expr)": [[3, "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)": [[10, "datafusion.object_store.Http", false]], "ilike (in module datafusion.expr)": [[3, "datafusion.expr.ILike", false]], "immutable (datafusion.udf.volatility attribute)": [[14, "datafusion.udf.Volatility.Immutable", false]], "in_list() (in module datafusion.functions)": [[4, "datafusion.functions.in_list", false]], "include_rank() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.include_rank", false]], "initcap() (in module datafusion.functions)": [[4, "datafusion.functions.initcap", false]], "inlist (in module datafusion.expr)": [[3, "datafusion.expr.InList", false]], "inputs() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.inputs", false]], "inputs() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.inputs", false]], "insubquery (in module datafusion.expr)": [[3, "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.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.is_causal", false]], "is_correct_input() (datafusion.input.base.baseinputsource method)": [[6, "datafusion.input.base.BaseInputSource.is_correct_input", false]], "is_correct_input() (datafusion.input.location.locationinputplugin method)": [[8, "datafusion.input.location.LocationInputPlugin.is_correct_input", false]], "is_correct_input() (datafusion.input.locationinputplugin method)": [[7, "datafusion.input.LocationInputPlugin.is_correct_input", false]], "is_current_row() (datafusion.expr.windowframebound method)": [[3, "datafusion.expr.WindowFrameBound.is_current_row", false]], "is_following() (datafusion.expr.windowframebound method)": [[3, "datafusion.expr.WindowFrameBound.is_following", false]], "is_not_null() (datafusion.expr method)": [[5, "datafusion.Expr.is_not_null", false]], "is_not_null() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.is_not_null", false]], "is_null() (datafusion.expr method)": [[5, "datafusion.Expr.is_null", false]], "is_null() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.is_null", false]], "is_preceding() (datafusion.expr.windowframebound method)": [[3, "datafusion.expr.WindowFrameBound.is_preceding", false]], "is_unbounded() (datafusion.expr.windowframebound method)": [[3, "datafusion.expr.WindowFrameBound.is_unbounded", false]], "isfalse (in module datafusion.expr)": [[3, "datafusion.expr.IsFalse", false]], "isnan() (in module datafusion.functions)": [[4, "datafusion.functions.isnan", false]], "isnotfalse (in module datafusion.expr)": [[3, "datafusion.expr.IsNotFalse", false]], "isnotnull (in module datafusion.expr)": [[3, "datafusion.expr.IsNotNull", false]], "isnottrue (in module datafusion.expr)": [[3, "datafusion.expr.IsNotTrue", false]], "isnotunknown (in module datafusion.expr)": [[3, "datafusion.expr.IsNotUnknown", false]], "isnull (in module datafusion.expr)": [[3, "datafusion.expr.IsNull", false]], "istrue (in module datafusion.expr)": [[3, "datafusion.expr.IsTrue", false]], "isunknown (in module datafusion.expr)": [[3, "datafusion.expr.IsUnknown", false]], "iszero() (in module datafusion.functions)": [[4, "datafusion.functions.iszero", false]], "join (in module datafusion.expr)": [[3, "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)": [[3, "datafusion.expr.JoinConstraint", false]], "jointype (in module datafusion.expr)": [[3, "datafusion.expr.JoinType", false]], "kind (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.kind", false]], "kind (datafusion.table property)": [[5, "datafusion.Table.kind", false]], "lag() (in module datafusion.functions)": [[4, "datafusion.functions.lag", false]], "last_value() (in module datafusion.functions)": [[4, "datafusion.functions.last_value", false]], "lcm() (in module datafusion.functions)": [[4, "datafusion.functions.lcm", false]], "lead() (in module datafusion.functions)": [[4, "datafusion.functions.lead", false]], "left() (in module datafusion.functions)": [[4, "datafusion.functions.left", false]], "length() (in module datafusion.functions)": [[4, "datafusion.functions.length", false]], "levenshtein() (in module datafusion.functions)": [[4, "datafusion.functions.levenshtein", false]], "like (in module datafusion.expr)": [[3, "datafusion.expr.Like", false]], "limit (in module datafusion.expr)": [[3, "datafusion.expr.Limit", false]], "limit() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.limit", false]], "list_append() (in module datafusion.functions)": [[4, "datafusion.functions.list_append", false]], "list_cat() (in module datafusion.functions)": [[4, "datafusion.functions.list_cat", false]], "list_concat() (in module datafusion.functions)": [[4, "datafusion.functions.list_concat", false]], "list_dims() (in module datafusion.functions)": [[4, "datafusion.functions.list_dims", false]], "list_distinct() (in module datafusion.functions)": [[4, "datafusion.functions.list_distinct", false]], "list_element() (in module datafusion.functions)": [[4, "datafusion.functions.list_element", false]], "list_except() (in module datafusion.functions)": [[4, "datafusion.functions.list_except", false]], "list_extract() (in module datafusion.functions)": [[4, "datafusion.functions.list_extract", false]], "list_indexof() (in module datafusion.functions)": [[4, "datafusion.functions.list_indexof", false]], "list_intersect() (in module datafusion.functions)": [[4, "datafusion.functions.list_intersect", false]], "list_join() (in module datafusion.functions)": [[4, "datafusion.functions.list_join", false]], "list_length() (in module datafusion.functions)": [[4, "datafusion.functions.list_length", false]], "list_ndims() (in module datafusion.functions)": [[4, "datafusion.functions.list_ndims", false]], "list_position() (in module datafusion.functions)": [[4, "datafusion.functions.list_position", false]], "list_positions() (in module datafusion.functions)": [[4, "datafusion.functions.list_positions", false]], "list_prepend() (in module datafusion.functions)": [[4, "datafusion.functions.list_prepend", false]], "list_push_back() (in module datafusion.functions)": [[4, "datafusion.functions.list_push_back", false]], "list_push_front() (in module datafusion.functions)": [[4, "datafusion.functions.list_push_front", false]], "list_remove() (in module datafusion.functions)": [[4, "datafusion.functions.list_remove", false]], "list_remove_all() (in module datafusion.functions)": [[4, "datafusion.functions.list_remove_all", false]], "list_remove_n() (in module datafusion.functions)": [[4, "datafusion.functions.list_remove_n", false]], "list_repeat() (in module datafusion.functions)": [[4, "datafusion.functions.list_repeat", false]], "list_replace() (in module datafusion.functions)": [[4, "datafusion.functions.list_replace", false]], "list_replace_all() (in module datafusion.functions)": [[4, "datafusion.functions.list_replace_all", false]], "list_replace_n() (in module datafusion.functions)": [[4, "datafusion.functions.list_replace_n", false]], "list_resize() (in module datafusion.functions)": [[4, "datafusion.functions.list_resize", false]], "list_slice() (in module datafusion.functions)": [[4, "datafusion.functions.list_slice", false]], "list_sort() (in module datafusion.functions)": [[4, "datafusion.functions.list_sort", false]], "list_to_string() (in module datafusion.functions)": [[4, "datafusion.functions.list_to_string", false]], "list_union() (in module datafusion.functions)": [[4, "datafusion.functions.list_union", false]], "lit() (in module datafusion)": [[5, "datafusion.lit", false]], "literal (in module datafusion.expr)": [[3, "datafusion.expr.Literal", false]], "literal() (datafusion.expr static method)": [[5, "datafusion.Expr.literal", false]], "literal() (datafusion.expr.expr static method)": [[3, "datafusion.expr.Expr.literal", false]], "literal() (in module datafusion)": [[5, "datafusion.literal", false]], "ln() (in module datafusion.functions)": [[4, "datafusion.functions.ln", false]], "localfilesystem (in module datafusion.object_store)": [[10, "datafusion.object_store.LocalFileSystem", false]], "locationinputplugin (class in datafusion.input)": [[7, "datafusion.input.LocationInputPlugin", false]], "locationinputplugin (class in datafusion.input.location)": [[8, "datafusion.input.location.LocationInputPlugin", false]], "log() (in module datafusion.functions)": [[4, "datafusion.functions.log", false]], "log10() (in module datafusion.functions)": [[4, "datafusion.functions.log10", false]], "log2() (in module datafusion.functions)": [[4, "datafusion.functions.log2", false]], "logical_plan() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.logical_plan", false]], "logicalplan (class in datafusion)": [[5, "datafusion.LogicalPlan", false]], "logicalplan (class in datafusion.plan)": [[11, "datafusion.plan.LogicalPlan", false]], "lower() (in module datafusion.functions)": [[4, "datafusion.functions.lower", false]], "lpad() (in module datafusion.functions)": [[4, "datafusion.functions.lpad", false]], "ltrim() (in module datafusion.functions)": [[4, "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)": [[4, "datafusion.functions.make_array", false]], "make_date() (in module datafusion.functions)": [[4, "datafusion.functions.make_date", false]], "make_list() (in module datafusion.functions)": [[4, "datafusion.functions.make_list", false]], "max() (in module datafusion.functions)": [[4, "datafusion.functions.max", false]], "md5() (in module datafusion.functions)": [[4, "datafusion.functions.md5", false]], "mean() (in module datafusion.functions)": [[4, "datafusion.functions.mean", false]], "median() (in module datafusion.functions)": [[4, "datafusion.functions.median", false]], "memoize() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.memoize", false]], "merge() (datafusion.accumulator method)": [[5, "datafusion.Accumulator.merge", false]], "merge() (datafusion.udf.accumulator method)": [[14, "datafusion.udf.Accumulator.merge", false]], "microsoftazure (in module datafusion.object_store)": [[10, "datafusion.object_store.MicrosoftAzure", false]], "min() (in module datafusion.functions)": [[4, "datafusion.functions.min", false]], "module": [[0, "module-datafusion.catalog", false], [1, "module-datafusion.context", false], [2, "module-datafusion.dataframe", false], [3, "module-datafusion.expr", false], [4, "module-datafusion.functions", false], [5, "module-datafusion", false], [6, "module-datafusion.input.base", false], [7, "module-datafusion.input", false], [8, "module-datafusion.input.location", false], [9, "module-datafusion.io", false], [10, "module-datafusion.object_store", false], [11, "module-datafusion.plan", false], [12, "module-datafusion.record_batch", false], [13, "module-datafusion.substrait", false], [14, "module-datafusion.udf", false]], "named_struct() (in module datafusion.functions)": [[4, "datafusion.functions.named_struct", false]], "names() (datafusion.catalog method)": [[5, "datafusion.Catalog.names", false]], "names() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.names", false]], "names() (datafusion.catalog.database method)": [[0, "datafusion.catalog.Database.names", false]], "names() (datafusion.database method)": [[5, "datafusion.Database.names", false]], "nanvl() (in module datafusion.functions)": [[4, "datafusion.functions.nanvl", false]], "negative (in module datafusion.expr)": [[3, "datafusion.expr.Negative", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[12, "datafusion.record_batch.RecordBatchStream.next", false]], "next() (datafusion.recordbatchstream method)": [[5, "datafusion.RecordBatchStream.next", false]], "not (in module datafusion.expr)": [[3, "datafusion.expr.Not", false]], "now() (in module datafusion.functions)": [[4, "datafusion.functions.now", false]], "nth_value() (in module datafusion.functions)": [[4, "datafusion.functions.nth_value", false]], "ntile() (in module datafusion.functions)": [[4, "datafusion.functions.ntile", false]], "null_treatment() (datafusion.expr method)": [[5, "datafusion.Expr.null_treatment", false]], "null_treatment() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.null_treatment", false]], "nullif() (in module datafusion.functions)": [[4, "datafusion.functions.nullif", false]], "nulls_first() (datafusion.expr.sortexpr method)": [[3, "datafusion.expr.SortExpr.nulls_first", false]], "nvl() (in module datafusion.functions)": [[4, "datafusion.functions.nvl", false]], "octet_length() (in module datafusion.functions)": [[4, "datafusion.functions.octet_length", 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)": [[5, "datafusion.SQLOptions.options_internal", false]], "order_by() (datafusion.expr method)": [[5, "datafusion.Expr.order_by", false]], "order_by() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.order_by", false]], "order_by() (in module datafusion.functions)": [[4, "datafusion.functions.order_by", false]], "otherwise() (datafusion.expr.casebuilder method)": [[3, "datafusion.expr.CaseBuilder.otherwise", false]], "over() (datafusion.expr method)": [[5, "datafusion.Expr.over", false]], "over() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.over", false]], "overlay() (in module datafusion.functions)": [[4, "datafusion.functions.overlay", false]], "partition_by() (datafusion.expr method)": [[5, "datafusion.Expr.partition_by", false]], "partition_by() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.partition_by", false]], "partition_count (datafusion.executionplan property)": [[5, "datafusion.ExecutionPlan.partition_count", false]], "partition_count (datafusion.plan.executionplan property)": [[11, "datafusion.plan.ExecutionPlan.partition_count", false]], "partitioning (in module datafusion.expr)": [[3, "datafusion.expr.Partitioning", false]], "percent_rank() (in module datafusion.functions)": [[4, "datafusion.functions.percent_rank", false]], "pi() (in module datafusion.functions)": [[4, "datafusion.functions.pi", false]], "placeholder (in module datafusion.expr)": [[3, "datafusion.expr.Placeholder", false]], "plan (class in datafusion.substrait)": [[13, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[13, "datafusion.substrait.Plan.plan_internal", false]], "pow() (in module datafusion.functions)": [[4, "datafusion.functions.pow", false]], "power() (in module datafusion.functions)": [[4, "datafusion.functions.power", false]], "producer (class in datafusion.substrait)": [[13, "datafusion.substrait.Producer", false]], "projection (in module datafusion.expr)": [[3, "datafusion.expr.Projection", false]], "python_value() (datafusion.expr method)": [[5, "datafusion.Expr.python_value", false]], "python_value() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.python_value", false]], "radians() (in module datafusion.functions)": [[4, "datafusion.functions.radians", false]], "random() (in module datafusion.functions)": [[4, "datafusion.functions.random", false]], "range() (in module datafusion.functions)": [[4, "datafusion.functions.range", false]], "rank() (in module datafusion.functions)": [[4, "datafusion.functions.rank", false]], "raw_sort (datafusion.expr.sortexpr attribute)": [[3, "datafusion.expr.SortExpr.raw_sort", false]], "rbs (datafusion.record_batch.recordbatchstream attribute)": [[12, "datafusion.record_batch.RecordBatchStream.rbs", false]], "rbs (datafusion.recordbatchstream attribute)": [[5, "datafusion.RecordBatchStream.rbs", false]], "read_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_avro", false]], "read_avro() (in module datafusion)": [[5, "datafusion.read_avro", false]], "read_avro() (in module datafusion.io)": [[9, "datafusion.io.read_avro", false]], "read_csv() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_csv", false]], "read_csv() (in module datafusion)": [[5, "datafusion.read_csv", false]], "read_csv() (in module datafusion.io)": [[9, "datafusion.io.read_csv", false]], "read_json() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_json", false]], "read_json() (in module datafusion)": [[5, "datafusion.read_json", false]], "read_json() (in module datafusion.io)": [[9, "datafusion.io.read_json", false]], "read_parquet() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.read_parquet", false]], "read_parquet() (in module datafusion)": [[5, "datafusion.read_parquet", false]], "read_parquet() (in module datafusion.io)": [[9, "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)": [[12, "datafusion.record_batch.RecordBatch.record_batch", false]], "record_batch (datafusion.recordbatch attribute)": [[5, "datafusion.RecordBatch.record_batch", false]], "recordbatch (class in datafusion)": [[5, "datafusion.RecordBatch", false]], "recordbatch (class in datafusion.record_batch)": [[12, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[5, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[12, "datafusion.record_batch.RecordBatchStream", false]], "regexp_count() (in module datafusion.functions)": [[4, "datafusion.functions.regexp_count", false]], "regexp_like() (in module datafusion.functions)": [[4, "datafusion.functions.regexp_like", false]], "regexp_match() (in module datafusion.functions)": [[4, "datafusion.functions.regexp_match", false]], "regexp_replace() (in module datafusion.functions)": [[4, "datafusion.functions.regexp_replace", false]], "register_avro() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_avro", 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_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_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_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)": [[4, "datafusion.functions.regr_avgx", false]], "regr_avgy() (in module datafusion.functions)": [[4, "datafusion.functions.regr_avgy", false]], "regr_count() (in module datafusion.functions)": [[4, "datafusion.functions.regr_count", false]], "regr_intercept() (in module datafusion.functions)": [[4, "datafusion.functions.regr_intercept", false]], "regr_r2() (in module datafusion.functions)": [[4, "datafusion.functions.regr_r2", false]], "regr_slope() (in module datafusion.functions)": [[4, "datafusion.functions.regr_slope", false]], "regr_sxx() (in module datafusion.functions)": [[4, "datafusion.functions.regr_sxx", false]], "regr_sxy() (in module datafusion.functions)": [[4, "datafusion.functions.regr_sxy", false]], "regr_syy() (in module datafusion.functions)": [[4, "datafusion.functions.regr_syy", false]], "repartition (in module datafusion.expr)": [[3, "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)": [[4, "datafusion.functions.repeat", false]], "replace() (in module datafusion.functions)": [[4, "datafusion.functions.replace", false]], "reverse() (in module datafusion.functions)": [[4, "datafusion.functions.reverse", false]], "rex_call_operands() (datafusion.expr method)": [[5, "datafusion.Expr.rex_call_operands", false]], "rex_call_operands() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.rex_call_operands", false]], "rex_call_operator() (datafusion.expr method)": [[5, "datafusion.Expr.rex_call_operator", false]], "rex_call_operator() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.rex_call_operator", false]], "rex_type() (datafusion.expr method)": [[5, "datafusion.Expr.rex_type", false]], "rex_type() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.rex_type", false]], "right() (in module datafusion.functions)": [[4, "datafusion.functions.right", false]], "round() (in module datafusion.functions)": [[4, "datafusion.functions.round", false]], "row_number() (in module datafusion.functions)": [[4, "datafusion.functions.row_number", false]], "rpad() (in module datafusion.functions)": [[4, "datafusion.functions.rpad", false]], "rtrim() (in module datafusion.functions)": [[4, "datafusion.functions.rtrim", false]], "runtimeconfig (class in datafusion.context)": [[1, "datafusion.context.RuntimeConfig", false]], "runtimeenvbuilder (class in datafusion)": [[5, "datafusion.RuntimeEnvBuilder", false]], "runtimeenvbuilder (class in datafusion.context)": [[1, "datafusion.context.RuntimeEnvBuilder", false]], "scalarsubquery (in module datafusion.expr)": [[3, "datafusion.expr.ScalarSubquery", false]], "scalarudf (class in datafusion)": [[5, "datafusion.ScalarUDF", false]], "scalarudf (class in datafusion.udf)": [[14, "datafusion.udf.ScalarUDF", false]], "scalarvariable (in module datafusion.expr)": [[3, "datafusion.expr.ScalarVariable", false]], "schema (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.schema", false]], "schema (datafusion.table property)": [[5, "datafusion.Table.schema", false]], "schema() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.schema", false]], "schema_name() (datafusion.expr method)": [[5, "datafusion.Expr.schema_name", false]], "schema_name() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.schema_name", 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)": [[13, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[13, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[13, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[13, "datafusion.substrait.Serde.serialize_to_plan", false]], "session_id() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.session_id", false]], "sessionconfig (class in datafusion)": [[5, "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)": [[5, "datafusion.SessionConfig.set", false]], "sha224() (in module datafusion.functions)": [[4, "datafusion.functions.sha224", false]], "sha256() (in module datafusion.functions)": [[4, "datafusion.functions.sha256", false]], "sha384() (in module datafusion.functions)": [[4, "datafusion.functions.sha384", false]], "sha512() (in module datafusion.functions)": [[4, "datafusion.functions.sha512", false]], "show() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.show", false]], "signum() (in module datafusion.functions)": [[4, "datafusion.functions.signum", false]], "similarto (in module datafusion.expr)": [[3, "datafusion.expr.SimilarTo", false]], "sin() (in module datafusion.functions)": [[4, "datafusion.functions.sin", false]], "sinh() (in module datafusion.functions)": [[4, "datafusion.functions.sinh", false]], "snappy (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.SNAPPY", false]], "sort (in module datafusion.expr)": [[3, "datafusion.expr.Sort", false]], "sort() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.sort", false]], "sort() (datafusion.expr method)": [[5, "datafusion.Expr.sort", false]], "sort() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.sort", false]], "sortexpr (class in datafusion.expr)": [[3, "datafusion.expr.SortExpr", false]], "split_part() (in module datafusion.functions)": [[4, "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]], "sqloptions (class in datafusion)": [[5, "datafusion.SQLOptions", false]], "sqloptions (class in datafusion.context)": [[1, "datafusion.context.SQLOptions", false]], "sqrt() (in module datafusion.functions)": [[4, "datafusion.functions.sqrt", false]], "stable (datafusion.udf.volatility attribute)": [[14, "datafusion.udf.Volatility.Stable", false]], "starts_with() (in module datafusion.functions)": [[4, "datafusion.functions.starts_with", false]], "state() (datafusion.accumulator method)": [[5, "datafusion.Accumulator.state", false]], "state() (datafusion.udf.accumulator method)": [[14, "datafusion.udf.Accumulator.state", false]], "stddev() (in module datafusion.functions)": [[4, "datafusion.functions.stddev", false]], "stddev_pop() (in module datafusion.functions)": [[4, "datafusion.functions.stddev_pop", false]], "stddev_samp() (in module datafusion.functions)": [[4, "datafusion.functions.stddev_samp", false]], "string_agg() (in module datafusion.functions)": [[4, "datafusion.functions.string_agg", false]], "string_literal() (datafusion.expr static method)": [[5, "datafusion.Expr.string_literal", false]], "string_literal() (datafusion.expr.expr static method)": [[3, "datafusion.expr.Expr.string_literal", false]], "strpos() (in module datafusion.functions)": [[4, "datafusion.functions.strpos", false]], "struct() (in module datafusion.functions)": [[4, "datafusion.functions.struct", false]], "subquery (in module datafusion.expr)": [[3, "datafusion.expr.Subquery", false]], "subqueryalias (in module datafusion.expr)": [[3, "datafusion.expr.SubqueryAlias", false]], "substr() (in module datafusion.functions)": [[4, "datafusion.functions.substr", false]], "substr_index() (in module datafusion.functions)": [[4, "datafusion.functions.substr_index", false]], "substring() (in module datafusion.functions)": [[4, "datafusion.functions.substring", false]], "sum() (in module datafusion.functions)": [[4, "datafusion.functions.sum", false]], "supports_bounded_execution() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.supports_bounded_execution", false]], "table (class in datafusion)": [[5, "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)": [[5, "datafusion.Table.table", false]], "table() (datafusion.catalog.database method)": [[0, "datafusion.catalog.Database.table", false]], "table() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table", false]], "table() (datafusion.database method)": [[5, "datafusion.Database.table", false]], "table_exist() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.table_exist", false]], "tableproviderexportable (class in datafusion.context)": [[1, "datafusion.context.TableProviderExportable", false]], "tablescan (in module datafusion.expr)": [[3, "datafusion.expr.TableScan", false]], "tail() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.tail", false]], "tan() (in module datafusion.functions)": [[4, "datafusion.functions.tan", false]], "tanh() (in module datafusion.functions)": [[4, "datafusion.functions.tanh", false]], "to_arrow_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.to_arrow_table", false]], "to_hex() (in module datafusion.functions)": [[4, "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)": [[5, "datafusion.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.to_proto", false]], "to_proto() (datafusion.plan.executionplan method)": [[11, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[12, "datafusion.record_batch.RecordBatch.to_pyarrow", false]], "to_pyarrow() (datafusion.recordbatch method)": [[5, "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)": [[13, "datafusion.substrait.Producer.to_substrait_plan", false]], "to_timestamp() (in module datafusion.functions)": [[4, "datafusion.functions.to_timestamp", false]], "to_timestamp_micros() (in module datafusion.functions)": [[4, "datafusion.functions.to_timestamp_micros", false]], "to_timestamp_millis() (in module datafusion.functions)": [[4, "datafusion.functions.to_timestamp_millis", false]], "to_timestamp_nanos() (in module datafusion.functions)": [[4, "datafusion.functions.to_timestamp_nanos", false]], "to_timestamp_seconds() (in module datafusion.functions)": [[4, "datafusion.functions.to_timestamp_seconds", false]], "to_unixtime() (in module datafusion.functions)": [[4, "datafusion.functions.to_unixtime", false]], "to_variant() (datafusion.expr method)": [[5, "datafusion.Expr.to_variant", false]], "to_variant() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.to_variant", false]], "to_variant() (datafusion.logicalplan method)": [[5, "datafusion.LogicalPlan.to_variant", false]], "to_variant() (datafusion.plan.logicalplan method)": [[11, "datafusion.plan.LogicalPlan.to_variant", false]], "transform() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.transform", false]], "translate() (in module datafusion.functions)": [[4, "datafusion.functions.translate", false]], "trim() (in module datafusion.functions)": [[4, "datafusion.functions.trim", false]], "trunc() (in module datafusion.functions)": [[4, "datafusion.functions.trunc", false]], "trycast (in module datafusion.expr)": [[3, "datafusion.expr.TryCast", false]], "types() (datafusion.expr method)": [[5, "datafusion.Expr.types", false]], "types() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.types", false]], "udaf (in module datafusion)": [[5, "datafusion.udaf", false]], "udaf (in module datafusion.udf)": [[14, "datafusion.udf.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[5, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.udf.aggregateudf static method)": [[14, "datafusion.udf.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[5, "datafusion.udf", false]], "udf (in module datafusion.udf)": [[14, "datafusion.udf.udf", false]], "udf() (datafusion.scalarudf static method)": [[5, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.udf.scalarudf static method)": [[14, "datafusion.udf.ScalarUDF.udf", false]], "udwf (in module datafusion)": [[5, "datafusion.udwf", false]], "udwf (in module datafusion.udf)": [[14, "datafusion.udf.udwf", false]], "udwf() (datafusion.udf.windowudf static method)": [[14, "datafusion.udf.WindowUDF.udwf", false]], "udwf() (datafusion.windowudf static method)": [[5, "datafusion.WindowUDF.udwf", false]], "uncompressed (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.UNCOMPRESSED", false]], "union (in module datafusion.expr)": [[3, "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)": [[3, "datafusion.expr.Unnest", false]], "unnest_columns() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.unnest_columns", false]], "unnestexpr (in module datafusion.expr)": [[3, "datafusion.expr.UnnestExpr", false]], "update() (datafusion.accumulator method)": [[5, "datafusion.Accumulator.update", false]], "update() (datafusion.udf.accumulator method)": [[14, "datafusion.udf.Accumulator.update", false]], "upper() (in module datafusion.functions)": [[4, "datafusion.functions.upper", false]], "uses_window_frame() (datafusion.udf.windowevaluator method)": [[14, "datafusion.udf.WindowEvaluator.uses_window_frame", false]], "uuid() (in module datafusion.functions)": [[4, "datafusion.functions.uuid", false]], "var() (in module datafusion.functions)": [[4, "datafusion.functions.var", false]], "var_pop() (in module datafusion.functions)": [[4, "datafusion.functions.var_pop", false]], "var_samp() (in module datafusion.functions)": [[4, "datafusion.functions.var_samp", false]], "var_sample() (in module datafusion.functions)": [[4, "datafusion.functions.var_sample", false]], "variant_name() (datafusion.expr method)": [[5, "datafusion.Expr.variant_name", false]], "variant_name() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.variant_name", false]], "volatile (datafusion.udf.volatility attribute)": [[14, "datafusion.udf.Volatility.Volatile", false]], "volatility (class in datafusion.udf)": [[14, "datafusion.udf.Volatility", false]], "when() (datafusion.expr.casebuilder method)": [[3, "datafusion.expr.CaseBuilder.when", false]], "when() (in module datafusion.functions)": [[4, "datafusion.functions.when", false]], "window (class in datafusion.expr)": [[3, "datafusion.expr.Window", false]], "window() (in module datafusion.functions)": [[4, "datafusion.functions.window", false]], "window_frame (datafusion.expr.windowframe attribute)": [[3, "datafusion.expr.WindowFrame.window_frame", false]], "window_frame (datafusion.windowframe attribute)": [[5, "datafusion.WindowFrame.window_frame", false]], "window_frame() (datafusion.expr method)": [[5, "datafusion.Expr.window_frame", false]], "window_frame() (datafusion.expr.expr method)": [[3, "datafusion.expr.Expr.window_frame", false]], "windowevaluator (class in datafusion.udf)": [[14, "datafusion.udf.WindowEvaluator", false]], "windowexpr (in module datafusion.expr)": [[3, "datafusion.expr.WindowExpr", false]], "windowframe (class in datafusion)": [[5, "datafusion.WindowFrame", false]], "windowframe (class in datafusion.expr)": [[3, "datafusion.expr.WindowFrame", false]], "windowframebound (class in datafusion.expr)": [[3, "datafusion.expr.WindowFrameBound", false]], "windowudf (class in datafusion)": [[5, "datafusion.WindowUDF", false]], "windowudf (class in datafusion.udf)": [[14, "datafusion.udf.WindowUDF", false]], "with_allow_ddl() (datafusion.context.sqloptions method)": [[1, "datafusion.context.SQLOptions.with_allow_ddl", false]], "with_allow_ddl() (datafusion.sqloptions method)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "datafusion.SessionConfig.with_parquet_pruning", false]], "with_repartition_aggregations() (datafusion.context.sessionconfig method)": [[1, "datafusion.context.SessionConfig.with_repartition_aggregations", false]], "with_repartition_aggregations() (datafusion.sessionconfig method)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "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)": [[5, "datafusion.RuntimeEnvBuilder.with_unbounded_memory_pool", 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]], "zstd (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.ZSTD", false]]}, "objects": {"": [[5, 0, 0, "-", "datafusion"]], "datafusion": [[5, 1, 1, "", "Accumulator"], [5, 1, 1, "", "AggregateUDF"], [5, 1, 1, "", "Catalog"], [5, 4, 1, "", "DFSchema"], [5, 1, 1, "", "Database"], [5, 1, 1, "", "ExecutionPlan"], [5, 1, 1, "", "Expr"], [5, 1, 1, "", "LogicalPlan"], [5, 1, 1, "", "RecordBatch"], [5, 1, 1, "", "RecordBatchStream"], [5, 1, 1, "", "RuntimeEnvBuilder"], [5, 1, 1, "", "SQLOptions"], [5, 1, 1, "", "ScalarUDF"], [5, 1, 1, "", "SessionConfig"], [5, 1, 1, "", "Table"], [5, 1, 1, "", "WindowFrame"], [5, 1, 1, "", "WindowUDF"], [0, 0, 0, "-", "catalog"], [5, 6, 1, "", "col"], [5, 6, 1, "", "column"], [1, 0, 0, "-", "context"], [2, 0, 0, "-", "dataframe"], [3, 0, 0, "-", "expr"], [4, 0, 0, "-", "functions"], [7, 0, 0, "-", "input"], [9, 0, 0, "-", "io"], [5, 6, 1, "", "lit"], [5, 6, 1, "", "literal"], [10, 0, 0, "-", "object_store"], [11, 0, 0, "-", "plan"], [5, 6, 1, "", "read_avro"], [5, 6, 1, "", "read_csv"], [5, 6, 1, "", "read_json"], [5, 6, 1, "", "read_parquet"], [12, 0, 0, "-", "record_batch"], [13, 0, 0, "-", "substrait"], [5, 4, 1, "", "udaf"], [14, 0, 0, "-", "udf"], [5, 4, 1, "", "udwf"]], "datafusion.Accumulator": [[5, 2, 1, "", "evaluate"], [5, 2, 1, "", "merge"], [5, 2, 1, "", "state"], [5, 2, 1, "", "update"]], "datafusion.AggregateUDF": [[5, 2, 1, "", "__call__"], [5, 3, 1, "", "_udaf"], [5, 2, 1, "", "udaf"]], "datafusion.Catalog": [[5, 3, 1, "", "catalog"], [5, 2, 1, "", "database"], [5, 2, 1, "", "names"]], "datafusion.Database": [[5, 3, 1, "", "db"], [5, 2, 1, "", "names"], [5, 2, 1, "", "table"]], "datafusion.ExecutionPlan": [[5, 2, 1, "", "__repr__"], [5, 3, 1, "", "_raw_plan"], [5, 2, 1, "", "children"], [5, 2, 1, "", "display"], [5, 2, 1, "", "display_indent"], [5, 2, 1, "", "from_proto"], [5, 5, 1, "", "partition_count"], [5, 2, 1, "", "to_proto"]], "datafusion.Expr": [[5, 2, 1, "", "__add__"], [5, 2, 1, "", "__and__"], [5, 2, 1, "", "__eq__"], [5, 2, 1, "", "__ge__"], [5, 2, 1, "", "__getitem__"], [5, 2, 1, "", "__gt__"], [5, 2, 1, "", "__invert__"], [5, 2, 1, "", "__le__"], [5, 2, 1, "", "__lt__"], [5, 2, 1, "", "__mod__"], [5, 2, 1, "", "__mul__"], [5, 2, 1, "", "__ne__"], [5, 2, 1, "", "__or__"], [5, 3, 1, "", "__radd__"], [5, 3, 1, "", "__rand__"], [5, 2, 1, "", "__repr__"], [5, 2, 1, "", "__richcmp__"], [5, 3, 1, "", "__rmod__"], [5, 3, 1, "", "__rmul__"], [5, 3, 1, "", "__ror__"], [5, 3, 1, "", "__rsub__"], [5, 3, 1, "", "__rtruediv__"], [5, 2, 1, "", "__sub__"], [5, 2, 1, "", "__truediv__"], [5, 3, 1, "", "_to_pyarrow_types"], [5, 2, 1, "", "alias"], [5, 2, 1, "", "between"], [5, 2, 1, "", "canonical_name"], [5, 2, 1, "", "cast"], [5, 2, 1, "", "column"], [5, 2, 1, "", "column_name"], [5, 2, 1, "", "display_name"], [5, 2, 1, "", "distinct"], [5, 3, 1, "", "expr"], [5, 2, 1, "", "fill_nan"], [5, 2, 1, "", "fill_null"], [5, 2, 1, "", "filter"], [5, 2, 1, "", "is_not_null"], [5, 2, 1, "", "is_null"], [5, 2, 1, "", "literal"], [5, 2, 1, "", "null_treatment"], [5, 2, 1, "", "order_by"], [5, 2, 1, "", "over"], [5, 2, 1, "", "partition_by"], [5, 2, 1, "", "python_value"], [5, 2, 1, "", "rex_call_operands"], [5, 2, 1, "", "rex_call_operator"], [5, 2, 1, "", "rex_type"], [5, 2, 1, "", "schema_name"], [5, 2, 1, "", "sort"], [5, 2, 1, "", "string_literal"], [5, 2, 1, "", "to_variant"], [5, 2, 1, "", "types"], [5, 2, 1, "", "variant_name"], [5, 2, 1, "", "window_frame"]], "datafusion.LogicalPlan": [[5, 2, 1, "", "__repr__"], [5, 3, 1, "", "_raw_plan"], [5, 2, 1, "", "display"], [5, 2, 1, "", "display_graphviz"], [5, 2, 1, "", "display_indent"], [5, 2, 1, "", "display_indent_schema"], [5, 2, 1, "", "from_proto"], [5, 2, 1, "", "inputs"], [5, 2, 1, "", "to_proto"], [5, 2, 1, "", "to_variant"]], "datafusion.RecordBatch": [[5, 3, 1, "", "record_batch"], [5, 2, 1, "", "to_pyarrow"]], "datafusion.RecordBatchStream": [[5, 2, 1, "", "__aiter__"], [5, 2, 1, "", "__anext__"], [5, 2, 1, "", "__iter__"], [5, 2, 1, "", "__next__"], [5, 2, 1, "", "next"], [5, 3, 1, "", "rbs"]], "datafusion.RuntimeEnvBuilder": [[5, 3, 1, "", "config_internal"], [5, 2, 1, "", "with_disk_manager_disabled"], [5, 2, 1, "", "with_disk_manager_os"], [5, 2, 1, "", "with_disk_manager_specified"], [5, 2, 1, "", "with_fair_spill_pool"], [5, 2, 1, "", "with_greedy_memory_pool"], [5, 2, 1, "", "with_temp_file_path"], [5, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.SQLOptions": [[5, 3, 1, "", "options_internal"], [5, 2, 1, "", "with_allow_ddl"], [5, 2, 1, "", "with_allow_dml"], [5, 2, 1, "", "with_allow_statements"]], "datafusion.ScalarUDF": [[5, 2, 1, "", "__call__"], [5, 3, 1, "", "_udf"], [5, 2, 1, "", "udf"]], "datafusion.SessionConfig": [[5, 3, 1, "", "config_internal"], [5, 2, 1, "", "set"], [5, 2, 1, "", "with_batch_size"], [5, 2, 1, "", "with_create_default_catalog_and_schema"], [5, 2, 1, "", "with_default_catalog_and_schema"], [5, 2, 1, "", "with_information_schema"], [5, 2, 1, "", "with_parquet_pruning"], [5, 2, 1, "", "with_repartition_aggregations"], [5, 2, 1, "", "with_repartition_file_min_size"], [5, 2, 1, "", "with_repartition_file_scans"], [5, 2, 1, "", "with_repartition_joins"], [5, 2, 1, "", "with_repartition_sorts"], [5, 2, 1, "", "with_repartition_windows"], [5, 2, 1, "", "with_target_partitions"]], "datafusion.Table": [[5, 5, 1, "", "kind"], [5, 5, 1, "", "schema"], [5, 3, 1, "", "table"]], "datafusion.WindowFrame": [[5, 2, 1, "", "get_frame_units"], [5, 2, 1, "", "get_lower_bound"], [5, 2, 1, "", "get_upper_bound"], [5, 3, 1, "", "window_frame"]], "datafusion.WindowUDF": [[5, 2, 1, "", "__call__"], [5, 2, 1, "", "_create_window_udf"], [5, 2, 1, "", "_create_window_udf_decorator"], [5, 2, 1, "", "_get_default_name"], [5, 2, 1, "", "_normalize_input_types"], [5, 3, 1, "", "_udwf"], [5, 2, 1, "", "udwf"]], "datafusion.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "Database"], [0, 1, 1, "", "Table"]], "datafusion.catalog.Catalog": [[0, 3, 1, "", "catalog"], [0, 2, 1, "", "database"], [0, 2, 1, "", "names"]], "datafusion.catalog.Database": [[0, 3, 1, "", "db"], [0, 2, 1, "", "names"], [0, 2, 1, "", "table"]], "datafusion.catalog.Table": [[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, "", "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.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, "", "catalog"], [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_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_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"]], "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, "", "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, "", "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"]], "datafusion.expr": [[3, 4, 1, "", "Aggregate"], [3, 4, 1, "", "AggregateFunction"], [3, 4, 1, "", "Alias"], [3, 4, 1, "", "Analyze"], [3, 4, 1, "", "Between"], [3, 4, 1, "", "BinaryExpr"], [3, 4, 1, "", "Case"], [3, 1, 1, "", "CaseBuilder"], [3, 4, 1, "", "Cast"], [3, 4, 1, "", "Column"], [3, 4, 1, "", "CreateMemoryTable"], [3, 4, 1, "", "CreateView"], [3, 4, 1, "", "Distinct"], [3, 4, 1, "", "DropTable"], [3, 4, 1, "", "EmptyRelation"], [3, 4, 1, "", "Exists"], [3, 4, 1, "", "Explain"], [3, 1, 1, "", "Expr"], [3, 4, 1, "", "Extension"], [3, 4, 1, "", "Filter"], [3, 4, 1, "", "GroupingSet"], [3, 4, 1, "", "ILike"], [3, 4, 1, "", "InList"], [3, 4, 1, "", "InSubquery"], [3, 4, 1, "", "IsFalse"], [3, 4, 1, "", "IsNotFalse"], [3, 4, 1, "", "IsNotNull"], [3, 4, 1, "", "IsNotTrue"], [3, 4, 1, "", "IsNotUnknown"], [3, 4, 1, "", "IsNull"], [3, 4, 1, "", "IsTrue"], [3, 4, 1, "", "IsUnknown"], [3, 4, 1, "", "Join"], [3, 4, 1, "", "JoinConstraint"], [3, 4, 1, "", "JoinType"], [3, 4, 1, "", "Like"], [3, 4, 1, "", "Limit"], [3, 4, 1, "", "Literal"], [3, 4, 1, "", "Negative"], [3, 4, 1, "", "Not"], [3, 4, 1, "", "Partitioning"], [3, 4, 1, "", "Placeholder"], [3, 4, 1, "", "Projection"], [3, 4, 1, "", "Repartition"], [3, 4, 1, "", "ScalarSubquery"], [3, 4, 1, "", "ScalarVariable"], [3, 4, 1, "", "SimilarTo"], [3, 4, 1, "", "Sort"], [3, 1, 1, "", "SortExpr"], [3, 4, 1, "", "Subquery"], [3, 4, 1, "", "SubqueryAlias"], [3, 4, 1, "", "TableScan"], [3, 4, 1, "", "TryCast"], [3, 4, 1, "", "Union"], [3, 4, 1, "", "Unnest"], [3, 4, 1, "", "UnnestExpr"], [3, 1, 1, "", "Window"], [3, 4, 1, "", "WindowExpr"], [3, 1, 1, "", "WindowFrame"], [3, 1, 1, "", "WindowFrameBound"]], "datafusion.expr.CaseBuilder": [[3, 3, 1, "", "case_builder"], [3, 2, 1, "", "end"], [3, 2, 1, "", "otherwise"], [3, 2, 1, "", "when"]], "datafusion.expr.Expr": [[3, 2, 1, "", "__add__"], [3, 2, 1, "", "__and__"], [3, 2, 1, "", "__eq__"], [3, 2, 1, "", "__ge__"], [3, 2, 1, "", "__getitem__"], [3, 2, 1, "", "__gt__"], [3, 2, 1, "", "__invert__"], [3, 2, 1, "", "__le__"], [3, 2, 1, "", "__lt__"], [3, 2, 1, "", "__mod__"], [3, 2, 1, "", "__mul__"], [3, 2, 1, "", "__ne__"], [3, 2, 1, "", "__or__"], [3, 3, 1, "", "__radd__"], [3, 3, 1, "", "__rand__"], [3, 2, 1, "", "__repr__"], [3, 2, 1, "", "__richcmp__"], [3, 3, 1, "", "__rmod__"], [3, 3, 1, "", "__rmul__"], [3, 3, 1, "", "__ror__"], [3, 3, 1, "", "__rsub__"], [3, 3, 1, "", "__rtruediv__"], [3, 2, 1, "", "__sub__"], [3, 2, 1, "", "__truediv__"], [3, 3, 1, "", "_to_pyarrow_types"], [3, 2, 1, "", "alias"], [3, 2, 1, "", "between"], [3, 2, 1, "", "canonical_name"], [3, 2, 1, "", "cast"], [3, 2, 1, "", "column"], [3, 2, 1, "", "column_name"], [3, 2, 1, "", "display_name"], [3, 2, 1, "", "distinct"], [3, 3, 1, "", "expr"], [3, 2, 1, "", "fill_nan"], [3, 2, 1, "", "fill_null"], [3, 2, 1, "", "filter"], [3, 2, 1, "", "is_not_null"], [3, 2, 1, "", "is_null"], [3, 2, 1, "", "literal"], [3, 2, 1, "", "null_treatment"], [3, 2, 1, "", "order_by"], [3, 2, 1, "", "over"], [3, 2, 1, "", "partition_by"], [3, 2, 1, "", "python_value"], [3, 2, 1, "", "rex_call_operands"], [3, 2, 1, "", "rex_call_operator"], [3, 2, 1, "", "rex_type"], [3, 2, 1, "", "schema_name"], [3, 2, 1, "", "sort"], [3, 2, 1, "", "string_literal"], [3, 2, 1, "", "to_variant"], [3, 2, 1, "", "types"], [3, 2, 1, "", "variant_name"], [3, 2, 1, "", "window_frame"]], "datafusion.expr.SortExpr": [[3, 2, 1, "", "__repr__"], [3, 2, 1, "", "ascending"], [3, 2, 1, "", "expr"], [3, 2, 1, "", "nulls_first"], [3, 3, 1, "", "raw_sort"]], "datafusion.expr.Window": [[3, 3, 1, "", "_null_treatment"], [3, 3, 1, "", "_order_by"], [3, 3, 1, "", "_partition_by"], [3, 3, 1, "", "_window_frame"]], "datafusion.expr.WindowFrame": [[3, 2, 1, "", "get_frame_units"], [3, 2, 1, "", "get_lower_bound"], [3, 2, 1, "", "get_upper_bound"], [3, 3, 1, "", "window_frame"]], "datafusion.expr.WindowFrameBound": [[3, 3, 1, "", "frame_bound"], [3, 2, 1, "", "get_offset"], [3, 2, 1, "", "is_current_row"], [3, 2, 1, "", "is_following"], [3, 2, 1, "", "is_preceding"], [3, 2, 1, "", "is_unbounded"]], "datafusion.functions": [[4, 6, 1, "", "abs"], [4, 6, 1, "", "acos"], [4, 6, 1, "", "acosh"], [4, 6, 1, "", "alias"], [4, 6, 1, "", "approx_distinct"], [4, 6, 1, "", "approx_median"], [4, 6, 1, "", "approx_percentile_cont"], [4, 6, 1, "", "approx_percentile_cont_with_weight"], [4, 6, 1, "", "array"], [4, 6, 1, "", "array_agg"], [4, 6, 1, "", "array_append"], [4, 6, 1, "", "array_cat"], [4, 6, 1, "", "array_concat"], [4, 6, 1, "", "array_dims"], [4, 6, 1, "", "array_distinct"], [4, 6, 1, "", "array_element"], [4, 6, 1, "", "array_empty"], [4, 6, 1, "", "array_except"], [4, 6, 1, "", "array_extract"], [4, 6, 1, "", "array_has"], [4, 6, 1, "", "array_has_all"], [4, 6, 1, "", "array_has_any"], [4, 6, 1, "", "array_indexof"], [4, 6, 1, "", "array_intersect"], [4, 6, 1, "", "array_join"], [4, 6, 1, "", "array_length"], [4, 6, 1, "", "array_ndims"], [4, 6, 1, "", "array_pop_back"], [4, 6, 1, "", "array_pop_front"], [4, 6, 1, "", "array_position"], [4, 6, 1, "", "array_positions"], [4, 6, 1, "", "array_prepend"], [4, 6, 1, "", "array_push_back"], [4, 6, 1, "", "array_push_front"], [4, 6, 1, "", "array_remove"], [4, 6, 1, "", "array_remove_all"], [4, 6, 1, "", "array_remove_n"], [4, 6, 1, "", "array_repeat"], [4, 6, 1, "", "array_replace"], [4, 6, 1, "", "array_replace_all"], [4, 6, 1, "", "array_replace_n"], [4, 6, 1, "", "array_resize"], [4, 6, 1, "", "array_slice"], [4, 6, 1, "", "array_sort"], [4, 6, 1, "", "array_to_string"], [4, 6, 1, "", "array_union"], [4, 6, 1, "", "arrow_cast"], [4, 6, 1, "", "arrow_typeof"], [4, 6, 1, "", "ascii"], [4, 6, 1, "", "asin"], [4, 6, 1, "", "asinh"], [4, 6, 1, "", "atan"], [4, 6, 1, "", "atan2"], [4, 6, 1, "", "atanh"], [4, 6, 1, "", "avg"], [4, 6, 1, "", "bit_and"], [4, 6, 1, "", "bit_length"], [4, 6, 1, "", "bit_or"], [4, 6, 1, "", "bit_xor"], [4, 6, 1, "", "bool_and"], [4, 6, 1, "", "bool_or"], [4, 6, 1, "", "btrim"], [4, 6, 1, "", "cardinality"], [4, 6, 1, "", "case"], [4, 6, 1, "", "cbrt"], [4, 6, 1, "", "ceil"], [4, 6, 1, "", "char_length"], [4, 6, 1, "", "character_length"], [4, 6, 1, "", "chr"], [4, 6, 1, "", "coalesce"], [4, 6, 1, "", "col"], [4, 6, 1, "", "concat"], [4, 6, 1, "", "concat_ws"], [4, 6, 1, "", "corr"], [4, 6, 1, "", "cos"], [4, 6, 1, "", "cosh"], [4, 6, 1, "", "cot"], [4, 6, 1, "", "count"], [4, 6, 1, "", "count_star"], [4, 6, 1, "", "covar"], [4, 6, 1, "", "covar_pop"], [4, 6, 1, "", "covar_samp"], [4, 6, 1, "", "cume_dist"], [4, 6, 1, "", "current_date"], [4, 6, 1, "", "current_time"], [4, 6, 1, "", "date_bin"], [4, 6, 1, "", "date_part"], [4, 6, 1, "", "date_trunc"], [4, 6, 1, "", "datepart"], [4, 6, 1, "", "datetrunc"], [4, 6, 1, "", "decode"], [4, 6, 1, "", "degrees"], [4, 6, 1, "", "dense_rank"], [4, 6, 1, "", "digest"], [4, 6, 1, "", "empty"], [4, 6, 1, "", "encode"], [4, 6, 1, "", "ends_with"], [4, 6, 1, "", "exp"], [4, 6, 1, "", "extract"], [4, 6, 1, "", "factorial"], [4, 6, 1, "", "find_in_set"], [4, 6, 1, "", "first_value"], [4, 6, 1, "", "flatten"], [4, 6, 1, "", "floor"], [4, 6, 1, "", "from_unixtime"], [4, 6, 1, "", "gcd"], [4, 6, 1, "", "in_list"], [4, 6, 1, "", "initcap"], [4, 6, 1, "", "isnan"], [4, 6, 1, "", "iszero"], [4, 6, 1, "", "lag"], [4, 6, 1, "", "last_value"], [4, 6, 1, "", "lcm"], [4, 6, 1, "", "lead"], [4, 6, 1, "", "left"], [4, 6, 1, "", "length"], [4, 6, 1, "", "levenshtein"], [4, 6, 1, "", "list_append"], [4, 6, 1, "", "list_cat"], [4, 6, 1, "", "list_concat"], [4, 6, 1, "", "list_dims"], [4, 6, 1, "", "list_distinct"], [4, 6, 1, "", "list_element"], [4, 6, 1, "", "list_except"], [4, 6, 1, "", "list_extract"], [4, 6, 1, "", "list_indexof"], [4, 6, 1, "", "list_intersect"], [4, 6, 1, "", "list_join"], [4, 6, 1, "", "list_length"], [4, 6, 1, "", "list_ndims"], [4, 6, 1, "", "list_position"], [4, 6, 1, "", "list_positions"], [4, 6, 1, "", "list_prepend"], [4, 6, 1, "", "list_push_back"], [4, 6, 1, "", "list_push_front"], [4, 6, 1, "", "list_remove"], [4, 6, 1, "", "list_remove_all"], [4, 6, 1, "", "list_remove_n"], [4, 6, 1, "", "list_repeat"], [4, 6, 1, "", "list_replace"], [4, 6, 1, "", "list_replace_all"], [4, 6, 1, "", "list_replace_n"], [4, 6, 1, "", "list_resize"], [4, 6, 1, "", "list_slice"], [4, 6, 1, "", "list_sort"], [4, 6, 1, "", "list_to_string"], [4, 6, 1, "", "list_union"], [4, 6, 1, "", "ln"], [4, 6, 1, "", "log"], [4, 6, 1, "", "log10"], [4, 6, 1, "", "log2"], [4, 6, 1, "", "lower"], [4, 6, 1, "", "lpad"], [4, 6, 1, "", "ltrim"], [4, 6, 1, "", "make_array"], [4, 6, 1, "", "make_date"], [4, 6, 1, "", "make_list"], [4, 6, 1, "", "max"], [4, 6, 1, "", "md5"], [4, 6, 1, "", "mean"], [4, 6, 1, "", "median"], [4, 6, 1, "", "min"], [4, 6, 1, "", "named_struct"], [4, 6, 1, "", "nanvl"], [4, 6, 1, "", "now"], [4, 6, 1, "", "nth_value"], [4, 6, 1, "", "ntile"], [4, 6, 1, "", "nullif"], [4, 6, 1, "", "nvl"], [4, 6, 1, "", "octet_length"], [4, 6, 1, "", "order_by"], [4, 6, 1, "", "overlay"], [4, 6, 1, "", "percent_rank"], [4, 6, 1, "", "pi"], [4, 6, 1, "", "pow"], [4, 6, 1, "", "power"], [4, 6, 1, "", "radians"], [4, 6, 1, "", "random"], [4, 6, 1, "", "range"], [4, 6, 1, "", "rank"], [4, 6, 1, "", "regexp_count"], [4, 6, 1, "", "regexp_like"], [4, 6, 1, "", "regexp_match"], [4, 6, 1, "", "regexp_replace"], [4, 6, 1, "", "regr_avgx"], [4, 6, 1, "", "regr_avgy"], [4, 6, 1, "", "regr_count"], [4, 6, 1, "", "regr_intercept"], [4, 6, 1, "", "regr_r2"], [4, 6, 1, "", "regr_slope"], [4, 6, 1, "", "regr_sxx"], [4, 6, 1, "", "regr_sxy"], [4, 6, 1, "", "regr_syy"], [4, 6, 1, "", "repeat"], [4, 6, 1, "", "replace"], [4, 6, 1, "", "reverse"], [4, 6, 1, "", "right"], [4, 6, 1, "", "round"], [4, 6, 1, "", "row_number"], [4, 6, 1, "", "rpad"], [4, 6, 1, "", "rtrim"], [4, 6, 1, "", "sha224"], [4, 6, 1, "", "sha256"], [4, 6, 1, "", "sha384"], [4, 6, 1, "", "sha512"], [4, 6, 1, "", "signum"], [4, 6, 1, "", "sin"], [4, 6, 1, "", "sinh"], [4, 6, 1, "", "split_part"], [4, 6, 1, "", "sqrt"], [4, 6, 1, "", "starts_with"], [4, 6, 1, "", "stddev"], [4, 6, 1, "", "stddev_pop"], [4, 6, 1, "", "stddev_samp"], [4, 6, 1, "", "string_agg"], [4, 6, 1, "", "strpos"], [4, 6, 1, "", "struct"], [4, 6, 1, "", "substr"], [4, 6, 1, "", "substr_index"], [4, 6, 1, "", "substring"], [4, 6, 1, "", "sum"], [4, 6, 1, "", "tan"], [4, 6, 1, "", "tanh"], [4, 6, 1, "", "to_hex"], [4, 6, 1, "", "to_timestamp"], [4, 6, 1, "", "to_timestamp_micros"], [4, 6, 1, "", "to_timestamp_millis"], [4, 6, 1, "", "to_timestamp_nanos"], [4, 6, 1, "", "to_timestamp_seconds"], [4, 6, 1, "", "to_unixtime"], [4, 6, 1, "", "translate"], [4, 6, 1, "", "trim"], [4, 6, 1, "", "trunc"], [4, 6, 1, "", "upper"], [4, 6, 1, "", "uuid"], [4, 6, 1, "", "var"], [4, 6, 1, "", "var_pop"], [4, 6, 1, "", "var_samp"], [4, 6, 1, "", "var_sample"], [4, 6, 1, "", "when"], [4, 6, 1, "", "window"]], "datafusion.input": [[7, 1, 1, "", "LocationInputPlugin"], [6, 0, 0, "-", "base"], [8, 0, 0, "-", "location"]], "datafusion.input.LocationInputPlugin": [[7, 2, 1, "", "build_table"], [7, 2, 1, "", "is_correct_input"]], "datafusion.input.base": [[6, 1, 1, "", "BaseInputSource"]], "datafusion.input.base.BaseInputSource": [[6, 2, 1, "", "build_table"], [6, 2, 1, "", "is_correct_input"]], "datafusion.input.location": [[8, 1, 1, "", "LocationInputPlugin"]], "datafusion.input.location.LocationInputPlugin": [[8, 2, 1, "", "build_table"], [8, 2, 1, "", "is_correct_input"]], "datafusion.io": [[9, 6, 1, "", "read_avro"], [9, 6, 1, "", "read_csv"], [9, 6, 1, "", "read_json"], [9, 6, 1, "", "read_parquet"]], "datafusion.object_store": [[10, 4, 1, "", "AmazonS3"], [10, 4, 1, "", "GoogleCloud"], [10, 4, 1, "", "Http"], [10, 4, 1, "", "LocalFileSystem"], [10, 4, 1, "", "MicrosoftAzure"]], "datafusion.plan": [[11, 1, 1, "", "ExecutionPlan"], [11, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[11, 2, 1, "", "__repr__"], [11, 3, 1, "", "_raw_plan"], [11, 2, 1, "", "children"], [11, 2, 1, "", "display"], [11, 2, 1, "", "display_indent"], [11, 2, 1, "", "from_proto"], [11, 5, 1, "", "partition_count"], [11, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[11, 2, 1, "", "__repr__"], [11, 3, 1, "", "_raw_plan"], [11, 2, 1, "", "display"], [11, 2, 1, "", "display_graphviz"], [11, 2, 1, "", "display_indent"], [11, 2, 1, "", "display_indent_schema"], [11, 2, 1, "", "from_proto"], [11, 2, 1, "", "inputs"], [11, 2, 1, "", "to_proto"], [11, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[12, 1, 1, "", "RecordBatch"], [12, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[12, 3, 1, "", "record_batch"], [12, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[12, 2, 1, "", "__aiter__"], [12, 2, 1, "", "__anext__"], [12, 2, 1, "", "__iter__"], [12, 2, 1, "", "__next__"], [12, 2, 1, "", "next"], [12, 3, 1, "", "rbs"]], "datafusion.substrait": [[13, 1, 1, "", "Consumer"], [13, 1, 1, "", "Plan"], [13, 1, 1, "", "Producer"], [13, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[13, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[13, 2, 1, "", "encode"], [13, 3, 1, "", "plan_internal"]], "datafusion.substrait.Producer": [[13, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[13, 2, 1, "", "deserialize"], [13, 2, 1, "", "deserialize_bytes"], [13, 2, 1, "", "serialize"], [13, 2, 1, "", "serialize_bytes"], [13, 2, 1, "", "serialize_to_plan"]], "datafusion.udf": [[14, 1, 1, "", "Accumulator"], [14, 1, 1, "", "AggregateUDF"], [14, 1, 1, "", "ScalarUDF"], [14, 1, 1, "", "Volatility"], [14, 1, 1, "", "WindowEvaluator"], [14, 1, 1, "", "WindowUDF"], [14, 4, 1, "", "_R"], [14, 4, 1, "", "udaf"], [14, 4, 1, "", "udf"], [14, 4, 1, "", "udwf"]], "datafusion.udf.Accumulator": [[14, 2, 1, "", "evaluate"], [14, 2, 1, "", "merge"], [14, 2, 1, "", "state"], [14, 2, 1, "", "update"]], "datafusion.udf.AggregateUDF": [[14, 2, 1, "", "__call__"], [14, 3, 1, "", "_udaf"], [14, 2, 1, "", "udaf"]], "datafusion.udf.ScalarUDF": [[14, 2, 1, "", "__call__"], [14, 3, 1, "", "_udf"], [14, 2, 1, "", "udf"]], "datafusion.udf.Volatility": [[14, 3, 1, "", "Immutable"], [14, 3, 1, "", "Stable"], [14, 3, 1, "", "Volatile"], [14, 2, 1, "", "__str__"]], "datafusion.udf.WindowEvaluator": [[14, 2, 1, "", "evaluate"], [14, 2, 1, "", "evaluate_all"], [14, 2, 1, "", "evaluate_all_with_rank"], [14, 2, 1, "", "get_range"], [14, 2, 1, "", "include_rank"], [14, 2, 1, "", "is_causal"], [14, 2, 1, "", "memoize"], [14, 2, 1, "", "supports_bounded_execution"], [14, 2, 1, "", "uses_window_frame"]], "datafusion.udf.WindowUDF": [[14, 2, 1, "", "__call__"], [14, 2, 1, "", "_create_window_udf"], [14, 2, 1, "", "_create_window_udf_decorator"], [14, 2, 1, "", "_get_default_name"], [14, 2, 1, "", "_normalize_input_types"], [14, 3, 1, "", "_udwf"], [14, 2, 1, "", "udwf"]]}, "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, 14, 16, 17, 22, 25, 27, 28, 29, 30], "0": [2, 3, 4, 5, 14, 19, 20, 21, 22, 23, 26, 27, 29, 31, 32, 39, 40], "00": 23, "01": [19, 23, 26], "01t00": 23, "03": 23, "04023": 4, "05": [23, 26], "06": [23, 26], "08": 23, "09": [19, 23], "1": [2, 3, 4, 5, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 40], "10": [4, 5, 14, 18, 19, 20, 22, 23, 26, 27, 28, 29, 31, 32, 40], "100": [4, 18, 19, 20, 29, 31, 32], "1000": [1, 5, 9, 21], "10000000": 30, "1024": [1, 5], "103": [18, 31, 32], "104": [18, 31, 32], "105": [18, 20, 31, 32], "107": 20, "109": [18, 31, 32, 40], "11": [18, 19, 20, 22, 23, 27, 29, 31, 32], "110": 20, "111": [18, 31, 32], "112": 20, "115": [18, 20, 31, 32], "12": [17, 18, 19, 20, 22, 23, 27, 29, 31, 32], "120": [4, 18, 20, 31, 32], "121": 20, "122": [18, 31, 32], "123": [18, 21, 31, 32], "12371": 4, "125": [4, 20, 23, 40], "128": 4, "13": [18, 20, 22, 23, 27, 29, 31, 32], "130": [18, 31, 32], "135": [18, 31, 32], "136": 20, "14": [18, 19, 20, 22, 23, 26, 27, 31, 32], "140": 20, "14097612086726": 21, "145": [18, 20, 31, 32], "149": 40, "15": [18, 19, 20, 22, 23, 26, 27, 29, 31, 32], "150": [18, 29, 31, 32], "158": 40, "159": [18, 31, 32, 40], "16": [19, 20, 22, 23, 27], "160": 40, "161": 40, "162": 40, "163": 40, "165": [23, 40], "17": [19, 20, 22, 23, 27, 29], "18": [19, 20, 22, 23, 27, 29], "19": [20, 22, 23, 40], "190": 40, "1902": 4, "1921": 23, "195": [18, 31, 32], "1970": 23, "2": [2, 3, 4, 5, 14, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 40], "20": [2, 4, 5, 14, 18, 20, 22, 23, 28, 29, 31, 32, 40], "200": 40, "2025": 23, "205": [18, 31, 32], "21": [19, 20, 22, 23, 29], "22": [2, 22, 31], "223": 40, "224": 4, "229": 40, "23": [19, 22, 29, 40], "23076923076923": 20, "2345": 4, "24": [19, 22], "25": [4, 18, 20, 22, 23, 29, 31, 32], "256": 4, "25806451612904": 20, "26": [22, 29], "27": 22, "28": [19, 22, 29], "28571428571429": 20, "29": 22, "3": [2, 4, 14, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 40], "30": [18, 20, 22, 28, 29, 31, 32], "309": [18, 23, 31, 32], "30t17": 23, "31": 22, "314": [18, 23, 31, 32], "318": [18, 23, 31, 32], "32": 22, "33": [19, 22], "333333333333332": 29, "333333333333336": 20, "34": [22, 23], "35": [18, 19, 20, 22, 26, 29, 31, 32], "36": [19, 22], "37": 22, "38": 22, "384": 4, "39": [18, 22, 31, 32, 40], "395": [18, 31, 32], "3rd": 4, "4": [2, 4, 14, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 40], "40": [4, 17, 18, 20, 22, 28, 31, 32], "405": [18, 23, 31, 32], "41": 22, "42": [20, 22, 29, 31], "42857142857143": 29, "43": [18, 22, 29, 31, 32, 39], "44": [18, 22, 31, 32], "45": [18, 20, 22, 23, 29, 31, 32], "4579": 23, "46": [20, 32], "47": 20, "4732": 23, "48": [18, 20, 31, 32], "49": [18, 23, 31, 32], "495": [18, 31, 32], "5": [2, 4, 14, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 40], "50": [4, 18, 20, 28, 31, 32], "51": [19, 20], "512": 4, "5129": 23, "52": [18, 20, 31, 32], "525": [18, 23, 31, 32], "53": 20, "530": [18, 31, 32], "531": 21, "534": [18, 23, 31, 32], "536576280z": 23, "54": [20, 22, 23], "55": [18, 20, 29, 31, 32], "56": 20, "58": [18, 20, 31, 32], "5811388300841898": 21, "59": [18, 31, 32], "6": [18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 40], "60": [4, 18, 20, 29, 31, 32], "62": [18, 31, 32], "625": [18, 23, 31, 32], "63": [18, 20, 31, 32], "630": [18, 31, 32], "634": [18, 23, 31, 32], "64": [17, 18, 29, 31, 32], "65": [18, 20, 22, 26, 29, 31, 32], "66": [19, 20], "666666666666668": 29, "66666666666667": 20, "666667": 4, "669": 21, "67": [20, 22], "7": [18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 40], "70": [18, 20, 29, 31, 32], "71": [20, 22], "72": 20, "721": 21, "73": 19, "732": 23, "75": [4, 18, 20, 31, 32], "76": 29, "774": 21, "77777777777777": 20, "78": [18, 19, 31, 32], "785714285714285": 20, "78571428571429": 20, "79": [18, 19, 31, 32], "8": [18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33], "80": [4, 18, 20, 29, 31, 32], "803": 21, "81": 19, "82": [18, 31, 32], "83": [18, 20, 31, 32], "832": 21, "833333333333336": 20, "84": [18, 29, 31, 32], "85": [18, 20, 31, 32], "855": 23, "86": 20, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [3, 5], "88888888888889": 20, "9": [4, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 40], "90": [4, 18, 20, 29, 31, 32], "91": 20, "92": 19, "94": [19, 26], "95": [19, 20, 29, 40], "96": [19, 20], "972": 23, "98": [20, 40], "A": [1, 2, 3, 4, 5, 6, 11, 13, 14, 19, 21, 25, 29, 39], "AND": [2, 3, 4, 5, 14], "As": [4, 5, 14, 16, 22, 26, 31], "At": [4, 16], "BY": 14, "Be": 2, "By": [2, 16, 17, 20], "For": [1, 2, 4, 13, 14, 16, 17, 20, 22, 23, 25, 26, 27, 32], "INTO": [1, 5], "If": [1, 2, 3, 4, 5, 6, 9, 14, 16, 17, 20, 23, 25, 27, 29, 32, 39], "In": [5, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 40], "It": [1, 2, 3, 4, 5, 14, 16, 18, 19, 20, 22, 25, 33, 38], "Its": 18, "No": 2, "Not": [3, 5], "OR": [3, 4, 5], "On": [2, 16, 31], "One": [2, 3, 16, 20, 29], "That": [3, 5, 33], "The": [1, 2, 4, 5, 7, 8, 9, 11, 13, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31], "Then": 27, "There": [4, 23, 27], "These": [4, 5, 12, 14, 20, 22, 30], "To": [2, 4, 16, 17, 22, 23, 26, 27, 29, 31, 32, 33, 39], "With": [3, 5, 32, 33], "__add__": [3, 5], "__aiter__": [5, 12], "__and__": [3, 5], "__anext__": [5, 12], "__arrow_c_array__": [1, 33], "__arrow_c_stream__": [1, 2, 33], "__call__": [5, 14], "__datafusion_table_provider__": [1, 16, 39], "__eq__": [3, 5], "__ge__": [3, 5], "__getitem__": [2, 3, 5], "__gt__": [3, 5], "__init__": [5, 14, 27], "__invert__": [3, 5], "__iter__": [5, 12], "__le__": [3, 5], "__lt__": [3, 5], "__mod__": [3, 5], "__mul__": [3, 5], "__ne__": [3, 5], "__next__": [5, 12], "__or__": [3, 5], "__radd__": [3, 5], "__rand__": [3, 5], "__repr__": [2, 3, 5, 11], "__richcmp__": [3, 5], "__rmod__": [3, 5], "__rmul__": [3, 5], "__ror__": [3, 5], "__rsub__": [3, 5], "__rtruediv__": [3, 5], "__str__": 14, "__sub__": [3, 5], "__truediv__": [3, 5], "__version__": 32, "_aggreg": 4, "_create_window_udf": [5, 14], "_create_window_udf_decor": [5, 14], "_get_default_nam": [5, 14], "_intern": [0, 2, 3, 5, 11, 12, 13], "_normalize_input_typ": [5, 14], "_null_treat": 3, "_order_bi": 3, "_partition_bi": 3, "_r": [5, 14], "_raw_plan": [5, 11], "_repr_html_": 2, "_sum": [5, 14, 27], "_to_pyarrow_typ": [3, 5], "_udaf": [5, 14], "_udf": [5, 14], "_udwf": [5, 14], "_window_fram": 3, "_window_funct": 4, "a0": 22, "a_siz": 22, "ab": 4, "abc": 6, "abi": 16, "abi3": 17, "abi_st": 16, "abil": 31, "abilti": 31, "abl": [5, 11], "about": [13, 16, 18, 29, 30], "abov": [4, 16, 20, 29], "absolut": 4, "abstract": [5, 6, 14, 22, 27], "accept": [1, 3, 5, 33], "access": [5, 9, 16, 22, 31], "access_key_id": 31, "account": 31, "accum": [5, 14], "accumul": [5, 14, 27], "achiev": 18, "aco": 4, "acosh": 4, "acronym": 16, "across": [14, 16, 22], "act": [5, 11], "activ": [16, 17], "actual": 2, "ad": 2, "adapt": 16, "add": [1, 2, 3, 4, 16, 17], "add_3": 2, "addit": [2, 3, 4, 5, 13, 14, 16, 17, 27, 31], "addition": [16, 19], "adhoc": 17, "adopt": 16, "advanc": 31, "advantag": [16, 17, 18], "affect": [14, 20], "after": [2, 4, 14, 27], "ag": 22, "against": [1, 3, 4, 14, 16, 18, 28], "age_col": 22, "age_in_year": 22, "agg": 2, "aggreg": [1, 2, 3, 4, 5, 14, 19, 24], "aggregatefunct": 3, "aggregateudf": [1, 5, 14], "aim": 32, "albert": 22, "algorithm": [2, 4], "alia": [1, 2, 3, 4, 5, 19, 20, 22, 23, 26, 27, 29, 33], "alias": 17, "alic": 25, "all": [0, 1, 2, 4, 5, 14, 16, 17, 19, 20, 23, 25, 26, 27, 29, 31], "alloc": 2, "allow": [1, 5, 14, 16, 17, 18, 20, 22, 23, 27], "alpha": [27, 31], "alreadi": [4, 16], "also": [1, 2, 5, 14, 16, 17, 18, 20, 22, 23, 27, 29, 32, 40], "altern": [26, 35, 38], "alternate_a": 2, "alwai": 14, "amazons3": [10, 31], "amount": [2, 14], "an": [1, 2, 3, 4, 5, 9, 11, 13, 14, 16, 17, 19, 20, 21, 22, 25, 26, 27, 29, 31, 32, 33, 34, 35, 38], "analyt": 29, "analyz": [2, 3, 17], "ani": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 16, 20, 25, 27, 29, 31, 33], "anoth": [2, 4, 5, 9, 16], "anti": [2, 24], "apach": [1, 3, 4, 5, 16, 17, 18, 33], "apart": 18, "api": [1, 5, 11, 16, 17, 18, 23, 29, 30, 40], "appear": [3, 4, 5, 16], "append": [4, 27], "appli": 2, "applic": 16, "approach": [4, 20, 22], "appropri": [14, 17, 31], "approx_distinct": [4, 20], "approx_median": [4, 20], "approx_percentile_cont": [4, 20], "approx_percentile_cont_with_weight": [4, 20], "approxim": [4, 20], "ar": [1, 2, 3, 4, 5, 9, 11, 12, 14, 16, 17, 19, 20, 22, 24, 26, 27, 29, 31, 32, 33], "arbitrari": [2, 4], "arc": [4, 16, 39], "area": 16, "arg": [1, 2, 4, 5, 13, 14, 17], "argument": [2, 4, 5, 14, 20, 27], "around": [4, 17], "arrai": [1, 2, 3, 4, 5, 14, 20, 24, 27, 31, 33], "array1": 4, "array2": 4, "array_agg": [4, 20], "array_append": [4, 17], "array_cat": [4, 22], "array_concat": [4, 22], "array_dim": 4, "array_distinct": 4, "array_el": [3, 4, 5, 22], "array_empti": [4, 22], "array_except": 4, "array_extract": 4, "array_ha": 4, "array_has_al": 4, "array_has_ani": 4, "array_indexof": 4, "array_intersect": 4, "array_join": 4, "array_length": 4, "array_ndim": 4, "array_pop_back": 4, "array_pop_front": 4, "array_posit": 4, "array_prepend": 4, "array_push_back": 4, "array_push_front": 4, "array_remov": 4, "array_remove_al": 4, "array_remove_n": 4, "array_repeat": [4, 22], "array_replac": 4, "array_replace_al": 4, "array_replace_n": 4, "array_res": 4, "array_slic": 4, "array_sort": 4, "array_to_str": 4, "array_union": 4, "arrow": [1, 2, 3, 4, 5, 17, 18, 21, 31, 32, 36], "arrow_cast": [3, 4, 5, 23], "arrow_datafusion_python_root": 17, "arrow_typeof": 4, "arrowarrayexport": 1, "arrowstreamexport": 1, "arxiv": 4, "as_pi": [5, 14, 27], "ascend": [3, 4, 5, 20, 29], "ascii": 4, "asin": 4, "asinh": 4, "assembl": 1, "assign": [3, 4, 5], "assist": 17, "associ": [0, 1, 3, 4, 5, 16], "assum": [2, 4, 17, 31], "assumpt": 18, "async": [5, 12], "atan": 4, "atan2": 4, "atanh": 4, "atk": [18, 31, 32], "attack": [18, 20, 23, 29, 31, 32, 40], "attempt": [1, 2, 5, 14, 16, 17], "auto": 15, "autoapi": 15, "automat": [1, 5], "avail": [2, 20, 24, 27, 30, 39], "availbl": 29, "averag": [4, 14, 29], "avg": [4, 14, 20, 29], "avoid": [1, 5, 9], "avro": [1, 5, 9, 31, 36], "awar": [2, 26], "aws_access_key_id": 31, "aws_secret_access_kei": 31, "b": [2, 4, 21, 22, 27, 28, 31, 33], "back": [3, 16, 18, 33], "bar": 30, "base": [1, 2, 3, 4, 5, 7, 8, 9, 14, 15, 22, 25, 27], "base64": 4, "baseinputsourc": [6, 7, 8], "basi": [5, 14, 27], "basic": [19, 24, 26, 27], "basic_typ": 23, "batch": [1, 2, 5, 11, 12, 14, 21, 27, 28, 31, 33], "batch_arrai": 27, "batch_siz": [1, 5], "becaus": [3, 5, 27], "becca": 22, "beedril": [18, 29, 31, 32], "beedrillmega": [18, 29, 31, 32], "been": 16, "befor": [4, 17, 22, 27], "beforehand": [1, 5], "begin": [1, 3, 4, 5, 14], "beginnig": 4, "being": 2, "below": [19, 20, 31], "best": [1, 5, 16], "beta": 31, "better": 2, "between": [1, 3, 4, 5, 14, 16, 18, 19, 25, 27, 29], "betwen": 29, "bia": [5, 14], "bias_10": [5, 14], "biased_numb": [5, 14], "biasednumb": [5, 14], "bin": [4, 17], "binari": [3, 4, 5, 11, 16], "binaryexpr": [3, 5], "bind": [5, 18, 32], "bit": 4, "bit_and": [4, 20], "bit_length": 4, "bit_or": [4, 20], "bit_xor": [4, 20], "bitwis": [4, 22], "blake2": 4, "blake2b": 4, "blake3": 4, "blastois": [18, 31, 32], "blastoisemega": [18, 31, 32], "blob": [3, 5], "blog": 17, "blue": 22, "bob": 25, "bool": [1, 2, 3, 4, 5, 6, 7, 8, 9, 14], "bool_": 27, "bool_and": [4, 20], "bool_or": [4, 20], "boolean": [4, 24], "bootstrap": 17, "both": [2, 4, 5, 14, 16, 17, 22, 25], "bound": [3, 5, 14, 29, 39], "boundari": [14, 16, 29], "bow": 29, "box": 16, "bracket": 22, "break": 16, "bronz": 4, "brotli": 2, "btrim": 4, "bucket_nam": 31, "bug": [18, 20, 29, 31, 32], "build": [3, 4, 5, 16, 18, 19, 20, 29], "build_flag": 17, "build_tabl": [6, 7, 8], "builder": [3, 4, 20, 29], "built": [14, 16, 20, 22, 23, 27], "bulb": 23, "bulbafleur": 23, "bulbasaur": [18, 23, 29, 31, 32], "bulk": 16, "butterfre": [18, 29, 31, 32], "byte": [1, 4, 5, 11, 13], "c": [1, 2, 14, 16, 17, 18, 21, 31, 33], "cach": 2, "calcul": [2, 4, 14, 27], "call": [0, 1, 2, 3, 4, 5, 11, 12, 13, 14, 16, 19, 20, 22, 27, 33], "callabl": [2, 5, 14], "calll": 22, "can": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 14, 16, 17, 19, 20, 22, 26, 27, 28, 29, 30, 31, 32, 33, 39], "can_retir": 22, "cannot": 4, "canon": 16, "canonical_nam": [3, 5], "capit": [4, 26], "capsul": 16, "cardin": [4, 22], "carefulli": 16, "cargo": 17, "carlo": 22, "case": [2, 3, 4, 5, 14, 16, 20, 23, 26, 27, 29, 31], "case_build": 3, "casebuild": [3, 4], "cast": [2, 3, 4, 5, 24], "castabl": [3, 5], "catalog": [1, 5, 15], "caterpi": [18, 29, 31, 32], "caus": [1, 5, 17, 29, 33], "cbrt": 4, "cdatainterfac": 1, "ceil": 4, "certain": 14, "certainli": 17, "chain": 2, "challeng": 16, "chang": [14, 17, 22], "chansei": 20, "char": 23, "char_length": [4, 23], "charact": 4, "character_length": 4, "charizard": [18, 23, 29, 31, 32], "charizardmega": [18, 23, 29, 31, 32], "charli": 25, "charmand": [18, 23, 29, 31, 32], "charmeleon": [18, 23, 29, 31, 32], "check": [4, 22, 23], "checksum": 4, "children": [5, 11], "chr": 4, "chrono": 4, "ci": [16, 17], "citycab": 25, "class": 27, "classmethod": [1, 2], "classvar": [3, 5], "claus": [14, 29], "clean": 17, "clefabl": 29, "clefairi": [20, 29], "clone": [17, 39], "close": 29, "co": 4, "coalesc": [4, 23], "code": [4, 16, 23], "codebas": 17, "coeffici": 4, "coerc": 4, "col": [2, 3, 4, 5, 14, 19, 20, 22, 23, 26, 27, 28, 29, 33, 40], "col1": 14, "col_attack": 20, "col_diff": 27, "col_spe": 20, "col_type_1": 20, "col_type_2": 20, "collect": [2, 18, 19, 21, 28, 33, 40], "collect_partit": 2, "color": 22, "column": [1, 2, 3, 4, 5, 9, 14, 19, 20, 21, 23, 24, 25, 27, 29, 40], "column_a": 3, "column_nam": [3, 5], "com": [3, 4, 5, 17], "combin": [2, 4, 22, 25, 26, 27], "come": [31, 37], "command": [1, 5, 17], "common": [3, 4, 5, 6, 7, 8, 20, 23, 25, 29, 33], "commun": [16, 17], "compar": [4, 29], "comparison": [3, 5, 20], "compat": [16, 22], "compil": [16, 22], "complet": [3, 4, 5, 6, 16, 17, 27, 39], "complex": [2, 18, 23], "complic": 2, "compon": 4, "compos": 4, "compress": [1, 2, 5, 9], "compression_level": 2, "comput": [2, 3, 4, 5, 14, 16, 22, 27], "concat": 4, "concat_w": 4, "concaten": [4, 22], "concatenated_arrai": 22, "concept": [1, 2, 3, 5, 22], "concis": 17, "concurr": [1, 5], "condit": 24, "config": [1, 5, 17, 30], "config_intern": [1, 5], "config_opt": [1, 5], "configur": [1, 5, 17], "conflict": [1, 5, 9], "conjunct": 2, "connect": [1, 19], "consecut": 4, "consid": 4, "consist": 4, "consol": 2, "construct": [3, 5, 14, 27], "constructor": [0, 2, 3, 5, 11, 12, 13, 14], "consum": [6, 13, 33], "contain": [2, 4, 5, 11, 14, 15, 16, 17, 20, 22, 25, 27], "content": [17, 24], "context": [4, 5, 9, 11, 13, 15, 28, 30, 33, 40], "continu": [4, 16], "contribut": 17, "control": [1, 5, 20, 29], "conveni": [5, 14, 31], "convent": 16, "convers": [16, 17], "convert": [1, 2, 3, 4, 5, 11, 12, 13, 14, 16, 19, 21, 22, 23, 27, 28, 40], "copi": [16, 17, 18, 27, 33], "core": [2, 3, 5, 16], "corr": [4, 20], "correctli": [2, 14], "correl": 4, "correspond": [4, 25], "cosh": 4, "cosin": 4, "cost": 18, "costli": 14, "cot": 4, "cotang": 4, "could": [2, 3, 5, 16], "count": [2, 4, 20, 21], "count_star": 4, "counterpart": [4, 16], "coupl": [16, 29], "covar": 4, "covar_pop": [4, 20], "covar_samp": [4, 20], "covari": 4, "cover": [19, 23, 30], "cpython": 17, "crate": 16, "creat": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 22, 28, 30, 33, 40], "create_datafram": [1, 27, 31], "create_dataframe_from_logical_plan": 1, "creatememoryt": 3, "createview": 3, "credenti": 31, "criteria": [4, 29], "cstream": 16, "cstring": [16, 39], "csv": [1, 2, 5, 9, 16, 18, 20, 23, 29, 31, 32, 36, 40], "ctx": [1, 4, 5, 11, 13, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40], "cube": 4, "cubon": 20, "cume_dist": [4, 14, 29], "cumul": 4, "curr_valu": 27, "current": [2, 3, 4, 5, 11, 14, 16, 23, 27, 29], "current_d": 4, "current_tim": 4, "custom": [1, 5, 6, 11, 16, 25, 27, 36], "customer_id": 25, "d": [2, 14, 33], "dai": [4, 23], "dant": 22, "dark": 20, "data": [0, 1, 2, 3, 4, 5, 9, 11, 14, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 32, 33, 34, 37, 39], "data_typ": 4, "databas": [0, 5, 22], "dataflow": [5, 11], "datafram": [1, 3, 4, 5, 9, 11, 12, 14, 15, 18, 20, 21, 22, 23, 25, 26, 27, 28, 29, 32, 33, 40], "datafrm": 2, "datafus": [15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40], "datafusion_df": 31, "datafusion_table_provid": [16, 39], "dataset": [1, 23, 29, 31, 32], "datasourc": 6, "datastructur": [3, 5], "datatyp": [2, 3, 5, 14], "datatypemap": [3, 5], "date": [4, 23], "date32": 4, "date_bin": 4, "date_part": [4, 23], "date_trunc": 4, "datepart": 4, "datetrunc": 4, "db": [0, 5], "ddl": [1, 5], "decid": [14, 16], "decim": 4, "decimal_plac": 4, "decod": 4, "decor": [5, 14], "def": [2, 5, 14, 18, 27, 31, 32], "default": [1, 2, 3, 4, 5, 8, 9, 14, 16, 17, 27, 29, 30], "default_valu": 4, "defens": [18, 23, 31, 32, 40], "defin": [1, 3, 5, 14, 16, 17, 23, 24, 29], "definit": [1, 3, 5, 14, 16, 19, 27], "degre": 4, "delet": [1, 5], "delimit": [1, 4, 5, 9], "delta": 16, "delta_t": 31, "deltalak": 31, "deltat": 31, "demonstr": [1, 27, 29, 32, 33], "dens": 4, "dense_rank": [4, 14, 29], "depend": [4, 16, 20, 27, 29], "deprec": [2, 4, 29], "deregister_t": 1, "descend": 4, "describ": [2, 4, 16, 19, 20, 21, 31], "descript": [4, 5, 14], "deseri": 13, "deserialize_byt": 13, "design": [16, 24], "desir": 4, "detafram": 1, "detail": [2, 3, 4, 5, 14, 17, 21], "determin": [2, 3, 4, 5, 27], "dev": 17, "develop": 16, "deviat": 4, "df": [1, 2, 3, 4, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 31, 32, 33, 34, 35, 37, 38, 40], "df_filter": 28, "df_view": 28, "dfschema": 5, "dict": [1, 2, 3, 5], "dictionari": [1, 2, 22, 28, 31], "differ": [2, 3, 4, 5, 11, 14, 16, 23, 27, 31], "difficult": 16, "digest": 4, "dimens": 4, "dimension": 2, "directli": [3, 4, 13, 31, 33], "directori": [1, 5, 17], "disabl": [1, 5], "discard": 2, "discuss": 16, "disk": [1, 5, 7, 8], "displai": [5, 11, 19, 21, 28, 32], "display_graphviz": [5, 11], "display_ind": [5, 11], "display_indent_schema": [5, 11], "display_nam": [3, 5], "distanc": 4, "distinct": [2, 3, 4, 5], "distinctli": 16, "distinguish": 16, "distribut": 4, "divid": 4, "divis": [3, 4, 5], "divisor": 4, "dml": [1, 5], "do": [1, 5, 14, 16, 17, 19, 20, 27, 29, 31, 39], "doc": [1, 4], "docstr": 17, "document": [1, 2, 3, 4, 5, 15, 16, 17, 19, 30, 32], "doe": [2, 4, 14, 16, 17, 29, 31], "doesn": 14, "dominant_typ": 23, "done": [2, 20, 27], "dot": [5, 11], "doubl": [26, 33], "double_func": [5, 14], "double_it": [5, 14], "double_udf": [5, 14], "down": [16, 29, 31], "downcast": 16, "download": [26, 32], "dragon": [18, 20, 23, 29, 31, 32], "dragonair": 29, "dratini": 29, "drop": [1, 2, 5], "droptabl": 3, "dtype": 2, "due": [1, 5, 9, 17], "duplic": [2, 4, 25], "dure": [5, 14, 17], "dynamic_lookup": 17, "e": [2, 4, 14, 27, 39], "each": [2, 3, 4, 5, 14, 16, 17, 20, 29], "earli": 16, "easi": [16, 37], "easier": [16, 23, 32], "easili": [3, 5, 16], "east": 31, "effect": [26, 32], "effort": 16, "either": [1, 2, 3, 5, 14, 16, 20], "electr": [20, 29], "element": [2, 3, 4, 5, 22], "ellipsi": [2, 5, 14], "els": 27, "else_expr": 3, "employe": 22, "empti": [1, 4, 5, 11, 20, 22], "empty_t": 1, "emptyrel": 3, "enabl": [1, 5, 16], "enable_url_t": 1, "encod": [4, 13], "encourag": 17, "end": [0, 2, 3, 4, 5, 11, 12, 14, 29], "end_bound": [3, 5], "ends_with": 4, "engin": [1, 5, 18, 19], "enough": 14, "ensur": 6, "entir": [14, 20, 27, 29], "entri": [2, 4, 20, 29], "enum": [2, 3, 5, 14], "enumer": 14, "enviorn": 17, "environ": [17, 18], "equal": [2, 3, 4, 5], "equival": [4, 14, 16, 20, 29], "error": [1, 3, 5, 17], "especi": 17, "essenti": [5, 12, 21], "etc": [1, 3, 5, 7, 8, 14], "eval_rang": 14, "evalu": [2, 3, 4, 5, 14, 19, 20, 22, 27, 29], "evaluate_al": [5, 14, 27], "evaluate_all_with_rank": [14, 27], "even": [1, 5, 16, 25], "everi": [4, 5, 14], "everyth": [7, 8], "ex": [3, 5, 26], "exact": 16, "exactli": [2, 29], "examin": [3, 5], "exampl": [1, 2, 3, 4, 5, 11, 14, 16, 19, 20, 22, 23, 25, 27, 28, 29, 31, 32, 39], "excel": 16, "except": [2, 3, 4, 5, 22], "except_al": 2, "exclud": [2, 25], "execut": [1, 2, 5, 14, 17, 18, 19, 30, 33], "execute_stream": [2, 5, 12], "execute_stream_partit": 2, "execution_plan": 2, "executionplan": [1, 2, 5, 11], "exeggcut": 20, "exist": [1, 2, 3, 4, 5, 16], "exp": 4, "exp_smooth": 27, "expand": 2, "expect": [3, 4, 5, 14, 16, 22, 27, 29], "expens": 2, "experi": 17, "explain": [2, 3], "explan": [2, 19], "explicit": 30, "explicitli": [5, 14], "expon": 4, "exponenti": 4, "exponentialsmooth": 27, "export": [1, 2, 16, 17, 36], "expos": [1, 16, 31, 39], "expr": [1, 2, 4, 5, 9, 14, 15, 29], "expr1": 4, "expr2": 4, "express": [2, 3, 4, 5, 14, 20, 23, 24, 27, 29], "exprfuncbuild": [3, 5], "extend": [4, 6, 16], "extens": [1, 3, 5, 9], "extract": [3, 4, 5, 23], "extraenv": 17, "f": [3, 19, 20, 22, 23, 29, 31], "face": 16, "fact": [16, 27], "factori": [4, 5, 14], "fail": 17, "fair": [1, 5], "fairi": [20, 29], "fals": [2, 3, 4, 5, 14, 16, 17, 18, 22, 23, 26, 27, 30, 31, 32, 39], "familiar": 17, "far": 2, "faster": [4, 14], "featur": [4, 16, 17, 31, 33], "fetch": 17, "few": [16, 17, 19], "ffi": 31, "ffi_": 16, "ffi_provid": 16, "ffi_tableprovid": [1, 16, 39], "field": [2, 4, 23], "fight": [20, 29], "file": [1, 2, 5, 7, 8, 9, 13, 16, 17, 18, 19, 26, 32, 34, 35, 37, 38], "file_compression_typ": [1, 5, 9], "file_extens": [1, 5, 9], "file_partition_col": [1, 5, 9], "file_sort_ord": [1, 5, 9], "filenam": 17, "fill": [3, 4, 5, 29], "fill_nan": [3, 5], "fill_nul": [3, 5], "filter": [2, 3, 4, 5, 11, 19, 22, 28, 29, 31], "final": [19, 27], "find": [4, 16, 17, 19, 20, 29], "find_in_set": 4, "finish": [3, 20], "fire": [18, 20, 23, 31, 32], "first": [1, 2, 3, 4, 5, 16, 17, 19, 20, 22, 29, 32], "first_1": 20, "first_2": 20, "first_arrai": 4, "first_valu": [4, 14, 20], "fix": 14, "flag": [4, 14, 17], "flatten": 4, "fleur": 23, "float": [3, 4, 5, 14, 27], "float64": [5, 14, 23, 27], "floor": 4, "flow": [5, 11], "flower": 23, "fly": [18, 20, 29, 31, 32], "fn": 39, "focus": 16, "folder": [16, 39], "follow": [1, 2, 3, 4, 5, 14, 16, 17, 19, 20, 22, 23, 25, 27, 29, 31, 32], "foo": 30, "fora": [3, 5], "foreign": 16, "foreign_provid": 16, "foreigntableprovid": 16, "form": [2, 4, 5, 11, 20], "format": [1, 2, 4, 5, 11, 31, 34, 37], "format_argu": 4, "formatt": 4, "forth": 33, "found": [4, 17, 29, 39], "four": 27, "frame": [3, 4, 5, 14, 21, 27], "frame_bound": 3, "framework": 17, "free": [1, 5], "frequent": [16, 17], "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 40], "from_arrai": [27, 31], "from_arrow": [1, 31, 33], "from_arrow_t": 1, "from_panda": 1, "from_polar": [1, 31], "from_proto": [5, 11], "from_pydict": [1, 21, 22, 25, 27, 28, 31, 33], "from_pylist": [1, 25, 31], "from_str": 2, "from_substrait_plan": 13, "from_unixtim": 4, "from_val": 4, "fuction": 14, "full": [2, 4, 24, 40], "fulli": 17, "func": [2, 5, 14], "function": [1, 2, 3, 10, 12, 14, 15, 16, 19, 21, 24, 31, 38], "function_to_impl": [14, 27], "further": 16, "futher": 4, "futur": [14, 29], "g": [4, 14], "gamma": 31, "gcd": 4, "gener": [3, 5, 11, 12, 13, 14, 15, 16, 17, 18, 31, 32], "geodud": 29, "get": [2, 5, 11, 14, 17, 22, 31], "get_default_level": 2, "get_frame_unit": [3, 5], "get_lower_bound": [3, 5], "get_offset": 3, "get_rang": 14, "get_upper_bound": [3, 5], "getenv": 31, "ghost": 20, "gil": 18, "git": 17, "github": [3, 4, 5, 17], "give": [4, 20, 26, 32], "given": [0, 1, 3, 4, 5, 14, 27], "glanc": 16, "global": [1, 5, 9], "global_ctx": 1, "go": [16, 21, 23], "goe": 16, "gold": 4, "good": [16, 17], "googlecloud": [10, 31], "graph": [5, 11], "graphic": [5, 11], "graphviz": [5, 11], "grass": [18, 20, 23, 29, 31, 32], "great": 17, "greater": [3, 4, 5], "greatest": 4, "greatli": 27, "greedi": [1, 5], "green": 22, "grimer": 29, "ground": 20, "group": [1, 2, 3, 4, 5, 9, 14, 19, 20, 21, 29], "group_bi": [2, 20], "groupingset": 3, "guarante": 16, "guid": [1, 24, 30, 32], "gzip": 2, "ha": [1, 2, 4, 5, 14, 16, 22, 26, 31], "handl": [12, 20, 29], "happen": [17, 33], "has_head": [1, 5, 9], "hash": [2, 4], "haskel": 21, "have": [1, 2, 4, 5, 9, 13, 14, 16, 17, 18, 20, 25, 27, 29, 39], "head": 2, "header": [1, 2, 5, 9], "healthi": 17, "heavy_red_unit": 22, "help": [1, 5, 9, 17, 22, 23], "helper": [5, 14], "henc": 14, "here": [4, 16, 23, 26, 29, 32, 33, 40], "hex": 4, "hexadecim": 4, "high": [3, 5], "higher": [2, 3, 5], "highli": 27, "highlight": 32, "hint": [1, 17], "homebrew": 17, "host": 1, "how": [1, 2, 3, 4, 5, 14, 16, 20, 21, 24, 25, 27, 29, 30, 32], "howev": [14, 27], "hp": [18, 31, 32], "html": [1, 4], "http": [1, 3, 4, 5, 10, 11, 13, 31], "hyperbol": 4, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 29, 31, 32, 33, 34, 35, 37, 38], "ic": 20, "id": [1, 17, 25], "ideal": 16, "ident": 31, "identifi": [1, 3, 5, 16, 26], "idx": [14, 27], "ignor": [4, 17, 20, 29], "ignore_nul": [20, 29], "ilik": 3, "immut": [5, 14, 27], "impl": 39, "implement": [1, 2, 14, 17, 27, 31, 33, 39], "import": [1, 3, 5, 14, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 40], "improv": [1, 5, 14, 27], "in_list": [4, 23], "includ": [1, 2, 3, 5, 16, 20, 23, 25], "include_rank": [14, 27], "inclus": [1, 3, 4, 5], "incorpor": 27, "increas": [1, 5, 20], "increment": [14, 16, 27], "indent": [5, 11], "independ": [4, 29], "index": [3, 4, 5, 14, 22], "indic": [3, 4, 22], "individu": [22, 29], "infer": [1, 5, 9], "inform": [1, 2, 3, 5, 6, 13, 16, 27], "information_schema": [1, 5], "init": 17, "initcap": 4, "initi": 4, "inlin": 14, "inlist": 3, "inner": [2, 24], "input": [1, 2, 4, 5, 9, 11, 14, 15, 22, 27], "input_item": [6, 7, 8], "input_typ": [5, 14], "inputsourc": 6, "insert": [1, 5], "instanc": [1, 4, 5, 14, 19], "instanti": [5, 14], "instead": [3, 4, 5, 16], "insubqueri": 3, "int": [1, 2, 3, 4, 5, 9, 11, 14, 27], "int32": [5, 14, 23], "int64": [5, 14, 21, 23, 27], "integ": [3, 4, 5, 22], "integr": [16, 32, 39], "intend": 16, "interact": [16, 22], "intercept": 4, "interchang": 37, "interest": 22, "interfac": [1, 4, 16, 18, 19, 27, 29, 31, 33, 39], "intermedi": [5, 14], "intern": 27, "intersect": [2, 4], "interv": 4, "into_view": 2, "intro": 17, "introduc": [17, 19], "introduct": 19, "intuit": 16, "invers": 4, "invoc": 14, "io": [1, 5, 13, 15], "is_caus": 14, "is_correct_input": [6, 7, 8], "is_current_row": 3, "is_empti": 22, "is_follow": 3, "is_not_nul": [3, 5, 20], "is_nul": [3, 5, 27], "is_null_arr": 27, "is_preced": 3, "is_unbound": 3, "isfals": 3, "isnan": 4, "isnotfals": 3, "isnotnul": [3, 5], "isnottru": 3, "isnotunknown": 3, "isnul": 3, "issu": [4, 17, 29], "istru": 3, "isunknown": 3, "iszero": 4, "iter": [2, 5, 12], "iterat": 2, "its": [2, 4, 5, 11, 14, 16, 18, 29], "itself": 22, "ivi": 23, "ivyfleur": 23, "ivysaur": [18, 23, 29, 31, 32], "java": 21, "javascript": 37, "jigglypuff": 29, "join": [1, 2, 3, 5, 11, 24], "join_kei": [2, 25], "join_on": 2, "joinconstraint": 3, "jointyp": 3, "json": [1, 2, 5, 9, 31, 36], "jupyt": 32, "jupyterlab": 32, "jynx": 20, "kakuna": [18, 29, 31, 32], "keep": [17, 28], "kei": [1, 2, 3, 5, 16, 19, 22, 25], "kind": [0, 5, 16, 17], "know": [1, 5], "known": 22, "kwarg": [6, 7, 8], "kwd": [2, 14], "l179": [3, 5], "lab": 32, "label": 2, "lack": 18, "lag": [4, 14, 29], "lambda": [5, 14], "languag": [1, 5, 11, 16], "larg": [2, 23], "large_trip_dist": 26, "last": [4, 29], "last_valu": [4, 20, 29], "last_with_nul": 29, "last_wo_nul": 29, "later": [31, 32, 39], "latest": [4, 16], "latter": 1, "lazi": 19, "lcm": 4, "lead": [4, 14, 16, 27, 29, 31], "leaf": [5, 11], "leak": 18, "learn": [16, 21, 29], "least": [4, 14, 20, 25, 27], "leav": [5, 11], "left": [2, 4, 23, 24], "left_on": [2, 25], "leftmost": 4, "legendari": [18, 31, 32], "len": [14, 23], "length": [4, 5, 14], "less": [3, 4, 5], "lesson": 16, "let": [16, 30, 39], "letter": [4, 26], "level": [2, 4, 16], "levenshtein": 4, "leverag": 16, "lib": 17, "lib_dir": 17, "lib_nam": 17, "librari": [5, 6, 16, 18, 32, 33, 39], "lightweight": 37, "like": [1, 3, 4, 5, 6, 16, 17, 18, 23], "limit": [2, 3, 4, 17, 19, 21, 23], "line": [1, 2, 5, 9, 11, 16], "linear": [4, 20], "link": [17, 29], "lint": 17, "linter": 17, "list": [0, 1, 2, 3, 4, 5, 9, 11, 14, 20, 27, 28, 29, 31], "list_append": [4, 17], "list_cat": 4, "list_concat": 4, "list_dim": 4, "list_distinct": 4, "list_el": 4, "list_except": 4, "list_extract": 4, "list_indexof": 4, "list_intersect": 4, "list_join": 4, "list_length": 4, "list_ndim": 4, "list_posit": 4, "list_prepend": 4, "list_push_back": 4, "list_push_front": 4, "list_remov": 4, "list_remove_al": 4, "list_remove_n": 4, "list_repeat": 4, "list_replac": 4, "list_replace_al": 4, "list_replace_n": 4, "list_res": 4, "list_slic": 4, "list_sort": 4, "list_to_str": 4, "list_union": 4, "listingt": 1, "lit": [2, 3, 4, 5, 17, 19, 20, 22, 26, 29, 33], "liter": [2, 3, 5, 23, 24, 26, 28], "ll": [23, 25, 29], "ln": 4, "local": [1, 16, 17], "localfilesystem": [10, 31], "locat": [1, 7, 15], "locationinputplugin": [7, 8], "lock": 18, "log": [4, 23], "log10": 4, "log2": 4, "logarithm": 4, "logic": [1, 2, 3, 5, 11, 13, 19, 20, 26], "logical_plan": [2, 13], "logicalplan": [1, 2, 3, 5, 11, 13], "lonely_trip": 26, "long": 16, "long_tim": 22, "longer": 4, "look": [17, 30], "low": [3, 5, 20], "low_passenger_count": 26, "lower": [3, 4, 5, 14, 23, 26], "lowercas": [2, 4], "lowest": [16, 20], "lpad": 4, "ltrim": 4, "lz4": 2, "lz4_raw": 2, "lzo": 2, "m": 17, "mac": 17, "machin": 17, "machop": 29, "made": 26, "magikarp": 20, "magnemit": 29, "mai": [1, 2, 4, 5, 9, 14, 16, 27, 31, 32, 33], "main": [1, 19], "maintain": [1, 2, 16, 19], "major": [17, 18], "make": [4, 16, 17, 18, 23], "make_arrai": 4, "make_d": 4, "make_list": 4, "manag": [1, 5, 17], "mani": [16, 20, 27], "manipul": [1, 5, 23], "mankei": 29, "manner": 16, "manual": 17, "map": 2, "map_err": 39, "match": [2, 3, 4, 25], "math": 20, "mathemat": [24, 26], "maturin": 17, "max": [4, 20, 21], "maximum": [1, 4, 5, 9], "md5": 4, "mean": [4, 16, 17, 21], "meaning": [4, 26], "meant": [5, 11], "medal": 4, "median": [4, 20, 21], "member": 17, "memoiz": 14, "memori": [1, 2, 5, 11, 14, 18], "mention": 22, "merg": [5, 14, 25, 27], "metadata": [1, 5, 9], "metapod": [18, 20, 29, 31, 32], "method": [1, 2, 4, 5, 14, 19, 21, 25, 27, 28], "metric": 2, "metrorid": 25, "microsecond": 4, "microsoftazur": [10, 31], "might": [14, 20], "millisecond": 4, "min": [4, 20, 21], "minimum": [1, 4, 5], "model": 2, "modifi": [2, 19], "modify_df": 2, "modul": 29, "modulo": [3, 5], "moment": [2, 16], "month": [4, 23], "more": [1, 2, 3, 5, 13, 16, 17, 20, 23, 27, 30], "most": [14, 16, 22, 29, 32], "mostli": 17, "much": [14, 17], "multi": 18, "multipl": [1, 2, 3, 4, 5, 14, 20, 23, 25, 27, 29, 31], "must": [1, 2, 3, 4, 5, 14, 20, 22, 26, 27, 29, 33, 39], "my_capsul": 16, "my_delta_t": 31, "my_provid": 16, "my_tabl": [28, 39], "my_udaf": 27, "myaccumul": 27, "mytableprovid": [16, 39], "myusernam": 17, "n": [2, 4], "name": [0, 1, 2, 3, 4, 5, 9, 14, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 39], "name_pair": 4, "named_expr": 2, "named_struct": [4, 17], "nan": [3, 4, 5], "nanosecond": 4, "nanvl": 4, "narrowli": 16, "nativ": 16, "natur": 4, "nearest": 4, "necessari": 16, "need": [1, 2, 3, 5, 9, 14, 16, 17, 27, 29, 32], "neg": [3, 4], "negat": [3, 4, 5, 23], "new": [1, 2, 3, 4, 5, 14, 16, 17, 22, 24, 39, 40], "new_bound": [16, 39], "new_err": 39, "new_nam": 2, "next": [4, 5, 12], "node": [5, 11], "non": [2, 3, 4, 20, 29], "none": [1, 2, 3, 4, 5, 9, 13, 14, 16, 27, 29, 31], "normal": 20, "not_red_unit": 22, "notat": [22, 37], "note": [1, 2, 3, 5, 19, 22, 33], "notebook": 32, "now": [4, 14, 23, 28], "nr": 21, "nth_valu": [4, 14, 20], "ntile": [4, 29], "null": [2, 3, 4, 5, 21, 25, 27, 33], "null_count": 21, "null_first": 4, "null_treat": [3, 4, 5, 20, 29], "nullabl": 2, "nullif": [4, 23], "nulls_first": [3, 4, 5], "nulltreat": [3, 4, 5, 20, 29], "num": [2, 4], "num_centroid": 4, "num_el": 22, "num_row": [5, 14, 27], "number": [1, 2, 4, 5, 9, 11, 14, 17, 22, 23, 29], "numebr": 4, "numer": [2, 4], "nvl": 4, "o": 31, "object": [1, 2, 3, 5, 10, 16, 22, 27, 30, 33, 37], "object_stor": [5, 15, 31], "objectstor": 1, "obtain": [6, 18], "obviou": 16, "occur": [5, 14, 33], "occurr": 4, "octet_length": 4, "oddish": 29, "offend": 17, "offer": [23, 40], "offici": 16, "offset": [2, 3], "often": 29, "old": 2, "old_nam": 2, "older": 31, "olymp": 4, "omit": 25, "on_expr": 2, "onc": [4, 6, 14, 39], "one": [2, 3, 4, 5, 14, 16, 20, 25, 27, 29, 31], "onli": [1, 2, 3, 4, 5, 9, 14, 16, 20, 25, 27, 29], "onlin": [1, 2, 3, 4, 5, 16, 30], "op": [2, 3, 5], "oper": [1, 2, 3, 4, 5, 11, 12, 14, 16, 18, 20, 22, 26, 27, 29, 31, 33], "operand": [3, 5], "opt": 17, "optim": [2, 14, 16], "optimized_logical_plan": 2, "option": [1, 4, 5, 9, 14, 17, 20, 23, 30, 31, 32], "options_intern": [1, 5], "order": [1, 2, 3, 4, 5, 6, 9, 14, 16, 22], "order_bi": [3, 4, 5, 20, 29], "org": [1, 4, 5, 11], "origin": [2, 4, 27], "other": [1, 2, 3, 4, 5, 14, 16, 17, 18, 22, 24], "otherwis": [3, 4], "our": [16, 17, 20, 32], "out": [2, 4, 16, 20, 21, 22, 23, 25, 26, 29, 32, 33, 40], "output": [2, 3, 5, 11, 14, 17, 20, 22, 27, 28], "over": [2, 3, 5, 14, 16, 18, 20, 29], "overhead": 14, "overlai": 4, "overlap": 4, "overrid": 27, "overridden": 20, "own": [6, 27], "pa": [1, 3, 5, 12, 14, 27, 31, 33], "packag": [4, 16, 17], "pad": 4, "page": [15, 16], "pair": 4, "panda": [1, 2, 19, 21, 31, 40], "pandas_df": 31, "para": 29, "parallel": [1, 5], "paramet": [1, 2, 3, 4, 5, 9, 13, 14, 17, 22, 24, 25], "parasect": 29, "parquet": [1, 2, 5, 9, 16, 18, 19, 26, 30, 31, 36], "parquet_prun": [1, 5, 9], "part": [4, 23], "particular": 4, "partit": [1, 2, 3, 4, 5, 9, 11, 14, 20], "partition_bi": [3, 4, 5, 29], "partition_count": [5, 11], "pass": [2, 5, 14, 16, 17, 21, 22, 27, 30, 31], "passenger_count": 26, "path": [1, 2, 5, 9, 13, 17, 31], "path_to_t": 31, "pathlib": [1, 2, 5, 9, 13], "pattern": [4, 16], "pc": [5, 14], "pcre": 4, "pd": 31, "peopl": 4, "per": [2, 14, 29], "percent": 4, "percent_rank": [4, 14, 29], "percentag": 4, "percentil": 4, "perform": [1, 2, 3, 4, 5, 14, 16, 17, 19, 20, 23, 27, 29, 31], "period": 16, "person": 17, "physic": [2, 5, 11, 19], "pi": 4, "pick": 4, "pinsir": 29, "pip": [18, 32], "pl": 31, "place": [4, 17, 32], "placehold": 3, "plan": [1, 2, 3, 5, 13, 14, 15, 18, 19], "plan_intern": 13, "planner": [5, 11], "pleas": 26, "plu": 4, "plugin": [6, 7, 8], "point": [4, 17], "pointer_width": 17, "poison": [18, 20, 29, 31, 32], "pokemon": [18, 19, 20, 23, 29, 31, 32, 40], "polar": [1, 2, 31], "polars_df": 31, "pool": [1, 5], "popul": 4, "popular": [23, 31], "portion": 16, "posit": [4, 20], "possibl": [3, 5, 14, 16, 27, 29], "post": 17, "potenti": [2, 5, 11], "pow": [4, 23], "power": [4, 23, 27, 29], "pr": 17, "practic": 16, "prece": 4, "preced": [3, 5, 14], "preceed": 29, "precis": 4, "predic": [1, 2, 5, 9], "prefer": 17, "prefix": [4, 16], "prepend": 4, "presenc": 23, "present": 25, "preserve_nul": 2, "prevent": 17, "previou": [4, 27, 29], "previous": 1, "primari": [7, 22], "print": [2, 5, 11, 28, 30], "printabl": [5, 11], "prior": [2, 31], "probabl": 20, "process": [14, 20, 29], "produc": [4, 5, 11, 13, 14, 16, 29], "product": 4, "program": 16, "programmat": [5, 11], "project": [2, 3, 5, 11, 16, 17, 33], "properti": [0, 3, 5, 11], "proto_byt": 13, "protobuf": [5, 11], "protocol": 1, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 14, 16, 19, 20, 23, 27, 29, 32, 36], "prune": [1, 5, 9], "psychic": 20, "public": [0, 5], "pull": 17, "pure": 17, "push": [17, 31], "pushdown_filt": 30, "put": 26, "py": [1, 2, 5, 13, 14, 16, 39], "pyarrow": [0, 1, 2, 3, 5, 9, 12, 14, 16, 21, 27, 31, 33, 40], "pycapsul": [1, 2, 16, 31, 33, 39], "pycapsuleinterfac": 1, "pymethod": 39, "pyo3": [16, 17], "pyo3_build_config": 17, "pyo3_config_fil": 17, "pyo3_print_config": 17, "pyobject": [3, 5], "pypi": 32, "pyproject": 17, "pyresult": 39, "pyruntimeerror": 39, "pyspark": 18, "pytabl": 16, "pytest": 17, "python": [1, 3, 5, 14, 21, 22, 27, 31, 32, 33, 39], "python3": 17, "python_valu": [3, 5], "pythontyp": [3, 5], "queri": [1, 5, 11, 13, 14, 16, 18, 19, 23, 28], "quick": 21, "quit": 38, "quot": 26, "r": [2, 3, 4, 5, 16, 17], "radian": 4, "rais": [2, 4], "random": [4, 14, 21, 22], "rang": [1, 2, 3, 4, 5, 14, 21, 22, 23, 27, 29, 30], "rank": [4, 14, 27, 29], "ranks_in_partit": 14, "rather": [4, 13], "ratio": 4, "raw": 3, "raw_sort": 3, "rawexpr": [3, 5], "rb": [5, 12], "re": 16, "read": [1, 5, 7, 8, 9, 13, 16, 30, 31, 32, 34, 35, 37, 38, 40], "read_avro": [1, 5, 9, 34], "read_csv": [1, 5, 9, 18, 19, 20, 29, 31, 32, 35], "read_json": [1, 5, 9, 37], "read_parquet": [1, 5, 9, 19, 26, 38], "read_tabl": 1, "reader": [1, 5, 9, 33], "realiti": 20, "reason": 17, "rebuild": 17, "receiv": [4, 14, 16], "recent": [29, 31], "recommend": [2, 16, 17, 27], "record": [1, 2, 5, 11, 12, 26, 27, 31, 33, 34], "record_batch": [1, 2, 5, 15], "record_batch_stream": [5, 12], "recordbatch": [1, 2, 5, 12, 27, 31], "recordbatchstream": [1, 2, 5, 12], "red": 22, "red_or_green_unit": 22, "red_unit": 22, "reduc": [17, 27], "ref": 4, "refer": [2, 4, 16, 19, 23, 40], "referenc": [1, 19], "regardless": 14, "regener": 17, "regex": 4, "regexp_count": 4, "regexp_lik": 4, "regexp_match": [4, 23], "regexp_replac": [4, 23], "region": 31, "regist": [1, 5, 6, 9, 16, 19, 24, 31, 39, 40], "register_avro": 1, "register_csv": [1, 23, 35, 40], "register_dataset": [1, 31], "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 31], "register_parquet": [1, 31, 38], "register_record_batch": 1, "register_t": [1, 2], "register_table_provid": [1, 31, 39], "register_udaf": 1, "register_udf": 1, "register_udwf": 1, "register_view": [1, 28], "regr_avgi": [4, 20], "regr_avgx": [4, 20], "regr_count": [4, 20], "regr_intercept": [4, 20], "regr_r2": [4, 20], "regr_slop": [4, 20], "regr_sxi": 4, "regr_sxx": [4, 20], "regr_syi": [4, 20], "regress": [4, 20], "regular": [4, 23], "rel": [4, 29], "relat": [5, 11, 25], "releas": [16, 29], "relev": 17, "reli": 17, "remain": 4, "remot": [7, 8], "remov": [1, 2, 4, 20], "renam": 2, "renamed_ag": 22, "repartit": [1, 2, 3, 5], "repartition_by_hash": 2, "repeat": [4, 22], "repeated_arrai": 22, "replac": 4, "repo": 17, "report": [2, 17], "repositori": [16, 31], "repres": [1, 2, 3, 4, 5, 9, 11, 12, 13, 19, 22, 27], "represent": [1, 2, 3, 4, 5, 9, 11], "request": [2, 17], "requested_schema": [1, 2], "requir": [2, 3, 14, 16, 23, 31], "reserv": [1, 5], "resolv": [17, 29], "resourc": 16, "respect": [2, 4, 20, 31], "respect_nul": [4, 20, 29], "result": [1, 2, 4, 5, 11, 12, 14, 18, 19, 20, 22, 25, 26, 27, 28, 29], "result_dict": 28, "retriev": [1, 3, 5, 25], "return": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 14, 22, 25, 27, 33], "return_typ": [5, 14], "reus": 16, "reusabl": 3, "revers": 4, "review": [16, 17], "rex": [3, 5], "rex_call_oper": [3, 5], "rex_call_operand": [3, 5], "rex_typ": [3, 5], "rextyp": [3, 5], "rfc3339": 4, "rh": [3, 5], "rhyhorn": 29, "right": [2, 4, 25], "right_on": [2, 25], "ritchi": 29, "robin": 2, "rock": 20, "roll": 29, "root": [4, 5, 11], "roption": 16, "round": [2, 4, 19], "rout": 16, "row": [1, 2, 3, 4, 5, 9, 14, 19, 20, 21, 22, 25, 27, 28, 29, 40], "row_numb": [4, 14, 29], "rpad": 4, "rresult": 16, "rstring": 16, "rtrim": 4, "rubi": 21, "run": [1, 2, 5, 9, 18, 28, 32], "runnabl": 17, "runtim": [1, 5, 14, 30], "runtimeconfig": 1, "runtimeenvbuild": [1, 5, 30], "rust": [4, 16, 18, 30, 31, 39], "rustc": 16, "rustflag": 17, "rustonomicon": 16, "rvec": 16, "s3": 31, "safe": 16, "safeti": 18, "same": [2, 4, 5, 14, 16, 19, 27], "sampl": [4, 21, 28], "saur": 23, "save": 14, "scalar": [3, 5, 14, 22, 24], "scalarsubqueri": 3, "scalarudf": [1, 5, 14], "scalarvalu": 14, "scalarvari": 3, "scan": [1, 5, 11], "schema": [0, 1, 2, 3, 5, 9, 11, 21], "schema_infer_max_record": [1, 5, 9], "schema_nam": [3, 5], "scheme": 2, "scienc": 23, "score": 4, "search": 4, "second": [4, 19, 20, 22], "second_arrai": 4, "secret_access_kei": 31, "section": [16, 19, 21, 24, 25, 29, 31], "see": [1, 2, 3, 4, 5, 12, 13, 14, 16, 17, 20, 22, 27, 29], "seen": [14, 20], "select": [1, 2, 3, 4, 5, 9, 14, 19, 22, 23, 24, 27, 28, 29, 33, 40], "select_column": 2, "self": [5, 12, 14, 27, 39], "semi": [2, 24], "sensit": 2, "separ": 4, "seper": 4, "sequenc": 2, "serd": 13, "seri": 22, "serial": [13, 34], "serialize_byt": 13, "serialize_to_plan": 13, "serv": 16, "session": [1, 5, 30, 32], "session_id": 1, "sessionconfig": [1, 5, 30], "sessioncontext": [1, 2, 4, 5, 6, 11, 13, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40], "sessioncontextintern": 1, "set": [0, 1, 3, 4, 5, 14, 16, 17, 19, 24, 27, 30], "sever": 26, "sha": 4, "sha224": 4, "sha256": 4, "sha384": 4, "sha512": 4, "sharabl": 16, "share": [16, 17, 19, 22, 33], "shift_offet": 4, "shift_offset": 4, "shot": 14, "should": [1, 3, 4, 5, 6, 9, 11, 13, 17, 20, 25, 27, 29], "show": [2, 16, 18, 19, 21, 22, 25, 27, 29, 31, 32, 39], "side": [4, 16], "sign": 4, "signific": 31, "significantli": 4, "signum": 4, "silver": 4, "similar": [4, 16, 19, 22, 29], "similarto": 3, "simpl": [4, 17, 26, 37, 38], "simplest": [14, 27], "simpli": [2, 5, 14, 16, 17], "simplifi": 29, "sin": 4, "sinc": [2, 20, 27, 31], "sine": 4, "singl": [1, 2, 3, 4, 5, 11, 14, 20, 22, 27, 29], "sinh": 4, "size": [1, 2, 4, 5, 22], "skip": [1, 2, 5, 9, 14], "skip_metadata": [1, 5, 9], "slice": 4, "slope": 4, "slow": 2, "slower": 2, "slowest": 27, "slowpok": 29, "small": 31, "smallest": [14, 20], "smooth_a": 27, "snappi": 2, "snorlax": 29, "so": [1, 2, 5, 16, 17, 26, 27, 29, 33, 39], "softwar": [5, 11, 16], "some": [4, 14, 16, 17, 20, 23, 29, 32, 39], "sometim": [1, 5, 16, 31], "soon": [4, 31], "sort": [1, 2, 3, 4, 5, 9, 20, 29], "sortexpr": [1, 2, 3, 4, 5], "sound": 16, "sourc": [1, 4, 5, 6, 7, 8, 9, 16, 17, 19, 32, 33, 39], "sp": [18, 31, 32], "space": 4, "sparingli": 27, "special": 14, "specif": [3, 5, 11, 21, 22, 29], "specifi": [1, 2, 3, 4, 5, 22, 25, 27, 29], "speed": [2, 18, 20, 29, 31, 32], "sphinx": 15, "spill": [1, 5], "spillabl": [1, 5], "split": [4, 27], "split_part": 4, "sql": [1, 5, 11, 13, 14, 18, 19, 22, 26, 28], "sql_with_opt": 1, "sqloption": [1, 5], "sqltabl": [6, 7, 8], "sqltype": [3, 5], "sqrt": 4, "squar": 4, "squi": 23, "squirtl": [18, 23, 29, 31, 32], "src": [3, 5, 17], "stabl": [14, 16, 27], "standard": [4, 16], "start": [3, 4, 5, 14, 22, 26, 29, 32], "start_ag": 22, "start_bound": [3, 5], "started_young": 22, "starts_with": 4, "state": [1, 5, 14, 19, 27], "state_typ": [5, 14], "statement": [1, 3, 4, 5, 19, 40], "static": [3, 5, 11, 13, 14], "statist": [2, 20, 21], "std": 21, "stddev": [4, 20], "stddev_pop": [4, 20], "stddev_samp": 4, "steel": 20, "step": [4, 16], "still": [27, 31], "stop": 4, "storag": 31, "store": [1, 3, 5, 10], "str": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14], "str_lit": 23, "straightforward": [34, 35], "stream": [1, 2, 5, 12, 16], "strftime": 4, "stride": 4, "string": [2, 3, 4, 5, 11, 14, 16, 17, 20, 21, 22, 24], "string1": 4, "string2": 4, "string_agg": [4, 20], "string_list": 4, "string_liter": [3, 5, 23], "string_view": [3, 5, 33], "strong": 18, "strpo": 4, "struct": [1, 3, 4, 5, 16, 24, 33], "structarrai": 33, "structur": [5, 11, 16], "style": [16, 22], "sub": [3, 5], "subfield": [3, 4, 5], "submit": 17, "submodul": 17, "subqueri": 3, "subqueryalia": 3, "subset": 26, "substr": 4, "substr_index": 4, "substrait": [5, 15], "subtract": [3, 5], "suffici": [1, 5], "suffix": 4, "suggest": 31, "sum": [4, 5, 14, 20, 27], "sum_bias_10": [5, 14], "summar": [2, 5, 14], "summari": [2, 20, 21], "support": [2, 3, 4, 5, 11, 13, 16, 25, 31], "supports_bounded_execut": [14, 27], "suppos": [4, 16, 20], "suppress_build_script_link_lin": 17, "sure": 17, "symbol": 2, "sync": 17, "synchon": 16, "syntax": 4, "system": [1, 5, 16, 17], "t": [4, 14, 26], "t1": 14, "tabl": [0, 1, 2, 5, 6, 7, 8, 9, 11, 16, 19, 21, 23, 25, 32, 33, 35, 36, 38], "table_exist": 1, "table_nam": [6, 7, 8], "table_partition_col": [1, 5, 9], "table_provid": 1, "tableprovid": [16, 39], "tableproviderexport": 1, "tablescan": 3, "tail": 2, "take": [2, 14, 16, 17, 20, 22, 27, 29], "tan": 4, "tangent": 4, "tanh": 4, "target": [1, 5], "target_partit": [1, 5], "task": [23, 33], "technic": 18, "tempor": 24, "temporari": [1, 5], "term": 29, "terminologi": 16, "test": [4, 17], "text": [1, 4], "textual": 23, "th": 4, "than": [2, 3, 4, 5, 20], "thei": [6, 14, 16, 22, 27], "them": [4, 16, 17, 19, 21], "then_expr": 3, "therefor": 2, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 31, 32, 33, 39], "third": 19, "thoroughli": 16, "those": [2, 3, 5, 18, 20, 27, 31], "though": 27, "thread": 18, "three": [27, 29, 31], "through": [16, 18, 24, 31, 32], "thu": 14, "thusli": 16, "ticket": 17, "tie": 4, "tight": 16, "tile": 4, "time": [4, 14, 16, 17, 20, 22, 23, 27, 33], "time64": 4, "timestamp": [4, 23], "tip_amount": [19, 26], "tip_perc": 19, "tips_plus_tol": 26, "tlc": 26, "tmp": [1, 5], "to_arrow_t": 2, "to_hex": 4, "to_panda": [2, 21, 23, 40], "to_polar": 2, "to_proto": [5, 11], "to_pyarrow": [5, 12], "to_pyarrow_dataset": 31, "to_pydict": [2, 28], "to_pylist": 2, "to_str": 39, "to_substrait_plan": 13, "to_timestamp": [4, 23], "to_timestamp_micro": 4, "to_timestamp_milli": 4, "to_timestamp_nano": 4, "to_timestamp_second": 4, "to_unixtim": 4, "to_val": 4, "to_vari": [3, 5, 11], "togeth": [2, 4, 20], "tolls_amount": 26, "toml": 17, "top": 21, "topic": 31, "total": [2, 4, 18, 19, 22, 23, 31, 32], "total_amount": 19, "total_as_float": 23, "total_as_int": 23, "toward": 4, "tracker": 4, "tradit": 17, "trait": [14, 16], "transact": [1, 5], "transfer": 16, "transform": [2, 5, 11, 19], "translat": [4, 16], "treat": [3, 29], "treatment": [3, 5], "tree": [5, 11, 22], "trigger": 2, "trim": 4, "trip": [26, 31], "trip_dist": [19, 26], "trivial": [2, 17], "tru": 2, "true": [1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 17, 20, 22, 23, 26, 27, 29, 30], "trunc": 4, "truncat": [4, 20, 23, 26, 29], "try": [1, 5, 9, 16], "trycast": 3, "tupl": [1, 2, 4, 5, 9, 14], "turn": [2, 3, 5, 16], "tutori": 32, "two": [2, 3, 4, 5, 11, 16, 20, 22, 25, 27, 29, 30], "type": [1, 2, 3, 4, 5, 9, 14, 16, 17, 18, 20, 22, 23, 26, 27, 29, 31, 32], "typic": [0, 3, 5, 12, 14, 19], "typing_extens": [5, 12], "u": [16, 20, 22, 31], "udaf": [1, 5, 14, 18, 27], "udaf1": [5, 14], "udaf2": [5, 14], "udaf3": [5, 14], "udf": [1, 5, 15, 18, 27], "udf4": [5, 14], "udwf": [1, 5, 14], "udwf1": [5, 14], "udwf2": [5, 14], "udwf3": [5, 14], "ultim": 17, "unari": [5, 11], "unbound": [1, 3, 5, 14, 29], "uncompress": 2, "undefin": 17, "under": [1, 16], "underli": [3, 5, 16], "unfortun": 16, "unicod": 4, "union": [2, 3, 4], "union_distinct": 2, "uniqu": [1, 4, 14, 20], "unit": [3, 5, 29], "unixtim": 4, "unknown": 3, "unlik": [3, 5, 29], "unmatch": 25, "unnest": [2, 3], "unnest_column": 2, "unnestexpr": 3, "unoptim": 2, "unsaf": 16, "unspil": [1, 5], "until": 19, "unwrap": 39, "up": [5, 11, 14, 19, 22, 29], "updat": [1, 2, 5, 14, 27], "upon": [4, 16, 27], "upper": 4, "uppercas": 4, "upstream": 16, "urbango": 25, "url": 1, "us": [1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 37, 38, 39], "usag": [1, 2, 3, 4, 5, 14, 20, 29], "user": [0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 16, 17, 19, 22, 23, 24, 31, 32], "uses_window_fram": [14, 27], "utc": 4, "utf8": [3, 4, 5], "utf8view": [3, 5], "util": [16, 29], "uuid": 4, "uv": 17, "v": 17, "v4": 4, "valid": [1, 3, 5, 6, 7, 8, 14], "valu": [1, 2, 3, 4, 5, 11, 14, 20, 22, 23, 25, 26, 27, 29], "value1": 4, "value2": 4, "value_i": 4, "value_x": 4, "valueerror": 2, "values_a": 27, "values_b": 27, "var": 4, "var_pop": [4, 20], "var_samp": [4, 20], "var_sampl": 4, "variabl": [1, 4, 5, 17, 22], "varianc": 4, "variant": [3, 5, 11, 25], "variant_nam": [3, 5], "varieti": [22, 27, 31], "variou": 32, "vastli": 17, "vec": 16, "vendorid": 26, "venomoth": 29, "venonat": 29, "venu": 23, "venufleur": 23, "venufleurmega": 23, "venusaur": [18, 23, 29, 31, 32], "venusaurmega": [18, 23, 29, 31, 32], "venv": 17, "verbos": 2, "veri": [34, 35], "verifi": 32, "verion": 31, "version": [16, 17, 31], "via": [1, 13, 16, 17, 18, 22, 25, 31, 32, 39, 40], "view": [1, 21, 23, 24, 32], "view1": 28, "viewtabl": 2, "vink": 29, "virtual": [1, 5, 17], "visual": [5, 11], "volatil": [5, 14, 27], "voltorb": [20, 29], "vulpix": 20, "wa": [1, 5], "wai": [16, 17, 20, 31, 32], "wait": 16, "want": [16, 17, 20, 23, 27, 29, 39], "wartortl": [18, 31, 32], "water": [18, 20, 23, 31, 32], "we": [2, 16, 17, 19, 20, 22, 23, 25, 26, 27, 29, 30, 32, 33], "weedl": [18, 29, 31, 32], "weight": [4, 22], "welcom": [17, 32], "well": [1, 5, 16, 17], "were": [16, 22], "what": [16, 19], "whatev": 14, "when": [1, 3, 4, 5, 9, 14, 16, 17, 18, 20, 22, 25, 27, 29, 30, 37], "when_expr": 3, "whenev": 17, "where": [3, 4, 5, 11, 20, 22, 27, 28, 29], "wherea": 22, "wherev": 16, "whether": [1, 3, 4, 5, 9, 14, 22], "which": [1, 2, 3, 4, 5, 14, 16, 17, 18, 20, 22, 26, 27, 29, 31, 33], "while": [14, 25], "who": 16, "whole": 20, "wide": [22, 30, 31], "window": [1, 3, 4, 5, 14, 20, 24], "window_fram": [3, 4, 5, 29], "windowevalu": [5, 14, 27], "windowexpr": 3, "windowfram": [3, 4, 5, 29], "windowframebound": [3, 5], "windowudf": [1, 5, 14], "wish": 16, "with_allow_ddl": [1, 5], "with_allow_dml": [1, 5], "with_allow_stat": [1, 5], "with_batch_s": [1, 5], "with_column": 2, "with_column_renam": 2, "with_create_default_catalog_and_schema": [1, 5, 30], "with_default_catalog_and_schema": [1, 5, 30], "with_disk_manager_dis": [1, 5], "with_disk_manager_o": [1, 5, 30], "with_disk_manager_specifi": [1, 5], "with_fair_spill_pool": [1, 5, 30], "with_greedy_memory_pool": [1, 5], "with_head": 2, "with_information_schema": [1, 5, 30], "with_parquet_prun": [1, 5, 30], "with_repartition_aggreg": [1, 5, 30], "with_repartition_file_min_s": [1, 5], "with_repartition_file_scan": [1, 5], "with_repartition_join": [1, 5, 30], "with_repartition_sort": [1, 5], "with_repartition_window": [1, 5, 30], "with_target_partit": [1, 5, 30], "with_temp_file_path": [1, 5], "with_unbounded_memory_pool": [1, 5], "within": [4, 7, 14, 20, 22], "within_limit": 2, "without": [4, 16, 17, 20, 23, 25, 26, 27], "won": 26, "word": 4, "work": [1, 4, 5, 23, 26, 32], "workflow": 17, "would": [3, 4, 6, 14, 16], "wrap": [1, 2, 16], "wrapper": [1, 5, 12, 17], "write": [2, 6, 13, 16, 27], "write_csv": 2, "write_json": 2, "write_parquet": 2, "written": [16, 18], "x": [4, 5, 14, 18, 23, 29, 31, 32, 40], "xor": 4, "y": [4, 14, 18, 23, 29, 31, 32], "year": 4, "years_in_posit": 22, "yellow": 31, "yellow_tripdata_2021": [19, 26], "yet": 2, "yield": 4, "you": [1, 4, 5, 14, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33, 39], "your": [5, 14, 16, 17, 20, 21, 26, 27, 39], "yourself": 16, "z": [1, 5, 14], "zero": [2, 4, 18, 33], "zstandard": 2, "zstd": 2, "zubat": 20, "\u03c0": 4}, "titles": ["datafusion.catalog", "datafusion.context", "datafusion.dataframe", "datafusion.expr", "datafusion.functions", "datafusion", "datafusion.input.base", "datafusion.input", "datafusion.input.location", "datafusion.io", "datafusion.object_store", "datafusion.plan", "datafusion.record_batch", "datafusion.substrait", "datafusion.udf", "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", "Introduction", "Arrow", "Avro", "CSV", "IO", "JSON", "Parquet", "Custom Table Provider", "SQL"], "titleterms": {"The": 16, "aggreg": [20, 27, 29], "altern": 16, "anti": 25, "api": 15, "approach": 16, "arrai": 22, "arrow": [16, 33], "attribut": [3, 5, 10, 14], "avail": 29, "avro": 34, "base": 6, "basic": 21, "boolean": 22, "build": 17, "cast": 23, "catalog": 0, "class": [0, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 14], "code": 17, "column": [22, 26], "commit": 17, "common": 24, "concept": 19, "condit": 23, "configur": 30, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "context": [1, 19], "creat": 31, "csv": 35, "custom": [31, 39], "data": 31, "datafram": [2, 19, 31], "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 33], "defin": 27, "delta": 31, "depend": 17, "detail": 16, "develop": 17, "distinct": 20, "exampl": 18, "export": 33, "expr": 3, "express": [19, 22], "extens": 16, "ffi": 16, "file": 31, "filter": 20, "frame": 29, "from": [16, 33], "full": 25, "function": [4, 5, 9, 20, 22, 23, 27, 29], "guidelin": 17, "hook": 17, "how": 17, "iceberg": 31, "implement": 16, "import": 33, "improv": 17, "inner": 25, "input": [6, 7, 8], "inspir": 16, "instal": [17, 18, 32], "introduct": [17, 32], "io": [9, 36], "issu": 16, "join": 25, "json": 37, "lake": 31, "left": 25, "librari": 31, "liter": 22, "local": 31, "locat": 8, "mathemat": 23, "memori": 31, "modul": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 13, 14], "null": [20, 29], "object": 31, "object_stor": 10, "oper": [21, 24], "option": 27, "order": [20, 29], "other": [23, 31], "packag": [5, 7], "paramet": [20, 29], "parquet": 38, "partit": 29, "plan": 11, "pre": 17, "primari": 16, "provid": [31, 39], "python": [16, 17, 18], "record_batch": 12, "refer": 15, "regist": 28, "return": 4, "run": 17, "rust": 17, "scalar": 27, "select": 26, "semi": 25, "separ": 17, "session": 19, "set": [20, 29], "sourc": 31, "speed": 17, "sql": 40, "statu": 16, "store": 31, "string": 23, "struct": 22, "submodul": [5, 7], "substrait": 13, "tabl": [31, 39], "tempor": 23, "treatment": [20, 29], "udf": 14, "udwf": 27, "updat": 17, "user": 27, "view": 28, "window": [27, 29], "work": 16}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API Reference": [[19, null]], "Aggregate Functions": [[24, "aggregate-functions"], [31, "aggregate-functions"], [33, "aggregate-functions"]], "Aggregation": [[24, null]], "Alternative Approach": [[20, "alternative-approach"]], "Arrays": [[26, "arrays"]], "Arrow": [[38, null]], "Attributes": [[1, "attributes"], [4, "attributes"], [7, "attributes"], [12, "attributes"], [18, "attributes"]], "Available Functions": [[33, "available-functions"]], "Avro": [[39, null]], "Basic Operations": [[25, null]], "Basic Usage": [[36, "basic-usage"]], "Boolean": [[26, "boolean"]], "CSV": [[40, null]], "Casting": [[27, "casting"]], "Classes": [[0, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [17, "classes"], [18, "classes"]], "Column": [[26, "column"]], "Column Selections": [[30, null]], "Common Operations": [[28, null]], "Concepts": [[23, null]], "Conditional": [[27, "conditional"]], "Configuration": [[34, null]], "Contextual Formatting": [[36, "contextual-formatting"]], "Create in-memory": [[35, "create-in-memory"]], "Creating a Custom Formatter": [[36, "creating-a-custom-formatter"]], "Custom Style Providers": [[36, "custom-style-providers"]], "Custom Table Provider": [[35, "custom-table-provider"], [44, null]], "Customizing HTML Rendering": [[36, "customizing-html-rendering"]], "Data Sources": [[35, null]], "DataFrame": [[23, "dataframe"]], "DataFrames": [[36, null]], "DataFusion in Python": [[22, null]], "Delta Lake": [[35, "delta-lake"]], "Distinct": [[24, "distinct"]], "Example": [[22, "example"]], "Exporting from DataFusion": [[38, "exporting-from-datafusion"]], "Expressions": [[23, "expressions"], [26, null]], "Filter": [[24, "filter"]], "Full Join": [[29, "full-join"]], "Functions": [[5, "functions"], [6, "functions"], [7, "functions"], [11, "functions"], [26, "functions"], [27, null]], "Guidelines for Separating Python and Rust Code": [[21, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[36, "html-rendering"]], "Handling Missing Values": [[27, "handling-missing-values"]], "How to develop": [[21, "how-to-develop"]], "IO": [[41, null]], "Iceberg": [[35, "iceberg"]], "Implementation Details": [[20, "implementation-details"]], "Importing to DataFusion": [[38, "importing-to-datafusion"]], "Improving Build Speed": [[21, "improving-build-speed"]], "Inner Join": [[29, "inner-join"]], "Inspiration from Arrow": [[20, "inspiration-from-arrow"]], "Install": [[22, "install"]], "Installation": [[37, "installation"]], "Introduction": [[21, null], [37, null]], "JSON": [[42, null]], "Joins": [[29, null]], "Left Anti Join": [[29, "left-anti-join"]], "Left Join": [[29, "left-join"]], "Left Semi Join": [[29, "left-semi-join"]], "Literal": [[26, "literal"]], "Local file": [[35, "local-file"]], "Managing Formatters": [[36, "managing-formatters"]], "Mathematical": [[27, "mathematical"]], "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"], [6, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [17, "module-contents"], [18, "module-contents"]], "Null Treatment": [[24, "null-treatment"], [33, "null-treatment"]], "Object Store": [[35, "object-store"]], "Ordering": [[24, "ordering"], [33, "ordering"]], "Other": [[27, "other"]], "Other DataFrame Libraries": [[35, "other-dataframe-libraries"]], "Overview": [[36, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parquet": [[43, null]], "Partitions": [[33, "partitions"]], "Performance Optimization with Shared Styles": [[36, "performance-optimization-with-shared-styles"]], "Python Extensions": [[20, null]], "Registering Views": [[32, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[21, "running-installing-pre-commit-hooks"]], "SQL": [[45, null]], "Scalar Functions": [[31, "scalar-functions"]], "Session Context": [[23, "session-context"]], "Setting Parameters": [[24, "setting-parameters"], [33, "setting-parameters"]], "Status of Work": [[20, "status-of-work"]], "String": [[27, "string"]], "Structs": [[26, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[31, "table-functions"]], "Temporal": [[27, "temporal"]], "The FFI Approach": [[20, "the-ffi-approach"]], "The Primary Issue": [[20, "the-primary-issue"]], "UDWF options": [[31, "udwf-options"]], "Update Dependencies": [[21, "update-dependencies"]], "User-Defined Functions": [[31, null]], "Window Frame": [[33, "window-frame"]], "Window Functions": [[31, "window-functions"], [33, null]], "datafusion": [[7, null]], "datafusion.catalog": [[0, null]], "datafusion.col": [[1, null]], "datafusion.context": [[2, null]], "datafusion.dataframe": [[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.udf": [[16, null]], "datafusion.unparser": [[17, null]], "datafusion.user_defined": [[18, null]], "fill_null": [[27, "fill-null"]]}, "docnames": ["autoapi/datafusion/catalog/index", "autoapi/datafusion/col/index", "autoapi/datafusion/context/index", "autoapi/datafusion/dataframe/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/udf/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", "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/col/index.rst", "autoapi/datafusion/context/index.rst", "autoapi/datafusion/dataframe/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/udf/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.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)": [[2, "datafusion.context.ArrowArrayExportable.__arrow_c_array__", false]], "__arrow_c_stream__() (datafusion.context.arrowstreamexportable method)": [[2, "datafusion.context.ArrowStreamExportable.__arrow_c_stream__", false]], "__arrow_c_stream__() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.__arrow_c_stream__", false]], "__call__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__call__", false]], "__call__() (datafusion.html_formatter.cellformatter method)": [[6, "datafusion.html_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)": [[18, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__call__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[2, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", 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)": [[3, "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.dataframe.dataframe method)": [[3, "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.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.tablefunction method)": [[7, "datafusion.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__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)": [[18, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_expandable_cell", false]], "_build_html_footer() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_html_footer", false]], "_build_html_header() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_html_header", false]], "_build_regular_cell() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_regular_cell", false]], "_build_table_body() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_body", false]], "_build_table_container_start() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_container_start", false]], "_build_table_header() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_header", false]], "_create_table_udf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[18, "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)": [[18, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._custom_cell_builder", false]], "_custom_header_builder (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._custom_header_builder", false]], "_default_formatter (datafusion.html_formatter.formattermanager attribute)": [[6, "datafusion.html_formatter.FormatterManager._default_formatter", false]], "_format_cell_value() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._format_cell_value", false]], "_get_cell_value() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_cell_value", false]], "_get_default_css() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_default_css", false]], "_get_default_name() (datafusion.user_defined.windowudf static method)": [[18, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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]], "_refresh_formatter_reference() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter._refresh_formatter_reference", false]], "_repr_html_() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame._repr_html_", false]], "_styles_loaded (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._styles_loaded", 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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._type_formatters", false]], "_udaf (datafusion.aggregateudf attribute)": [[7, "datafusion.AggregateUDF._udaf", false]], "_udaf (datafusion.user_defined.aggregateudf attribute)": [[18, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[7, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[18, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.tablefunction attribute)": [[7, "datafusion.TableFunction._udtf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[18, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[18, "datafusion.user_defined.WindowUDF._udwf", false]], "_udwf (datafusion.windowudf attribute)": [[7, "datafusion.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter._validate_bool", false]], "_validate_positive_int() (in module datafusion.html_formatter)": [[6, "datafusion.html_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)": [[18, "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)": [[3, "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)": [[18, "datafusion.user_defined.AggregateUDF", 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]], "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)": [[2, "datafusion.context.ArrowArrayExportable", false]], "arrowstreamexportable (class in datafusion.context)": [[2, "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]], "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)": [[3, "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)": [[3, "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)": [[3, "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)": [[2, "datafusion.context.SessionContext.catalog", 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.html_formatter)": [[6, "datafusion.html_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.col)": [[1, "datafusion.col.col", false]], "col() (in module datafusion.functions)": [[5, "datafusion.functions.col", false]], "collect() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.collect", false]], "collect_partitioned() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.collect_partitioned", false]], "column (in module datafusion)": [[7, "datafusion.column", false]], "column (in module datafusion.col)": [[1, "datafusion.col.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_name() (datafusion.expr method)": [[7, "datafusion.Expr.column_name", false]], "column_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.column_name", false]], "compression (class in datafusion.dataframe)": [[3, "datafusion.dataframe.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)": [[2, "datafusion.context.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.context.sessionconfig attribute)": [[2, "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.html_formatter)": [[6, "datafusion.html_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)": [[3, "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)": [[2, "datafusion.context.SessionContext.create_dataframe", false]], "create_dataframe_from_logical_plan() (datafusion.context.sessioncontext method)": [[2, "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]], "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)": [[2, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.custom_css", false]], "database (class in datafusion)": [[7, "datafusion.Database", false]], "database (class in datafusion.catalog)": [[0, "datafusion.catalog.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)": [[3, "datafusion.dataframe.DataFrame", false]], "dataframehtmlformatter (class in datafusion.html_formatter)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter", false]], "datafusion": [[7, "module-datafusion", false]], "datafusion.catalog": [[0, "module-datafusion.catalog", false]], "datafusion.col": [[1, "module-datafusion.col", false]], "datafusion.context": [[2, "module-datafusion.context", false]], "datafusion.dataframe": [[3, "module-datafusion.dataframe", 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.udf": [[16, "module-datafusion.udf", false]], "datafusion.unparser": [[17, "module-datafusion.unparser", false]], "datafusion.user_defined": [[18, "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]], "db (datafusion.catalog.database attribute)": [[0, "datafusion.catalog.Database.db", false]], "db (datafusion.database attribute)": [[7, "datafusion.Database.db", 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)": [[17, "datafusion.unparser.Dialect.default", false]], "defaultstyleprovider (class in datafusion.html_formatter)": [[6, "datafusion.html_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_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.deregister_table", false]], "describe() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.df", false]], "dfschema (in module datafusion)": [[7, "datafusion.DFSchema", false]], "dialect (class in datafusion.unparser)": [[17, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[17, "datafusion.unparser.Dialect.dialect", 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)": [[3, "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)": [[3, "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)": [[17, "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)": [[2, "datafusion.context.SessionContext.empty_table", false]], "emptyrelation (in module datafusion.expr)": [[4, "datafusion.expr.EmptyRelation", false]], "enable_cell_expansion (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.enable_cell_expansion", false]], "enable_url_table() (datafusion.context.sessioncontext method)": [[2, "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]], "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)": [[18, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all_with_rank", false]], "except_all() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.except_all", false]], "execute (in module datafusion.expr)": [[4, "datafusion.expr.Execute", false]], "execute() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.execute", false]], "execute_stream() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.execute_stream", false]], "execute_stream_partitioned() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.execute_stream_partitioned", false]], "execution_plan() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[3, "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)": [[3, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.format_html", false]], "formattermanager (class in datafusion.html_formatter)": [[6, "datafusion.html_formatter.FormatterManager", false]], "frame_bound (datafusion.expr.windowframebound attribute)": [[4, "datafusion.expr.WindowFrameBound.frame_bound", false]], "from_arrow() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_arrow", false]], "from_arrow_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_arrow_table", false]], "from_pandas() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pandas", false]], "from_polars() (datafusion.context.sessioncontext method)": [[2, "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_pydict() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pydict", false]], "from_pylist() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pylist", false]], "from_str() (datafusion.dataframe.compression class method)": [[3, "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.html_formatter.defaultstyleprovider method)": [[6, "datafusion.html_formatter.DefaultStyleProvider.get_cell_style", false]], "get_cell_style() (datafusion.html_formatter.styleprovider method)": [[6, "datafusion.html_formatter.StyleProvider.get_cell_style", false]], "get_default_level() (datafusion.dataframe.compression method)": [[3, "datafusion.dataframe.Compression.get_default_level", false]], "get_formatter() (datafusion.html_formatter.formattermanager class method)": [[6, "datafusion.html_formatter.FormatterManager.get_formatter", false]], "get_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_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.html_formatter.defaultstyleprovider method)": [[6, "datafusion.html_formatter.DefaultStyleProvider.get_header_style", false]], "get_header_style() (datafusion.html_formatter.styleprovider method)": [[6, "datafusion.html_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)": [[18, "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)": [[2, "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)": [[3, "datafusion.dataframe.Compression.GZIP", false]], "head() (datafusion.dataframe.dataframe method)": [[3, "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)": [[18, "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)": [[18, "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)": [[3, "datafusion.dataframe.DataFrame.intersect", false]], "into_view() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.into_view", false]], "is_causal() (datafusion.user_defined.windowevaluator method)": [[18, "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_styles_loaded() (datafusion.html_formatter.dataframehtmlformatter class method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.is_styles_loaded", 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)": [[3, "datafusion.dataframe.DataFrame.join", false]], "join_on() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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]], "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)": [[3, "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)": [[3, "datafusion.dataframe.Compression.LZ4", false]], "lz4_raw (datafusion.dataframe.compression attribute)": [[3, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_cell_length", false]], "max_height (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_height", false]], "max_memory_bytes (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_memory_bytes", false]], "max_width (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_width", 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)": [[18, "datafusion.user_defined.WindowEvaluator.memoize", false]], "merge() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.merge", false]], "merge() (datafusion.user_defined.accumulator method)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.min_rows_display", false]], "module": [[0, "module-datafusion.catalog", false], [1, "module-datafusion.col", false], [2, "module-datafusion.context", false], [3, "module-datafusion.dataframe", 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.udf", false], [17, "module-datafusion.unparser", false], [18, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[17, "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.database method)": [[0, "datafusion.catalog.Database.names", false]], "names() (datafusion.database method)": [[7, "datafusion.Database.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)": [[3, "datafusion.dataframe.DataFrame.optimized_logical_plan", false]], "options_internal (datafusion.context.sqloptions attribute)": [[2, "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]], "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)": [[17, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[17, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "datafusion.context.SessionContext.register_avro", false]], "register_csv() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_csv", false]], "register_dataset() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_dataset", false]], "register_formatter() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.register_formatter", false]], "register_json() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_json", false]], "register_listing_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_listing_table", false]], "register_object_store() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_object_store", false]], "register_parquet() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_parquet", false]], "register_record_batches() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_record_batches", false]], "register_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_table", false]], "register_table_provider() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_table_provider", false]], "register_udaf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udaf", false]], "register_udf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udf", false]], "register_udtf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udtf", false]], "register_udwf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udwf", false]], "register_view() (datafusion.context.sessioncontext method)": [[2, "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)": [[3, "datafusion.dataframe.DataFrame.repartition", false]], "repartition_by_hash() (datafusion.dataframe.dataframe method)": [[3, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.repr_rows", false]], "reset_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter.reset_formatter", false]], "reset_styles_loaded_state() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter.reset_styles_loaded_state", 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)": [[2, "datafusion.context.RuntimeConfig", false]], "runtimeenvbuilder (class in datafusion)": [[7, "datafusion.RuntimeEnvBuilder", false]], "runtimeenvbuilder (class in datafusion.context)": [[2, "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)": [[18, "datafusion.user_defined.ScalarUDF", false]], "scalarvariable (in module datafusion.expr)": [[4, "datafusion.expr.ScalarVariable", false]], "schema (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.schema", false]], "schema (datafusion.table property)": [[7, "datafusion.Table.schema", false]], "schema() (datafusion.dataframe.dataframe method)": [[3, "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]], "select() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.select", false]], "select_columns() (datafusion.dataframe.dataframe method)": [[3, "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)": [[2, "datafusion.context.SessionContext.session_id", false]], "sessionconfig (class in datafusion)": [[7, "datafusion.SessionConfig", false]], "sessionconfig (class in datafusion.context)": [[2, "datafusion.context.SessionConfig", false]], "sessioncontext (class in datafusion.context)": [[2, "datafusion.context.SessionContext", false]], "set() (datafusion.context.sessionconfig method)": [[2, "datafusion.context.SessionConfig.set", false]], "set() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.set", false]], "set_custom_cell_builder() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.set_custom_cell_builder", false]], "set_custom_header_builder() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.set_custom_header_builder", false]], "set_formatter() (datafusion.html_formatter.formattermanager class method)": [[6, "datafusion.html_formatter.FormatterManager.set_formatter", false]], "set_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_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)": [[3, "datafusion.dataframe.DataFrame.show", false]], "show_truncation_message (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_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]], "snappy (datafusion.dataframe.compression attribute)": [[3, "datafusion.dataframe.Compression.SNAPPY", false]], "sort (in module datafusion.expr)": [[4, "datafusion.expr.Sort", false]], "sort() (datafusion.dataframe.dataframe method)": [[3, "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)": [[2, "datafusion.context.SessionContext.sql", false]], "sql_with_options() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.sql_with_options", false]], "sqlite() (datafusion.unparser.dialect static method)": [[17, "datafusion.unparser.Dialect.sqlite", false]], "sqloptions (class in datafusion)": [[7, "datafusion.SQLOptions", false]], "sqloptions (class in datafusion.context)": [[2, "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)": [[18, "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)": [[18, "datafusion.user_defined.Accumulator.state", 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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.style_provider", false]], "styleprovider (class in datafusion.html_formatter)": [[6, "datafusion.html_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)": [[18, "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.database method)": [[0, "datafusion.catalog.Database.table", false]], "table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.table", false]], "table() (datafusion.database method)": [[7, "datafusion.Database.table", false]], "table_exist() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.table_exist", false]], "tablefunction (class in datafusion)": [[7, "datafusion.TableFunction", false]], "tablefunction (class in datafusion.user_defined)": [[18, "datafusion.user_defined.TableFunction", false]], "tableproviderexportable (class in datafusion.context)": [[2, "datafusion.context.TableProviderExportable", false]], "tablescan (in module datafusion.expr)": [[4, "datafusion.expr.TableScan", false]], "tail() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.to_pandas", false]], "to_polars() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.to_pydict", false]], "to_pylist() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[18, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[7, "datafusion.udf", false]], "udf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udf", false]], "udf() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion)": [[7, "datafusion.udtf", false]], "udtf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion)": [[7, "datafusion.udwf", false]], "udwf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.WindowUDF.udwf", false]], "udwf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.udwf", false]], "uncompressed (datafusion.dataframe.compression attribute)": [[3, "datafusion.dataframe.Compression.UNCOMPRESSED", false]], "union (in module datafusion.expr)": [[4, "datafusion.expr.Union", false]], "union() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.union", false]], "union_distinct() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.union_distinct", false]], "unnest (in module datafusion.expr)": [[4, "datafusion.expr.Unnest", false]], "unnest_columns() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.unnest_columns", false]], "unnestexpr (in module datafusion.expr)": [[4, "datafusion.expr.UnnestExpr", false]], "unparser (class in datafusion.unparser)": [[17, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[17, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.update", false]], "update() (datafusion.user_defined.accumulator method)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.use_shared_styles", false]], "uses_window_frame() (datafusion.user_defined.windowevaluator method)": [[18, "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)": [[18, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.WindowUDF", false]], "with_allow_ddl() (datafusion.context.sqloptions method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[3, "datafusion.dataframe.DataFrame.with_column", false]], "with_column_renamed() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.with_column_renamed", false]], "with_columns() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.with_columns", false]], "with_create_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[17, "datafusion.unparser.Unparser.with_pretty", false]], "with_repartition_aggregations() (datafusion.context.sessionconfig method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "datafusion.context.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "with_unbounded_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "write_csv() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_csv", false]], "write_json() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_json", false]], "write_parquet() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_parquet", false]], "zstd (datafusion.dataframe.compression attribute)": [[3, "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, "", "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"], [1, 0, 0, "-", "col"], [7, 4, 1, "", "column"], [7, 6, 1, "", "configure_formatter"], [2, 0, 0, "-", "context"], [3, 0, 0, "-", "dataframe"], [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"], [16, 0, 0, "-", "udf"], [7, 4, 1, "", "udtf"], [7, 4, 1, "", "udwf"], [17, 0, 0, "-", "unparser"], [18, 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, 3, 1, "", "_udaf"], [7, 2, 1, "", "udaf"]], "datafusion.Catalog": [[7, 3, 1, "", "catalog"], [7, 2, 1, "", "database"], [7, 2, 1, "", "names"]], "datafusion.Database": [[7, 3, 1, "", "db"], [7, 2, 1, "", "names"], [7, 2, 1, "", "table"]], "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, "", "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.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, 3, 1, "", "_udf"], [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, 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, "", "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, "", "_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, "", "udwf"]], "datafusion.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "Database"], [0, 1, 1, "", "Table"]], "datafusion.catalog.Catalog": [[0, 3, 1, "", "catalog"], [0, 2, 1, "", "database"], [0, 2, 1, "", "names"]], "datafusion.catalog.Database": [[0, 3, 1, "", "db"], [0, 2, 1, "", "names"], [0, 2, 1, "", "table"]], "datafusion.catalog.Table": [[0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"], [0, 3, 1, "", "table"]], "datafusion.col": [[1, 4, 1, "", "col"], [1, 4, 1, "", "column"]], "datafusion.context": [[2, 1, 1, "", "ArrowArrayExportable"], [2, 1, 1, "", "ArrowStreamExportable"], [2, 1, 1, "", "RuntimeConfig"], [2, 1, 1, "", "RuntimeEnvBuilder"], [2, 1, 1, "", "SQLOptions"], [2, 1, 1, "", "SessionConfig"], [2, 1, 1, "", "SessionContext"], [2, 1, 1, "", "TableProviderExportable"]], "datafusion.context.ArrowArrayExportable": [[2, 2, 1, "", "__arrow_c_array__"]], "datafusion.context.ArrowStreamExportable": [[2, 2, 1, "", "__arrow_c_stream__"]], "datafusion.context.RuntimeEnvBuilder": [[2, 3, 1, "", "config_internal"], [2, 2, 1, "", "with_disk_manager_disabled"], [2, 2, 1, "", "with_disk_manager_os"], [2, 2, 1, "", "with_disk_manager_specified"], [2, 2, 1, "", "with_fair_spill_pool"], [2, 2, 1, "", "with_greedy_memory_pool"], [2, 2, 1, "", "with_temp_file_path"], [2, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.context.SQLOptions": [[2, 3, 1, "", "options_internal"], [2, 2, 1, "", "with_allow_ddl"], [2, 2, 1, "", "with_allow_dml"], [2, 2, 1, "", "with_allow_statements"]], "datafusion.context.SessionConfig": [[2, 3, 1, "", "config_internal"], [2, 2, 1, "", "set"], [2, 2, 1, "", "with_batch_size"], [2, 2, 1, "", "with_create_default_catalog_and_schema"], [2, 2, 1, "", "with_default_catalog_and_schema"], [2, 2, 1, "", "with_information_schema"], [2, 2, 1, "", "with_parquet_pruning"], [2, 2, 1, "", "with_repartition_aggregations"], [2, 2, 1, "", "with_repartition_file_min_size"], [2, 2, 1, "", "with_repartition_file_scans"], [2, 2, 1, "", "with_repartition_joins"], [2, 2, 1, "", "with_repartition_sorts"], [2, 2, 1, "", "with_repartition_windows"], [2, 2, 1, "", "with_target_partitions"]], "datafusion.context.SessionContext": [[2, 2, 1, "", "catalog"], [2, 2, 1, "", "create_dataframe"], [2, 2, 1, "", "create_dataframe_from_logical_plan"], [2, 3, 1, "", "ctx"], [2, 2, 1, "", "deregister_table"], [2, 2, 1, "", "empty_table"], [2, 2, 1, "", "enable_url_table"], [2, 2, 1, "", "execute"], [2, 2, 1, "", "from_arrow"], [2, 2, 1, "", "from_arrow_table"], [2, 2, 1, "", "from_pandas"], [2, 2, 1, "", "from_polars"], [2, 2, 1, "", "from_pydict"], [2, 2, 1, "", "from_pylist"], [2, 2, 1, "", "global_ctx"], [2, 2, 1, "", "read_avro"], [2, 2, 1, "", "read_csv"], [2, 2, 1, "", "read_json"], [2, 2, 1, "", "read_parquet"], [2, 2, 1, "", "read_table"], [2, 2, 1, "", "register_avro"], [2, 2, 1, "", "register_csv"], [2, 2, 1, "", "register_dataset"], [2, 2, 1, "", "register_json"], [2, 2, 1, "", "register_listing_table"], [2, 2, 1, "", "register_object_store"], [2, 2, 1, "", "register_parquet"], [2, 2, 1, "", "register_record_batches"], [2, 2, 1, "", "register_table"], [2, 2, 1, "", "register_table_provider"], [2, 2, 1, "", "register_udaf"], [2, 2, 1, "", "register_udf"], [2, 2, 1, "", "register_udtf"], [2, 2, 1, "", "register_udwf"], [2, 2, 1, "", "register_view"], [2, 2, 1, "", "session_id"], [2, 2, 1, "", "sql"], [2, 2, 1, "", "sql_with_options"], [2, 2, 1, "", "table"], [2, 2, 1, "", "table_exist"]], "datafusion.context.TableProviderExportable": [[2, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[3, 1, 1, "", "Compression"], [3, 1, 1, "", "DataFrame"]], "datafusion.dataframe.Compression": [[3, 3, 1, "", "BROTLI"], [3, 3, 1, "", "GZIP"], [3, 3, 1, "", "LZ4"], [3, 3, 1, "", "LZ4_RAW"], [3, 3, 1, "", "SNAPPY"], [3, 3, 1, "", "UNCOMPRESSED"], [3, 3, 1, "", "ZSTD"], [3, 2, 1, "", "from_str"], [3, 2, 1, "", "get_default_level"]], "datafusion.dataframe.DataFrame": [[3, 2, 1, "", "__arrow_c_stream__"], [3, 2, 1, "", "__getitem__"], [3, 2, 1, "", "__repr__"], [3, 2, 1, "", "_repr_html_"], [3, 2, 1, "", "aggregate"], [3, 2, 1, "", "cache"], [3, 2, 1, "", "cast"], [3, 2, 1, "", "collect"], [3, 2, 1, "", "collect_partitioned"], [3, 2, 1, "", "count"], [3, 2, 1, "", "describe"], [3, 3, 1, "", "df"], [3, 2, 1, "", "distinct"], [3, 2, 1, "", "drop"], [3, 2, 1, "", "except_all"], [3, 2, 1, "", "execute_stream"], [3, 2, 1, "", "execute_stream_partitioned"], [3, 2, 1, "", "execution_plan"], [3, 2, 1, "", "explain"], [3, 2, 1, "", "fill_null"], [3, 2, 1, "", "filter"], [3, 2, 1, "", "head"], [3, 2, 1, "", "intersect"], [3, 2, 1, "", "into_view"], [3, 2, 1, "", "join"], [3, 2, 1, "", "join_on"], [3, 2, 1, "", "limit"], [3, 2, 1, "", "logical_plan"], [3, 2, 1, "", "optimized_logical_plan"], [3, 2, 1, "", "repartition"], [3, 2, 1, "", "repartition_by_hash"], [3, 2, 1, "", "schema"], [3, 2, 1, "", "select"], [3, 2, 1, "", "select_columns"], [3, 2, 1, "", "show"], [3, 2, 1, "", "sort"], [3, 2, 1, "", "tail"], [3, 2, 1, "", "to_arrow_table"], [3, 2, 1, "", "to_pandas"], [3, 2, 1, "", "to_polars"], [3, 2, 1, "", "to_pydict"], [3, 2, 1, "", "to_pylist"], [3, 2, 1, "", "transform"], [3, 2, 1, "", "union"], [3, 2, 1, "", "union_distinct"], [3, 2, 1, "", "unnest_columns"], [3, 2, 1, "", "with_column"], [3, 2, 1, "", "with_column_renamed"], [3, 2, 1, "", "with_columns"], [3, 2, 1, "", "write_csv"], [3, 2, 1, "", "write_json"], [3, 2, 1, "", "write_parquet"]], "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, "", "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, "", "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.html_formatter": [[6, 1, 1, "", "CellFormatter"], [6, 1, 1, "", "DataFrameHtmlFormatter"], [6, 1, 1, "", "DefaultStyleProvider"], [6, 1, 1, "", "FormatterManager"], [6, 1, 1, "", "StyleProvider"], [6, 6, 1, "", "_refresh_formatter_reference"], [6, 6, 1, "", "_validate_bool"], [6, 6, 1, "", "_validate_positive_int"], [6, 6, 1, "", "configure_formatter"], [6, 6, 1, "", "get_formatter"], [6, 6, 1, "", "reset_formatter"], [6, 6, 1, "", "reset_styles_loaded_state"], [6, 6, 1, "", "set_formatter"]], "datafusion.html_formatter.CellFormatter": [[6, 2, 1, "", "__call__"]], "datafusion.html_formatter.DataFrameHtmlFormatter": [[6, 2, 1, "", "_build_expandable_cell"], [6, 2, 1, "", "_build_html_footer"], [6, 2, 1, "", "_build_html_header"], [6, 2, 1, "", "_build_regular_cell"], [6, 2, 1, "", "_build_table_body"], [6, 2, 1, "", "_build_table_container_start"], [6, 2, 1, "", "_build_table_header"], [6, 3, 1, "", "_custom_cell_builder"], [6, 3, 1, "", "_custom_header_builder"], [6, 2, 1, "", "_format_cell_value"], [6, 2, 1, "", "_get_cell_value"], [6, 2, 1, "", "_get_default_css"], [6, 2, 1, "", "_get_javascript"], [6, 3, 1, "", "_styles_loaded"], [6, 3, 1, "", "_type_formatters"], [6, 3, 1, "", "custom_css"], [6, 3, 1, "", "enable_cell_expansion"], [6, 2, 1, "", "format_html"], [6, 2, 1, "", "is_styles_loaded"], [6, 3, 1, "", "max_cell_length"], [6, 3, 1, "", "max_height"], [6, 3, 1, "", "max_memory_bytes"], [6, 3, 1, "", "max_width"], [6, 3, 1, "", "min_rows_display"], [6, 2, 1, "", "register_formatter"], [6, 3, 1, "", "repr_rows"], [6, 2, 1, "", "set_custom_cell_builder"], [6, 2, 1, "", "set_custom_header_builder"], [6, 3, 1, "", "show_truncation_message"], [6, 3, 1, "", "style_provider"], [6, 3, 1, "", "use_shared_styles"]], "datafusion.html_formatter.DefaultStyleProvider": [[6, 2, 1, "", "get_cell_style"], [6, 2, 1, "", "get_header_style"]], "datafusion.html_formatter.FormatterManager": [[6, 3, 1, "", "_default_formatter"], [6, 2, 1, "", "get_formatter"], [6, 2, 1, "", "set_formatter"]], "datafusion.html_formatter.StyleProvider": [[6, 2, 1, "", "get_cell_style"], [6, 2, 1, "", "get_header_style"]], "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": [[17, 1, 1, "", "Dialect"], [17, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[17, 2, 1, "", "default"], [17, 3, 1, "", "dialect"], [17, 2, 1, "", "duckdb"], [17, 2, 1, "", "mysql"], [17, 2, 1, "", "postgres"], [17, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[17, 2, 1, "", "plan_to_sql"], [17, 3, 1, "", "unparser"], [17, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[18, 1, 1, "", "Accumulator"], [18, 1, 1, "", "AggregateUDF"], [18, 1, 1, "", "ScalarUDF"], [18, 1, 1, "", "TableFunction"], [18, 1, 1, "", "Volatility"], [18, 1, 1, "", "WindowEvaluator"], [18, 1, 1, "", "WindowUDF"], [18, 4, 1, "", "_R"], [18, 4, 1, "", "udaf"], [18, 4, 1, "", "udf"], [18, 4, 1, "", "udtf"], [18, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "merge"], [18, 2, 1, "", "state"], [18, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[18, 2, 1, "", "__call__"], [18, 3, 1, "", "_udaf"], [18, 2, 1, "", "udaf"]], "datafusion.user_defined.ScalarUDF": [[18, 2, 1, "", "__call__"], [18, 3, 1, "", "_udf"], [18, 2, 1, "", "udf"]], "datafusion.user_defined.TableFunction": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_table_udf"], [18, 2, 1, "", "_create_table_udf_decorator"], [18, 3, 1, "", "_udtf"], [18, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[18, 3, 1, "", "Immutable"], [18, 3, 1, "", "Stable"], [18, 3, 1, "", "Volatile"], [18, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "evaluate_all"], [18, 2, 1, "", "evaluate_all_with_rank"], [18, 2, 1, "", "get_range"], [18, 2, 1, "", "include_rank"], [18, 2, 1, "", "is_causal"], [18, 2, 1, "", "memoize"], [18, 2, 1, "", "supports_bounded_execution"], [18, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "_create_window_udf"], [18, 2, 1, "", "_create_window_udf_decorator"], [18, 2, 1, "", "_get_default_name"], [18, 2, 1, "", "_normalize_input_types"], [18, 3, 1, "", "_udwf"], [18, 2, 1, "", "udwf"]]}, "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": {"": [2, 3, 4, 5, 6, 7, 18, 20, 21, 26, 27, 29, 31, 32, 33, 34, 36], "0": [3, 4, 5, 7, 18, 23, 24, 25, 26, 27, 30, 31, 33, 35, 36, 37, 44, 45], "007bff": 36, "01": [23, 27, 30], "01t00": 27, "0301050905471": 25, "04023": 5, "05": [27, 30], "06": [27, 30], "08": 27, "09": [23, 27], "1": [3, 4, 5, 7, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "10": [4, 5, 6, 7, 18, 22, 23, 24, 26, 27, 30, 31, 32, 33, 35, 36, 37, 45], "100": [5, 6, 22, 23, 24, 33, 35, 36, 37], "1000": [2, 6, 7, 11, 25, 36], "10000000": 34, "1024": [2, 6, 7, 36], "103": [22, 35, 37], "104": [22, 35, 37], "105": [22, 24, 35, 37], "107": 24, "109": [22, 35, 37, 45], "11": [22, 23, 24, 26, 27, 31, 33, 35, 37], "110": 24, "111": [22, 35, 37], "112": 24, "115": [22, 24, 35, 37], "12": [21, 22, 23, 24, 26, 27, 31, 33, 35, 37], "120": [5, 22, 24, 35, 37], "121": 24, "122": [22, 35, 37], "123": [22, 35, 37], "12371": 5, "125": [5, 24, 27, 45], "128": [4, 5, 7], "13": [22, 24, 26, 27, 31, 33, 35, 37], "130": [22, 35, 37], "135": [22, 35, 37], "136": 24, "14": [22, 23, 24, 26, 27, 30, 31, 35, 37], "140": 24, "145": [22, 24, 35, 37], "149": 45, "15": [22, 23, 24, 26, 27, 30, 31, 33, 35, 37], "150": [22, 33, 35, 37], "158": 45, "159": [22, 35, 37, 45], "16": [23, 24, 26, 27, 31], "160": 45, "161": 45, "162": 45, "163": 45, "165": [27, 45], "17": [23, 24, 26, 27, 31, 33], "18": [23, 24, 26, 27, 31, 33], "186": 25, "19": [24, 26, 27, 45], "190": 45, "1902": 5, "1921": 27, "195": [22, 35, 37], "1970": 27, "1px": 36, "2": [3, 4, 5, 6, 7, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "20": [3, 5, 6, 7, 18, 22, 24, 26, 27, 32, 33, 35, 36, 37, 45], "200": 45, "2021": 23, "2025": 27, "205": [22, 35, 37], "2097152": [6, 36], "21": [23, 24, 26, 27, 33], "22": [3, 26, 35], "223": 45, "224": [4, 5, 7], "229": 45, "23": [23, 26, 33, 45], "23076923076923": 24, "2345": 5, "24": [23, 26], "25": [5, 6, 22, 24, 26, 27, 33, 35, 36, 37], "256": [4, 5, 7], "25806451612904": 24, "26": [26, 33], "27": 26, "28": [23, 26, 33], "28571428571429": 24, "28t18": 27, "29": 26, "2mb": [6, 36], "3": [3, 5, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "30": [22, 24, 26, 32, 33, 35, 37], "300": [6, 36], "309": [22, 27, 35, 37], "31": 26, "314": [22, 27, 35, 37], "316": 25, "318": [22, 27, 35, 37], "32": 26, "33": [23, 26], "333333333333332": 33, "333333333333336": 24, "34": [26, 27], "343210340z": 27, "35": [22, 23, 24, 26, 30, 33, 35, 37], "36": [23, 26], "37": [26, 27], "38": [26, 27], "384": [4, 5, 7], "39": [22, 26, 35, 37, 45], "395": [22, 35, 37], "3rd": 5, "4": [3, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 45], "40": [5, 21, 22, 24, 26, 32, 35, 37], "405": [22, 27, 35, 37], "41": 26, "42": [24, 26, 33, 35], "42857142857143": 33, "43": [22, 26, 33, 35, 37, 44], "44": [22, 26, 35, 37], "45": [22, 24, 26, 27, 33, 35, 37], "4579": 27, "46": 24, "47": [24, 37], "4732": 27, "48": [22, 24, 35, 37], "49": [22, 35, 37], "495": [22, 35, 37], "4mb": 36, "5": [3, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "50": [5, 6, 7, 22, 24, 32, 35, 36, 37], "500": [6, 7], "51": [23, 24], "512": [4, 5, 7], "5129": 27, "513": 25, "52": [22, 24, 35, 37], "525": [22, 27, 35, 37], "53": 24, "530": [22, 35, 37], "534": [22, 27, 35, 37], "54": [24, 26, 27], "55": [22, 24, 33, 35, 37], "56": 24, "568": 25, "579": 25, "58": [22, 24, 35, 37], "5811388300841898": 25, "59": [22, 35, 37], "6": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "60": [5, 22, 24, 33, 35, 37], "62": [22, 35, 37], "625": [22, 27, 35, 37], "63": [22, 24, 35, 37], "630": [22, 35, 37], "634": [22, 27, 35, 37], "64": [21, 22, 33, 35, 37], "65": [22, 24, 26, 30, 33, 35, 37], "66": [23, 24], "666666666666668": 33, "66666666666667": 24, "666667": 5, "67": [24, 26], "698": 25, "7": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "70": [22, 24, 33, 35, 37], "71": [24, 26], "72": 24, "73": 23, "732": 27, "75": [5, 22, 24, 35, 37], "76": 33, "77777777777777": 24, "78": [22, 23, 35, 37], "785714285714285": 24, "78571428571429": 24, "79": [22, 23, 35, 37], "8": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38], "80": [5, 22, 24, 33, 35, 37], "804": 25, "81": 23, "82": [22, 35, 37], "83": [22, 24, 35, 37], "833333333333336": 24, "84": [22, 33, 35, 37], "85": [22, 24, 35, 37], "855": 27, "86": 24, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "88888888888889": 24, "8px": 36, "9": [5, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "90": [5, 22, 24, 33, 35, 37], "91": 24, "92": 23, "94": [23, 30], "95": [23, 24, 33, 45], "96": [23, 24], "972": 27, "98": [24, 45], "A": [2, 3, 4, 5, 7, 8, 13, 15, 18, 23, 25, 29, 33, 36, 44], "AND": [3, 4, 5, 7, 18], "As": [5, 7, 18, 20, 26, 30, 35], "At": [5, 20], "BY": 18, "Be": 3, "By": [3, 20, 21, 24], "For": [2, 3, 5, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 36, 37], "INTO": [2, 7], "If": [2, 3, 4, 5, 6, 7, 8, 11, 18, 20, 21, 24, 27, 29, 31, 33, 37, 44], "In": [18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "It": [2, 3, 4, 5, 6, 7, 18, 20, 22, 23, 24, 26, 29, 36, 38, 43], "Its": 22, "No": 3, "Not": [4, 7], "OR": [4, 5, 7], "On": [3, 20, 35], "One": [3, 4, 20, 24, 33], "Or": 36, "That": [4, 7, 38], "The": [2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36], "Then": 31, "There": [5, 27, 31], "These": [5, 7, 14, 18, 24, 26, 31, 34, 36], "To": [3, 5, 20, 21, 26, 27, 30, 31, 33, 35, 37, 38, 44], "Will": [3, 36], "With": [4, 7, 37, 38], "__add__": [4, 7], "__aiter__": [7, 14], "__and__": [4, 7], "__anext__": [7, 14], "__arrow_c_array__": [2, 38], "__arrow_c_stream__": [2, 3, 38], "__call__": [6, 7, 18], "__datafusion_table_function__": 31, "__datafusion_table_provider__": [2, 20, 44], "__eq__": [4, 7], "__ge__": [4, 7], "__getitem__": [3, 4, 7], "__gt__": [4, 7], "__init__": [7, 18, 31], "__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__": [3, 4, 7, 13, 18, 36], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__str__": 18, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 37, "_aggreg": 5, "_build_expandable_cel": 6, "_build_html_foot": 6, "_build_html_head": 6, "_build_regular_cel": 6, "_build_table_bodi": 6, "_build_table_container_start": 6, "_build_table_head": 6, "_create_table_udf": [7, 18], "_create_table_udf_decor": [7, 18], "_create_window_udf": [7, 18], "_create_window_udf_decor": [7, 18], "_custom_cell_build": 6, "_custom_header_build": 6, "_default_formatt": 6, "_format_cell_valu": 6, "_get_cell_valu": 6, "_get_default_css": 6, "_get_default_nam": [7, 18], "_get_javascript": 6, "_intern": [0, 3, 4, 7, 13, 14, 15, 17], "_io_custom_table_provid": 31, "_normalize_input_typ": [7, 18], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 18], "_raw_plan": [7, 13], "_refresh_formatter_refer": 6, "_repr_html_": [3, 6, 36], "_styles_load": 6, "_sum": [7, 18, 31], "_to_pyarrow_typ": [4, 7], "_type_formatt": 6, "_udaf": [7, 18], "_udf": [7, 18], "_udtf": [7, 18], "_udwf": [7, 18], "_validate_bool": 6, "_validate_positive_int": 6, "_window_fram": 4, "_window_funct": 5, "a0": 26, "a_siz": 26, "ab": [4, 5, 7], "abc": 8, "abi": 20, "abi3": 21, "abi_st": 20, "abil": 35, "abilti": 35, "abl": [7, 13], "about": [15, 17, 20, 22, 33, 34], "abov": [5, 20, 24, 33], "absolut": [4, 5, 7], "abstract": [7, 8, 18, 26, 31], "accept": [2, 4, 7, 38], "access": [6, 7, 11, 20, 26, 35], "access_key_id": 35, "account": 35, "accum": [7, 18], "accumul": [7, 18, 31], "achiev": 22, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 20, "across": [6, 18, 20, 26, 36], "act": [7, 13], "activ": [20, 21], "actual": [3, 36], "ad": 3, "adapt": 20, "add": [2, 3, 4, 5, 6, 20, 21], "add_3": 3, "addit": [3, 4, 5, 6, 7, 15, 17, 18, 20, 21, 31, 35, 36], "addition": [20, 23], "adhoc": 21, "adopt": 20, "advanc": [35, 36], "advantag": [20, 21, 22], "affect": [18, 24, 36], "after": [3, 4, 5, 7, 18, 31, 36], "ag": [26, 36], "against": [2, 4, 5, 18, 20, 22, 32, 36], "age_col": 26, "age_in_year": 26, "agg": 3, "aggreg": [2, 3, 4, 5, 7, 18, 23, 28, 36], "aggregatefunct": 4, "aggregateudf": [2, 7, 18], "aim": 37, "albert": 26, "algorithm": [3, 5], "alia": [2, 3, 4, 5, 7, 23, 24, 26, 27, 30, 31, 33, 38], "alias": 21, "alic": 29, "align": 36, "all": [0, 2, 3, 4, 5, 6, 7, 18, 20, 21, 23, 24, 27, 29, 30, 31, 33, 35, 36], "alloc": 3, "allow": [2, 6, 7, 18, 20, 21, 22, 24, 26, 27, 31, 36], "alpha": [31, 35], "alreadi": [5, 20], "also": [2, 3, 6, 7, 18, 20, 21, 22, 24, 26, 27, 31, 33, 36, 37, 45], "altern": [30, 40, 43], "alternate_a": 3, "alwai": [18, 36], "amazons3": [12, 35], "amount": [3, 18], "an": [2, 3, 4, 5, 6, 7, 11, 13, 15, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 33, 35, 37, 38, 39, 40, 43], "analyt": 33, "analyz": [3, 4, 21], "ani": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 20, 24, 29, 31, 33, 35, 38], "anoth": [3, 5, 7, 11, 20], "anti": [3, 28], "apach": [2, 4, 5, 7, 20, 21, 22, 38], "apart": 22, "api": [2, 7, 13, 20, 21, 22, 27, 33, 34, 36, 45], "appear": [4, 5, 7, 20, 36], "append": [5, 31], "appli": [3, 6, 36], "applic": 20, "approach": [5, 24, 26], "appropri": [18, 21, 35], "approx_distinct": [5, 24], "approx_median": [5, 24], "approx_percentile_cont": [5, 24], "approx_percentile_cont_with_weight": [5, 24], "approxim": [5, 24], "ar": [2, 3, 4, 5, 6, 7, 11, 13, 14, 18, 20, 21, 23, 24, 26, 28, 30, 31, 33, 35, 36, 37, 38], "arbitrari": [3, 5], "arc": [4, 5, 7, 20, 31, 44], "area": 20, "arg": [2, 3, 5, 7, 15, 18, 21], "argument": [3, 4, 5, 7, 18, 24, 31], "around": [5, 21], "arrai": [2, 3, 4, 5, 6, 7, 18, 24, 28, 31, 35, 38], "array1": 5, "array2": 5, "array_agg": [5, 24], "array_append": [5, 21], "array_cat": [5, 26], "array_concat": [5, 26], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 26], "array_empti": [4, 5, 7, 26], "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, 26], "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": [2, 3, 4, 5, 6, 7, 21, 22, 25, 35, 36, 37, 41], "arrow_cast": [4, 5, 7, 27], "arrow_datafusion_python_root": 21, "arrow_typeof": [4, 5, 7], "arrowarrayexport": 2, "arrowstreamexport": 2, "arxiv": 5, "as_pi": [7, 18, 31], "ascend": [4, 5, 7, 24, 33], "ascii": [4, 5, 7], "asin": [4, 5, 7], "asinh": [4, 5, 7], "assembl": 2, "assign": [4, 5, 7], "assist": 21, "associ": [0, 2, 4, 5, 7, 20], "assum": [3, 5, 21, 35], "assumpt": 22, "async": [7, 14], "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [22, 35, 37], "attach": [4, 5, 7], "attack": [22, 24, 27, 33, 35, 37, 45], "attempt": [2, 3, 7, 18, 20, 21], "auto": 19, "autoapi": 19, "automat": [2, 7, 36], "avail": [3, 6, 24, 28, 31, 34, 44], "availbl": 33, "averag": [5, 18, 33], "avg": [5, 18, 24, 33], "avoid": [2, 7, 11], "avro": [2, 7, 11, 35, 41], "awar": [3, 30], "aws_access_key_id": 35, "aws_secret_access_kei": 35, "b": [3, 5, 25, 26, 31, 32, 35, 38], "back": [4, 20, 22, 31, 36, 38], "background": 36, "balanc": 36, "bar": 34, "base": [2, 3, 4, 5, 6, 7, 9, 10, 11, 18, 19, 26, 29, 31], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [7, 18, 31], "basic": [23, 28, 30, 31], "basic_typ": 27, "batch": [2, 3, 6, 7, 13, 14, 18, 25, 31, 32, 35, 36, 38], "batch_arrai": 31, "batch_siz": [2, 7], "becaus": [4, 7, 31], "becca": 26, "beedril": [22, 33, 35, 37], "beedrillmega": [22, 33, 35, 37], "been": [6, 20], "befor": [5, 6, 21, 26, 31, 36], "beforehand": [2, 7], "begin": [2, 4, 5, 7, 18], "beginnig": 5, "being": 3, "below": [23, 24, 35], "benefit": 36, "best": [2, 7, 20], "beta": 35, "better": 3, "between": [2, 4, 5, 6, 7, 18, 20, 22, 23, 29, 31, 33], "betwen": 33, "bia": [7, 18], "bias_10": [7, 18], "biased_numb": [7, 18], "biasednumb": [7, 18], "bin": [5, 21], "binari": [4, 5, 7, 13, 20], "binaryexpr": [4, 7], "bind": [7, 22, 37], "bit": [4, 5, 7], "bit_and": [5, 24], "bit_length": [4, 5, 7], "bit_or": [5, 24], "bit_xor": [5, 24], "bitwis": [5, 26], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [22, 35, 37], "blastoisemega": [22, 35, 37], "blob": [4, 7], "blog": 21, "blue": 26, "bob": 29, "bodi": 6, "bool": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18], "bool_": 31, "bool_and": [5, 24], "bool_or": [5, 24], "boolean": [4, 5, 6, 7, 28], "bootstrap": 21, "border": 36, "both": [3, 4, 5, 7, 18, 20, 21, 26, 29, 31], "bound": [4, 7, 18, 31, 33, 44], "boundari": [18, 20, 33], "bow": 33, "box": 20, "bracket": 26, "break": 20, "bronz": 5, "brotli": 3, "btrim": [4, 5, 7], "bucket_nam": 35, "bug": [22, 24, 33, 35, 37], "build": [4, 5, 6, 7, 20, 22, 23, 24, 33, 36], "build_flag": 21, "build_tabl": [8, 9, 10], "builder": [4, 5, 6, 24, 33], "built": [18, 20, 24, 26, 27, 31], "bulb": 27, "bulbafleur": 27, "bulbasaur": [22, 27, 33, 35, 37], "bulk": 20, "butterfre": [22, 33, 35, 37], "button": 6, "byte": [2, 4, 5, 6, 7, 13, 15], "c": [2, 3, 18, 20, 21, 22, 25, 35, 38], "cach": [3, 6], "calcul": [3, 5, 18, 31], "call": [0, 2, 3, 4, 5, 6, 7, 13, 14, 15, 17, 18, 20, 23, 24, 26, 31, 36, 38], "callabl": [3, 6, 7, 18], "calll": 26, "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 20, 21, 23, 24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "can_retir": 26, "cannot": 5, "canon": 20, "canonical_nam": [4, 7], "capit": [4, 5, 7, 30], "capsul": 20, "cardin": [4, 5, 7, 26], "carefulli": 20, "cargo": 21, "carlo": 26, "case": [3, 4, 5, 7, 18, 20, 24, 27, 30, 31, 33, 35], "case_build": 4, "casebuild": [4, 5], "cast": [3, 4, 5, 7, 28], "castabl": [4, 7], "catalog": [2, 7, 17, 19], "categori": [3, 27], "caterpi": [22, 33, 35, 37], "caus": [2, 7, 21, 33, 38], "cbrt": [4, 5, 7], "cdatainterfac": 2, "ceil": [4, 5, 7], "cell": [6, 36], "cellformatt": 6, "certain": 18, "certainli": 21, "chain": 3, "challeng": 20, "chang": [6, 18, 21, 26, 36], "chansei": 24, "char": 27, "char_length": [4, 5, 7, 27], "charact": [4, 5, 6, 7, 36], "character_length": [4, 5, 7], "charizard": [22, 27, 33, 35, 37], "charizardmega": [22, 27, 33, 35, 37], "charli": 29, "charmand": [22, 27, 33, 35, 37], "charmeleon": [22, 27, 33, 35, 37], "check": [5, 6, 26, 27], "checksum": [4, 5, 7], "child": 36, "children": [7, 13], "chr": [4, 5, 7], "chrono": 5, "ci": [20, 21], "citycab": 29, "class": [1, 31, 36], "classmethod": [2, 3, 6], "classvar": [4, 7], "claus": [18, 33], "clean": 21, "clefabl": 33, "clefairi": [24, 33], "click": 6, "clone": [21, 31, 44], "close": 33, "co": [4, 5, 7], "coalesc": [5, 27], "code": [4, 5, 6, 7, 20, 27], "codebas": 21, "coeffici": 5, "coerc": 5, "col": [3, 4, 5, 6, 7, 18, 19, 23, 24, 26, 27, 30, 31, 32, 33, 36, 38, 45], "col1": 18, "col_attack": 24, "col_diff": 31, "col_idx": 6, "col_spe": 24, "col_type_1": 24, "col_type_2": 24, "collaps": [6, 36], "collect": [3, 22, 23, 25, 32, 36, 38, 45], "collect_partit": 3, "color": [26, 36], "column": [1, 2, 3, 4, 5, 6, 7, 11, 18, 23, 24, 25, 27, 28, 29, 31, 33, 45], "column_a": 4, "column_nam": [4, 7], "com": [4, 5, 7, 21], "combin": [3, 5, 26, 29, 30, 31], "come": [35, 42], "command": [2, 7, 21], "common": [4, 5, 7, 8, 9, 10, 24, 27, 29, 33, 38], "commun": [20, 21], "compar": [5, 33], "comparison": [4, 7, 24], "compat": [20, 26], "compil": [20, 26], "complet": [4, 5, 7, 8, 20, 21, 31, 36, 44], "complex": [3, 22, 27], "complic": 3, "compon": 5, "compos": [5, 36], "composit": 6, "comprehens": 36, "compress": [2, 3, 7, 11], "compression_level": 3, "comput": [3, 4, 5, 7, 18, 20, 26, 31], "concat": 5, "concat_w": 5, "concaten": [5, 26], "concatenated_arrai": 26, "concept": [2, 3, 4, 7, 26], "concis": 21, "concurr": [2, 7], "condit": 28, "config": [2, 7, 21, 34], "config_intern": [2, 7], "config_opt": [2, 7], "configur": [2, 6, 7, 21, 36], "configure_formatt": [6, 7, 36], "conflict": [2, 7, 11], "conjunct": 3, "connect": [2, 23], "consecut": 5, "consid": 5, "consider": 36, "consist": [5, 36], "consol": 3, "construct": [4, 7, 18, 31], "constructor": [0, 3, 4, 7, 13, 14, 15, 17, 18], "consum": [8, 15, 38], "contain": [3, 5, 6, 7, 13, 18, 19, 20, 21, 24, 26, 29, 31], "content": [21, 28], "context": [5, 6, 7, 11, 13, 15, 19, 31, 32, 34, 36, 38, 45], "continu": [5, 20], "contribut": 21, "control": [2, 7, 24, 33], "conveni": [7, 18, 35], "convent": 20, "convers": [20, 21, 23], "convert": [2, 3, 4, 5, 7, 13, 14, 15, 17, 18, 20, 23, 25, 26, 27, 31, 32, 45], "copi": [20, 21, 22, 31, 38], "copyto": 4, "core": [3, 4, 7, 20], "corr": [5, 24], "correctli": [3, 18], "correl": 5, "correspond": [5, 29], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": 22, "costli": 18, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [3, 4, 7, 20], "count": [3, 5, 24, 25], "count_star": 5, "counterpart": [5, 20], "coupl": [20, 33], "covar": 5, "covar_pop": [5, 24], "covar_samp": [5, 24], "covari": 5, "cover": [23, 27, 34], "cpython": 21, "cr": 31, "crate": 20, "creat": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 19, 20, 21, 23, 24, 26, 32, 34, 38, 45], "create_datafram": [2, 31, 35], "create_dataframe_from_logical_plan": 2, "createcatalog": 4, "createcatalogschema": 4, "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "credenti": 35, "criteria": [5, 33], "css": [6, 36], "cstream": 20, "cstring": [20, 44], "csv": [2, 3, 7, 11, 20, 22, 24, 27, 33, 35, 36, 37, 41, 45], "ctx": [2, 5, 7, 13, 15, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "cube": [4, 5, 7], "cubon": 24, "cume_dist": [5, 18, 33], "cumul": 5, "curr_valu": 31, "current": [3, 4, 5, 6, 7, 13, 18, 20, 27, 31, 33, 36], "current_d": 5, "current_tim": 5, "custom": [2, 6, 7, 8, 13, 20, 29, 31, 41], "custom_css": [6, 36], "custom_formatt": 6, "custom_html": 36, "customer_id": 29, "d": [3, 18, 38], "dai": [5, 27], "dant": 26, "dark": [24, 36], "data": [0, 2, 3, 4, 5, 6, 7, 11, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 37, 38, 39, 42, 44], "data_typ": 5, "databas": [0, 7, 26], "dataflow": [7, 13], "datafram": [2, 4, 5, 6, 7, 11, 13, 14, 18, 19, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 37, 38, 45], "dataframehtmlformatt": 6, "datafrm": 3, "datafus": [19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "datafusion_df": 35, "datafusion_sql": 17, "datafusion_table_funct": 31, "datafusion_table_provid": [20, 44], "dataset": [2, 27, 33, 35, 37], "datasourc": 8, "datastructur": [4, 7], "datatyp": [3, 4, 7, 18], "datatypemap": [4, 7], "date": [5, 27], "date32": 5, "date_bin": 5, "date_part": [5, 27], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "db": [0, 7], "ddd": 36, "ddl": [2, 7], "dealloc": 4, "debug": 6, "decid": [18, 20], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 18], "def": [3, 7, 18, 22, 31, 35, 36, 37], "default": [2, 3, 4, 5, 6, 7, 10, 11, 17, 18, 20, 21, 31, 33, 34, 36], "default_valu": 5, "defaultstyleprovid": 6, "defens": [22, 27, 35, 37, 45], "defin": [2, 4, 7, 16, 18, 20, 21, 27, 28, 33], "definit": [2, 4, 7, 18, 20, 23, 31], "degre": [4, 5, 7], "delet": [2, 7], "delimit": [2, 5, 7, 11], "delta": 20, "delta_t": 35, "deltalak": 35, "deltat": 35, "demonstr": [2, 31, 33, 37, 38], "dens": 5, "dense_rank": [5, 18, 33], "depend": [5, 20, 24, 31, 33], "deprec": [3, 5, 16, 33], "deregister_t": 2, "descend": 5, "describ": [3, 5, 20, 24, 25, 31, 35], "describet": 4, "descript": [5, 7, 18], "deseri": 15, "deserialize_byt": 15, "design": [20, 28], "desir": 5, "detafram": 2, "detail": [3, 4, 5, 7, 18, 21, 23, 25], "determin": [3, 4, 5, 7, 31], "dev": 21, "develop": 20, "deviat": 5, "df": [2, 3, 4, 5, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 45], "df_filter": 32, "df_view": 32, "dfschema": 7, "dialect": 17, "dict": [2, 3, 4, 5, 6, 7], "dictionari": [2, 3, 5, 26, 32, 35], "differ": [3, 4, 5, 7, 13, 18, 20, 27, 31, 35, 36], "difficult": 20, "digest": 5, "dimens": [4, 5, 7], "dimension": 3, "directli": [4, 5, 6, 15, 35, 36, 38], "directori": [2, 7, 21], "disabl": [2, 7], "discard": 3, "discuss": 20, "disk": [2, 7, 9, 10], "displai": [6, 7, 13, 23, 25, 32, 37], "display_graphviz": [7, 13], "display_ind": [7, 13], "display_indent_schema": [7, 13], "display_nam": [4, 7], "distanc": 5, "distinct": [3, 4, 5, 7], "distinctli": 20, "distinguish": 20, "distribut": 5, "div": 36, "divid": 5, "divis": [4, 5, 7], "divisor": 5, "dml": [2, 7], "dmlstatement": 4, "do": [2, 7, 18, 20, 21, 23, 24, 31, 33, 35, 44], "doc": [2, 5, 17], "docstr": 21, "document": [2, 3, 4, 5, 7, 19, 20, 21, 23, 34, 37], "doe": [3, 5, 6, 18, 20, 21, 33, 35], "doesn": 18, "dominant_typ": 27, "done": [3, 24, 31], "dot": [7, 13], "doubl": [30, 38], "double_func": [7, 18], "double_it": [7, 18], "double_udf": [7, 18], "down": [20, 33, 35], "downcast": 20, "download": [23, 30, 37], "dragon": [22, 24, 27, 33, 35, 37], "dragonair": 33, "dratini": 33, "drop": [2, 3, 7], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [3, 36], "duckdb": 17, "due": [2, 7, 11, 21], "duplic": [3, 4, 5, 7, 29, 36], "dure": [7, 18, 21], "dynamic_lookup": 21, "e": [3, 4, 5, 7, 18, 31, 44], "each": [3, 4, 5, 7, 18, 20, 21, 24, 27, 33], "earli": 20, "easi": [20, 42], "easier": [20, 27, 36, 37], "easili": [4, 7, 20], "east": 35, "effect": [30, 37], "effort": 20, "either": [2, 3, 4, 7, 18, 20, 24], "electr": [24, 33], "element": [3, 4, 5, 6, 7, 26], "ellipsi": [3, 7, 18], "els": 31, "else_expr": 4, "employe": 26, "empti": [2, 4, 5, 7, 13, 24, 26], "empty_t": 2, "emptyrel": 4, "enabl": [2, 7, 20, 36], "enable_cell_expans": [6, 7, 36], "enable_url_t": 2, "encod": [5, 15], "encourag": 21, "end": [0, 3, 4, 5, 7, 13, 14, 17, 18, 33], "end_bound": [4, 7], "ends_with": 5, "engin": [2, 7, 22, 23], "enough": 18, "ensur": [6, 8], "entir": [18, 24, 31, 33], "entri": [3, 5, 24, 33], "enum": [3, 4, 7, 18], "enumer": 18, "enviorn": 21, "environ": [21, 22, 36], "equal": [3, 4, 5, 7], "equival": [5, 18, 20, 24, 33], "error": [2, 4, 6, 7, 21], "especi": 21, "essenti": [7, 14, 25], "etc": [2, 4, 6, 7, 9, 10, 18], "eval_rang": 18, "evalu": [3, 4, 5, 7, 18, 23, 24, 26, 31, 33], "evaluate_al": [7, 18, 31], "evaluate_all_with_rank": [18, 31], "even": [2, 7, 20, 29, 36], "everi": [5, 7, 18], "everyth": [9, 10], "ex": [4, 7, 30], "exact": 20, "exactli": [3, 33], "examin": [4, 7], "exampl": [2, 3, 4, 5, 6, 7, 13, 18, 20, 23, 24, 26, 27, 29, 31, 32, 33, 35, 37, 44], "excel": 20, "except": [3, 4, 5, 7, 26], "except_al": 3, "exclud": [3, 29], "execut": [2, 3, 4, 7, 18, 21, 22, 23, 34, 36, 38], "execute_stream": [3, 7, 14], "execute_stream_partit": 3, "execution_plan": 3, "executionplan": [2, 3, 7, 13], "exeggcut": 24, "exist": [2, 3, 4, 5, 6, 7, 20], "exp": [4, 5, 7], "exp_smooth": 31, "expand": [3, 6, 36], "expect": [4, 5, 7, 18, 20, 26, 31, 33], "expens": 3, "experi": 21, "explain": [3, 4], "explan": [3, 23], "explicit": 34, "explicitli": [7, 18], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 31, "export": [2, 3, 20, 21, 41], "expos": [2, 20, 31, 35, 44], "expr": [2, 3, 5, 7, 11, 18, 19, 31, 33], "expr1": 5, "expr2": 5, "express": [3, 4, 5, 7, 18, 24, 27, 28, 31, 33], "exprfuncbuild": [4, 7], "extend": [5, 8, 20], "extens": [2, 4, 6, 7, 11], "extract": [4, 5, 6, 7, 27], "extraenv": 21, "f": [4, 23, 24, 26, 27, 33, 35], "f2f2f2": 36, "face": 20, "fact": [20, 31], "factori": [4, 5, 7, 18], "fail": [3, 21, 27], "fair": [2, 7], "fairi": [24, 33], "fals": [3, 4, 5, 6, 7, 18, 20, 21, 22, 26, 27, 30, 31, 34, 35, 36, 37, 44], "familiar": [21, 36], "far": 3, "faster": [5, 18], "featur": [5, 20, 21, 35, 38], "fetch": 21, "few": [20, 21, 23, 36], "ffi": 35, "ffi_": 20, "ffi_provid": 20, "ffi_tablefunct": 31, "ffi_tableprovid": [2, 20, 44], "field": [3, 5, 6, 27], "fight": [24, 33], "file": [2, 3, 7, 9, 10, 11, 15, 20, 21, 22, 23, 30, 37, 39, 40, 42, 43], "file_compression_typ": [2, 7, 11], "file_extens": [2, 7, 11], "file_partition_col": [2, 7, 11], "file_sort_ord": [2, 7, 11], "filenam": 21, "filetyp": 4, "fill": [3, 4, 5, 7, 27, 33], "fill_nan": [4, 7], "fill_nul": [3, 4, 7, 28], "filter": [3, 4, 5, 7, 13, 23, 26, 32, 33, 35, 36], "final": [23, 31], "find": [5, 20, 21, 23, 24, 33], "find_in_set": 5, "finish": [4, 24], "fire": [22, 24, 27, 35, 37], "first": [2, 3, 4, 5, 7, 20, 21, 23, 24, 26, 33, 36, 37], "first_1": 24, "first_2": 24, "first_arrai": 5, "first_valu": [5, 18, 24], "fix": 18, "flag": [5, 17, 18, 21], "flatten": [4, 5, 7], "fleur": 27, "float": [4, 5, 7, 18, 31, 36], "float64": [7, 18, 27, 31], "floor": [4, 5, 7], "flow": [7, 13], "flower": 27, "fly": [22, 24, 33, 35, 37], "fn": [31, 44], "focus": 20, "folder": [20, 31, 44], "follow": [2, 3, 4, 5, 7, 18, 20, 21, 23, 24, 26, 27, 29, 31, 33, 35, 37], "foo": 34, "footer": 6, "fora": [4, 7], "forc": 6, "foreign": 20, "foreign_provid": 20, "foreigntableprovid": 20, "form": [3, 5, 7, 13, 24], "format": [2, 3, 4, 5, 6, 7, 13, 23, 35, 39, 42], "format_argu": 5, "format_html": [6, 36], "formatt": [5, 6, 7], "formatted_valu": 6, "formatter_class": 36, "formattermanag": 6, "formatting_context": 36, "forth": 38, "found": [5, 21, 33, 44], "four": 31, "frame": [4, 5, 7, 18, 25, 31], "frame_bound": 4, "framework": 21, "free": [2, 7], "frequent": [20, 21], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "from_arrai": [31, 35], "from_arrow": [2, 35, 38], "from_arrow_t": 2, "from_panda": 2, "from_polar": [2, 35], "from_proto": [7, 13], "from_pydict": [2, 25, 26, 29, 31, 32, 35, 38], "from_pylist": [2, 29, 35], "from_str": 3, "from_substrait_plan": 15, "from_unixtim": [4, 5, 7], "from_val": 5, "fuction": 18, "full": [3, 5, 28, 45], "fulli": 21, "func": [2, 3, 7, 18, 31], "function": [2, 3, 4, 12, 14, 16, 18, 19, 20, 23, 25, 28, 35, 43], "function_to_impl": [18, 31], "further": 20, "futher": 5, "futur": [18, 33], "g": [5, 18], "gamma": 35, "gcd": 5, "gener": [4, 7, 13, 14, 15, 18, 19, 20, 21, 22, 35, 37], "geodud": 33, "get": [3, 6, 7, 13, 18, 21, 26, 35, 36], "get_cell_styl": 6, "get_default_level": 3, "get_formatt": [6, 36], "get_frame_unit": [4, 7], "get_header_styl": 6, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 18, "get_table_styl": 36, "get_upper_bound": [4, 7], "get_value_styl": 36, "getenv": 35, "ghost": 24, "gil": 22, "git": 21, "github": [4, 5, 7, 21], "give": [5, 24, 30, 37], "given": [0, 2, 4, 5, 6, 7, 18, 31], "glanc": 20, "global": [2, 6, 7, 11, 36], "global_ctx": 2, "go": [20, 25, 27], "goe": 20, "gold": 5, "good": [20, 21], "googlecloud": [12, 35], "graph": [7, 13], "graphic": [7, 13], "graphviz": [7, 13], "grass": [22, 24, 27, 33, 35, 37], "great": 21, "greater": [4, 5, 7], "greatest": 5, "greatli": 31, "greedi": [2, 7], "green": 26, "grimer": 33, "ground": 24, "group": [2, 3, 4, 5, 7, 11, 18, 23, 24, 25, 33], "group_bi": [3, 24], "groupingset": 4, "guarante": 20, "guid": [2, 28, 34, 37], "gzip": 3, "ha": [2, 3, 5, 6, 7, 18, 20, 26, 30, 35], "handl": [6, 14, 24, 28, 33], "happen": [21, 36, 38], "has_head": [2, 7, 11], "has_mor": [6, 36], "hash": [3, 4, 5, 7], "haskel": 25, "have": [2, 3, 5, 6, 7, 11, 15, 18, 20, 21, 22, 24, 29, 31, 33, 44], "head": 3, "header": [2, 3, 6, 7, 11], "healthi": 21, "heavy_red_unit": 26, "height": [6, 36], "help": [2, 6, 7, 11, 21, 26, 27, 36], "helper": [7, 18], "henc": 18, "here": [5, 20, 27, 30, 31, 33, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "high": [4, 7], "higher": [3, 4, 7], "highli": 31, "highlight": 37, "hint": [2, 21], "homebrew": 21, "host": 2, "how": [2, 3, 4, 5, 7, 18, 20, 24, 25, 28, 29, 31, 33, 34, 36, 37], "howev": [18, 31], "hp": [22, 35, 37], "html": [2, 5, 6, 7, 17], "html_formatt": [7, 19, 36], "http": [2, 4, 5, 7, 12, 13, 15, 17, 35], "hyperbol": [4, 5, 7], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 31, 33, 35, 36, 37, 38, 39, 40, 42, 43], "ic": 24, "id": [2, 6, 21, 29], "ideal": 20, "ident": 35, "identifi": [2, 4, 7, 20, 30], "idx": [18, 31], "ignor": [5, 21, 24, 33], "ignore_nul": [24, 33], "ilik": 4, "immut": [7, 18, 31], "impl": [31, 44], "implement": [2, 3, 6, 18, 21, 31, 35, 36, 38, 44], "import": [2, 4, 6, 7, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [2, 7, 18, 31, 36], "in_list": [5, 27], "includ": [2, 3, 4, 6, 7, 20, 23, 24, 27, 29, 36], "include_rank": [18, 31], "inclus": [2, 4, 5, 7], "incorpor": 31, "increas": [2, 6, 7, 24], "increment": [18, 20, 31], "indent": [7, 13], "independ": [5, 33], "index": [4, 5, 6, 7, 17, 18, 26], "indic": [4, 5, 6, 7, 26], "individu": [26, 33], "infer": [2, 7, 11], "inform": [2, 3, 4, 7, 8, 15, 17, 20, 31], "information_schema": [2, 7], "init": 21, "initcap": [4, 5, 7], "initi": [4, 5, 6, 7], "inlin": 18, "inlist": 4, "inner": [3, 28], "input": [2, 3, 4, 5, 7, 11, 13, 18, 19, 26, 31], "input_item": [8, 9, 10], "input_typ": [7, 18], "inputsourc": 8, "insert": [2, 7], "instanc": [2, 5, 6, 7, 18, 23], "instanti": [7, 18], "instead": [4, 5, 7, 20], "insubqueri": 4, "int": [2, 3, 4, 5, 6, 7, 11, 13, 18, 31], "int32": [7, 18, 27], "int64": [7, 18, 25, 27, 31], "integ": [4, 5, 6, 7, 26], "integr": [20, 37, 44], "intend": [6, 20], "interact": [6, 20, 26], "intercept": 5, "interchang": 42, "interest": 26, "interfac": [2, 5, 20, 22, 23, 31, 33, 35, 36, 38, 44], "intermedi": [7, 18], "intern": 31, "intersect": [3, 5], "interv": 5, "into_view": 3, "intro": 21, "introduc": [21, 23], "intuit": 20, "invalid": [6, 7], "invers": [4, 5, 7], "invoc": 18, "io": [2, 7, 15, 19], "is_caus": 18, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 26, "is_follow": 4, "is_not_nul": [4, 7, 24], "is_nul": [4, 7, 31], "is_null_arr": 31, "is_preced": 4, "is_styles_load": 6, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [5, 6, 21, 33], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "iter": [3, 7, 14], "iterat": 3, "its": [3, 5, 7, 13, 18, 20, 22, 33], "itself": 26, "ivi": 27, "ivyfleur": 27, "ivysaur": [22, 27, 33, 35, 37], "java": 25, "javascript": [6, 36, 42], "jigglypuff": 33, "join": [2, 3, 4, 7, 13, 28], "join_kei": [3, 29], "join_on": 3, "joinconstraint": 4, "jointyp": 4, "json": [2, 3, 7, 11, 35, 41], "jupyt": [6, 36, 37], "jupyterlab": 37, "just": 36, "jynx": 24, "kakuna": [22, 33, 35, 37], "keep": [21, 32], "kei": [2, 3, 4, 6, 7, 20, 23, 26, 29], "kept": 3, "kind": [0, 7, 20, 21], "know": [2, 7], "known": 26, "kwarg": [6, 7, 8, 9, 10], "kwd": [3, 18], "l179": [4, 7], "lab": 37, "label": 3, "lack": 22, "lag": [5, 18, 33], "lambda": [7, 18], "languag": [2, 7, 13, 20], "larg": [3, 27], "large_trip_dist": 30, "last": [4, 5, 7, 33], "last_valu": [5, 24, 33], "last_with_nul": 33, "last_wo_nul": 33, "later": [35, 37, 44], "latest": [5, 17, 20], "latter": 2, "lazi": 23, "lcm": 5, "lead": [5, 18, 20, 31, 33, 35], "leaf": [7, 13], "leak": 22, "learn": [20, 25, 33], "least": [5, 18, 24, 29, 31, 36], "leav": [7, 13], "left": [3, 5, 27, 28, 36], "left_on": [3, 29], "leftmost": 5, "legendari": [22, 35, 37], "len": [18, 27], "length": [4, 5, 6, 7, 18], "less": [4, 5, 7], "lesson": 20, "let": [20, 31, 34, 44], "letter": [4, 5, 7, 30], "level": [3, 5, 20], "levenshtein": 5, "leverag": 20, "lib": 21, "lib_dir": 21, "lib_nam": 21, "librari": [7, 8, 20, 22, 36, 37, 38, 44], "lightweight": 42, "like": [2, 4, 5, 6, 7, 8, 20, 21, 22, 27, 36], "limit": [3, 4, 5, 21, 23, 25, 27], "line": [2, 3, 7, 11, 13, 20], "linear": [5, 24], "link": [21, 33], "lint": 21, "linter": 21, "list": [0, 2, 3, 4, 5, 6, 7, 11, 13, 18, 24, 31, 32, 33, 35], "list_append": [5, 21], "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": 2, "lit": [3, 4, 5, 7, 21, 23, 24, 26, 30, 33, 36, 38], "liter": [3, 4, 7, 27, 28, 30, 31, 32], "ll": [27, 29, 33], "ln": [4, 5, 7], "load": 6, "local": [2, 20, 21], "localfilesystem": [12, 35], "locat": [2, 9, 19], "locationinputplugin": [9, 10], "lock": 22, "log": [5, 27], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [2, 3, 4, 7, 13, 15, 17, 23, 24, 30, 36], "logical_plan": [3, 15], "logicalplan": [2, 3, 4, 7, 13, 15, 17], "lonely_trip": 30, "long": [6, 20], "long_tim": 26, "longer": 5, "look": [21, 34], "low": [4, 7, 24], "low_passenger_count": 30, "lower": [4, 5, 7, 18, 27, 30], "lowercas": [3, 4, 5, 7], "lowest": [20, 24], "lpad": 5, "ltrim": [4, 5, 7], "lz4": 3, "lz4_raw": 3, "lzo": 3, "m": 21, "mac": 21, "machin": 21, "machop": 33, "made": 30, "magikarp": 24, "magnemit": 33, "mai": [2, 3, 5, 7, 11, 18, 20, 31, 35, 37, 38], "main": [2, 23], "maintain": [2, 3, 20, 23], "major": [21, 22], "make": [5, 20, 21, 22, 27, 36], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [2, 6, 7, 21], "mani": [20, 24, 31, 36], "manipul": [2, 7, 27, 36], "mankei": 33, "manner": 20, "manual": 21, "map": 3, "map_err": 44, "match": [3, 4, 5, 27, 29], "math": 24, "mathemat": [28, 30], "maturin": 21, "max": [5, 24, 25], "max_cell_length": [6, 7, 36], "max_height": [6, 7, 36], "max_memory_byt": [6, 36], "max_row": 36, "max_width": [6, 7, 36], "maximum": [2, 5, 6, 7, 11, 36], "md5": [4, 5, 7], "mean": [5, 20, 21, 25], "meaning": [5, 30], "meant": [7, 13], "medal": 5, "median": [5, 24, 25], "member": 21, "memoiz": 18, "memori": [2, 3, 6, 7, 13, 18, 22], "mention": 26, "merg": [7, 18, 29, 31], "messag": [6, 36], "metadata": [2, 4, 5, 7, 11], "metapod": [22, 24, 33, 35, 37], "method": [2, 3, 5, 6, 7, 18, 23, 25, 27, 29, 31, 32, 36], "metric": 3, "metrorid": 29, "microsecond": 5, "microsoftazur": [12, 35], "might": [6, 18, 24], "millisecond": 5, "min": [5, 24, 25], "min_rows_displai": [6, 36], "minimum": [2, 5, 6, 7, 36], "miss": [3, 28], "model": 3, "modifi": [3, 23], "modify_df": 3, "modul": [16, 33], "modulo": [4, 7], "moment": [3, 20], "month": [5, 27], "more": [2, 3, 4, 6, 7, 15, 20, 21, 23, 24, 27, 31, 34], "most": [18, 20, 26, 33, 37], "mostli": 21, "much": [18, 21, 36], "multi": 22, "multipl": [2, 3, 4, 5, 6, 7, 18, 24, 27, 29, 31, 33, 35, 36], "must": [2, 3, 4, 5, 7, 18, 24, 26, 30, 31, 33, 38, 44], "my": 36, "my_capsul": 20, "my_delta_t": 35, "my_provid": 20, "my_tabl": [32, 36, 44], "my_udaf": 31, "myaccumul": 31, "myformatt": 36, "mysql": 17, "mystyleprovid": 36, "mytablefunct": 31, "mytableprovid": [20, 44], "myusernam": 21, "n": [3, 5], "name": [0, 2, 3, 4, 5, 6, 7, 11, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 36, 37, 44], "name_pair": 5, "named_expr": 3, "named_struct": [5, 21], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 20, "nativ": 20, "natur": [4, 5, 7], "nearest": [4, 5, 7], "necessari": 20, "need": [2, 3, 4, 6, 7, 11, 18, 20, 21, 31, 33, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 27], "new": [2, 3, 4, 5, 6, 7, 17, 18, 20, 21, 26, 28, 31, 44, 45], "new_bound": [20, 44], "new_err": 44, "new_nam": 3, "next": [5, 6, 7, 14], "node": [7, 13], "non": [3, 4, 5, 24, 33], "none": [2, 3, 4, 5, 6, 7, 11, 15, 18, 20, 31, 33, 35, 36], "normal": 24, "not_red_unit": 26, "notat": [26, 42], "note": [2, 3, 4, 7, 23, 26, 38], "notebook": [6, 36, 37], "now": [5, 18, 27, 32], "nr": 25, "nth": 36, "nth_valu": [5, 18, 24], "ntile": [5, 33], "null": [3, 4, 5, 7, 25, 27, 29, 31, 38], "null_count": 25, "null_first": 5, "null_treat": [4, 5, 7, 24, 33], "nullabl": 3, "nullif": [5, 27], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 24, 33], "num": [3, 5], "num_centroid": 5, "num_el": 26, "num_row": [7, 18, 31], "number": [2, 3, 4, 5, 6, 7, 11, 13, 18, 21, 26, 27, 31, 33, 36], "numebr": 5, "numer": [3, 4, 5, 7], "nvl": 5, "o": 35, "object": [2, 3, 4, 6, 7, 12, 20, 26, 31, 34, 38, 42], "object_stor": [7, 19, 35], "objectstor": 2, "obtain": [8, 22], "obviou": 20, "occur": [7, 18, 38], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 33, "offend": 21, "offer": [27, 36, 45], "offici": 20, "offset": [3, 4], "often": 33, "old": 3, "old_nam": 3, "older": 35, "olymp": 5, "omit": 29, "on_expr": 3, "onc": [5, 6, 8, 18, 31, 36, 44], "one": [3, 4, 5, 7, 18, 20, 24, 29, 31, 33, 35], "onli": [2, 3, 4, 5, 6, 7, 11, 18, 20, 24, 27, 29, 31, 33, 36], "onlin": [2, 3, 4, 5, 7, 20, 34], "op": [3, 4, 7], "open": 6, "oper": [2, 3, 4, 5, 7, 13, 14, 18, 20, 22, 24, 26, 30, 31, 33, 35, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 21, "optim": [3, 18, 20], "optimized_logical_plan": 3, "option": [2, 3, 4, 5, 6, 7, 11, 18, 21, 23, 24, 27, 34, 35, 37], "options_intern": [2, 7], "order": [2, 3, 4, 5, 7, 8, 11, 18, 20, 26], "order_bi": [4, 5, 7, 24, 33], "org": [2, 5, 7, 13], "origin": [3, 5, 31], "other": [2, 3, 4, 5, 6, 7, 18, 20, 21, 22, 23, 26, 28, 31, 36], "otherwis": [4, 5, 6, 7], "our": [20, 21, 24, 37], "out": [3, 5, 20, 24, 25, 26, 27, 29, 30, 33, 37, 38, 45], "output": [3, 4, 6, 7, 13, 18, 21, 24, 26, 31, 32, 36], "over": [3, 4, 7, 18, 20, 22, 24, 33, 36], "overhead": 18, "overlai": 5, "overlap": 5, "overrid": 31, "overridden": 24, "own": [8, 31], "pa": [2, 4, 7, 14, 18, 31, 35, 38], "packag": [5, 20, 21], "pad": [5, 36], "page": [19, 20, 31], "pair": 5, "panda": [2, 3, 23, 25, 35, 36, 45], "pandas_df": 35, "para": 33, "parallel": [2, 7], "param_nam": 6, "paramet": [2, 3, 4, 5, 6, 7, 11, 15, 18, 21, 26, 28, 29, 36], "parasect": 33, "parquet": [2, 3, 7, 11, 20, 22, 23, 30, 34, 35, 41], "parquet_prun": [2, 7, 11], "part": [5, 27], "particular": 5, "partit": [2, 3, 4, 5, 7, 11, 13, 18, 24], "partition_bi": [4, 5, 7, 33], "partition_count": [7, 13], "pass": [3, 7, 18, 20, 21, 25, 26, 31, 34, 35], "passenger_count": 30, "path": [2, 3, 7, 11, 15, 21, 35, 36], "path_to_t": 35, "pathlib": [2, 3, 7, 11, 15], "pattern": [5, 20], "pc": [7, 18], "pcre": 5, "pd": 35, "peopl": 5, "per": [3, 6, 18, 33, 36], "percent": 5, "percent_rank": [5, 18, 33], "percentag": 5, "percentil": 5, "perform": [2, 3, 4, 5, 7, 18, 20, 21, 23, 24, 27, 31, 33, 35], "period": 20, "person": 21, "physic": [3, 7, 13, 23], "pi": 5, "pick": 5, "pinsir": 33, "pip": [22, 37], "pixel": [6, 36], "pl": 35, "place": [5, 21, 37], "placehold": 4, "plain": 36, "plan": [2, 3, 4, 7, 15, 17, 18, 19, 22, 23, 36], "plan_intern": 15, "plan_to_sql": 17, "planner": [7, 13], "pleas": 30, "plu": 5, "plugin": [8, 9, 10], "point": [4, 5, 6, 7, 21], "pointer_width": 21, "poison": [22, 24, 33, 35, 37], "pokemon": [22, 24, 27, 33, 35, 37, 45], "polar": [2, 3, 35], "polars_df": 35, "pool": [2, 7], "popul": 5, "popular": [27, 35], "portion": 20, "posit": [5, 6, 24], "possibl": [3, 4, 7, 18, 20, 27, 31, 33], "post": 21, "postgr": 17, "postgresql": 17, "potenti": [3, 7, 13], "pow": [5, 27], "power": [5, 27, 31, 33, 36], "pr": 21, "practic": 20, "prece": 5, "preced": [4, 7, 18], "preceed": 33, "precis": 5, "predic": [2, 3, 7, 11], "prefer": 21, "prefix": [5, 20], "prepar": 4, "prepend": 5, "presenc": 27, "present": 29, "preserve_nul": 3, "pretti": 17, "prevent": [21, 36], "previou": [5, 31, 33], "previous": 2, "primari": [9, 26], "primarili": 6, "print": [3, 7, 13, 32, 34, 36], "printabl": [7, 13, 18], "prior": [3, 35], "probabl": 24, "process": [18, 24, 33], "produc": [5, 7, 13, 15, 18, 20, 33], "product": 5, "program": 20, "programmat": [7, 13], "project": [3, 4, 7, 13, 20, 21, 36, 38], "properti": [0, 4, 7, 13], "proto_byt": 15, "protobuf": [7, 13], "protocol": [2, 6], "provid": [0, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 17, 18, 20, 23, 24, 27, 31, 33, 37, 41], "prune": [2, 7, 11], "psychic": 24, "public": [0, 7], "pull": 21, "pure": 21, "push": [21, 35], "pushdown_filt": 34, "put": 30, "py": [2, 3, 7, 15, 20, 31, 44], "pyarrow": [0, 2, 3, 4, 7, 11, 14, 18, 20, 25, 31, 35, 38, 45], "pycapsul": [2, 3, 20, 31, 35, 38, 44], "pycapsuleinterfac": 2, "pymethod": [31, 44], "pyo3": [20, 21, 31], "pyo3_build_config": 21, "pyo3_config_fil": 21, "pyo3_print_config": 21, "pyobject": [4, 7], "pypi": 37, "pyproject": 21, "pyresult": [31, 44], "pyruntimeerror": 44, "pyspark": 22, "pytabl": 20, "pytest": 21, "python": [2, 4, 7, 18, 25, 26, 31, 35, 37, 38, 44], "python3": 21, "python_valu": [4, 7], "pythontyp": [4, 7], "queri": [2, 7, 13, 15, 18, 20, 22, 23, 27, 32, 36], "quick": 25, "quit": 43, "quot": 30, "r": [3, 4, 5, 7, 17, 20, 21], "radian": [4, 5, 7], "rais": [3, 5, 6, 7], "random": [5, 18, 25, 26], "rang": [2, 3, 4, 5, 7, 18, 25, 26, 27, 31, 33, 34], "rank": [5, 18, 31, 33], "ranks_in_partit": 18, "rather": [5, 15], "ratio": 5, "raw": [4, 6], "raw_sort": 4, "rawexpr": [4, 7], "rb": [7, 14], "re": 20, "read": [2, 7, 9, 10, 11, 15, 20, 34, 35, 37, 39, 40, 42, 43, 45], "read_avro": [2, 7, 11, 39], "read_csv": [2, 7, 11, 22, 23, 24, 33, 35, 37, 40], "read_json": [2, 7, 11, 42], "read_parquet": [2, 7, 11, 23, 30, 43], "read_tabl": 2, "reader": [2, 7, 11, 38], "realiti": 24, "reason": 21, "rebuild": 21, "receiv": [5, 18, 20], "recent": [33, 35], "recommend": [3, 20, 21, 31], "record": [2, 3, 6, 7, 13, 14, 23, 30, 31, 35, 38, 39], "record_batch": [2, 3, 7, 19], "record_batch_stream": [7, 14], "recordbatch": [2, 3, 6, 7, 14, 31, 35], "recordbatchstream": [2, 3, 7, 14], "recursivequeri": 4, "red": [26, 36], "red_or_green_unit": 26, "red_unit": 26, "reduc": [21, 31, 36], "ref": [5, 31], "refer": [3, 5, 6, 20, 23, 27, 45], "referenc": [2, 23], "reflect": 6, "refresh": 6, "regardless": 18, "regener": 21, "regex": 5, "regexp_count": 5, "regexp_lik": 5, "regexp_match": [5, 27], "regexp_replac": [5, 27], "region": 35, "regist": [2, 6, 7, 8, 11, 20, 23, 28, 31, 35, 36, 44, 45], "register_avro": 2, "register_csv": [2, 27, 36, 40, 45], "register_dataset": [2, 35], "register_formatt": 6, "register_json": 2, "register_listing_t": 2, "register_object_stor": [2, 35], "register_parquet": [2, 35, 43], "register_record_batch": 2, "register_t": [2, 3], "register_table_provid": [2, 35, 44], "register_udaf": 2, "register_udf": 2, "register_udtf": [2, 31], "register_udwf": 2, "register_view": [2, 32], "regr_avgi": [5, 24], "regr_avgx": [5, 24], "regr_count": [5, 24], "regr_intercept": [5, 24], "regr_r2": [5, 24], "regr_slop": [5, 24], "regr_sxi": 5, "regr_sxx": [5, 24], "regr_syi": [5, 24], "regress": [5, 24], "regular": [5, 6, 27], "rel": [5, 33], "relat": [6, 7, 13, 29], "releas": [20, 33], "relev": 21, "reli": 21, "reload": 6, "remain": [4, 5, 7, 27], "remot": [9, 10], "remov": [2, 3, 4, 5, 7, 24], "renam": 3, "renamed_ag": 26, "render": 6, "repartit": [2, 3, 4, 7], "repartition_by_hash": 3, "repeat": [5, 26], "repeated_arrai": 26, "replac": [3, 5, 27], "repo": 21, "report": [3, 21], "repositori": [20, 31, 35], "repr": 6, "repr_row": [6, 36], "repres": [2, 3, 4, 5, 7, 11, 13, 14, 15, 23, 26, 31, 36], "represent": [2, 3, 4, 5, 6, 7, 11, 13, 18], "request": [3, 21], "requested_schema": [2, 3], "requir": [3, 4, 18, 20, 27, 35], "reserv": [2, 7], "reset": [6, 36], "reset_formatt": [6, 36], "reset_styles_loaded_st": 6, "resolv": [21, 33], "resourc": 20, "respect": [3, 5, 24, 35], "respect_nul": [5, 24, 33], "result": [2, 3, 5, 7, 13, 14, 18, 22, 23, 24, 26, 29, 30, 31, 32, 33, 36], "result_dict": 32, "retriev": [2, 4, 7, 29], "return": [0, 2, 3, 6, 8, 9, 10, 11, 13, 15, 18, 26, 29, 31, 36, 38], "return_typ": [7, 18], "reus": 20, "reusabl": 4, "revers": [4, 5, 7], "review": [20, 21], "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": 33, "rich": 6, "richer": 36, "right": [3, 5, 29], "right_on": [3, 29], "ritchi": 33, "robin": 3, "rock": 24, "roll": 33, "root": [4, 5, 7, 13], "roption": 20, "round": [3, 5, 23], "rout": 20, "row": [2, 3, 4, 5, 6, 7, 11, 18, 23, 24, 25, 26, 29, 31, 32, 33, 36, 45], "row_count": 6, "row_idx": 6, "row_numb": [5, 18, 33], "rpad": 5, "rresult": 20, "rstring": 20, "rtrim": [4, 5, 7], "rubi": 25, "run": [2, 3, 7, 11, 22, 32, 37], "runnabl": 21, "runtim": [2, 7, 18, 34], "runtimeconfig": 2, "runtimeenvbuild": [2, 7, 34], "rust": [5, 20, 22, 31, 34, 35, 36, 44], "rustc": 20, "rustflag": 21, "rustonomicon": 20, "rvec": 20, "s3": 35, "safe": 20, "safeti": 22, "same": [3, 5, 7, 18, 20, 23, 31], "sampl": [5, 25, 32], "saur": 27, "save": 18, "scalar": [4, 7, 18, 26, 28], "scalarsubqueri": 4, "scalarudf": [2, 7, 18], "scalarvalu": 18, "scalarvari": 4, "scan": [2, 7, 13], "schema": [0, 2, 3, 4, 6, 7, 11, 13, 25, 36], "schema_infer_max_record": [2, 7, 11], "schema_nam": [4, 7], "scheme": 3, "scienc": 27, "score": 5, "script": 6, "search": 5, "second": [5, 23, 24, 26], "second_arrai": 5, "secret_access_kei": 35, "section": [20, 23, 25, 28, 29, 33, 35], "see": [2, 3, 4, 5, 7, 14, 15, 17, 18, 20, 21, 23, 24, 26, 31, 33], "seen": [18, 24], "select": [2, 3, 4, 5, 7, 11, 18, 23, 26, 27, 28, 31, 32, 33, 36, 38, 45], "select_column": 3, "self": [7, 14, 18, 31, 36, 44], "semi": [3, 28], "sensit": 3, "separ": 5, "seper": 5, "sequenc": 3, "serd": 15, "seri": 26, "serial": [15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 20, "session": [2, 6, 7, 31, 34, 36, 37], "session_id": 2, "sessionconfig": [2, 7, 34], "sessioncontext": [2, 3, 5, 7, 8, 13, 15, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "sessioncontextintern": 2, "set": [0, 2, 4, 5, 6, 7, 17, 18, 20, 21, 23, 28, 31, 34, 36], "set_custom_cell_build": 6, "set_custom_header_build": 6, "set_formatt": 6, "setvari": 4, "sever": 30, "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 20, "share": [6, 20, 21, 23, 26, 38], "shift_offet": 5, "shift_offset": 5, "shot": 18, "should": [2, 4, 5, 7, 8, 11, 13, 15, 21, 24, 29, 31, 33], "show": [3, 6, 20, 22, 23, 25, 26, 29, 31, 33, 35, 36, 37, 44], "show_truncation_messag": [6, 36], "shown": 6, "side": [4, 5, 7, 20], "sign": [4, 5, 7], "signific": 35, "significantli": 5, "signum": [4, 5, 7], "silver": 5, "similar": [5, 20, 23, 26, 33, 36], "similarto": 4, "simpl": [5, 21, 30, 42, 43], "simplest": [18, 31], "simpli": [3, 7, 18, 20, 21], "simplifi": 33, "sin": [4, 5, 7], "sinc": [3, 24, 31, 35], "sine": [4, 5, 7], "singl": [2, 3, 4, 5, 7, 13, 18, 24, 26, 31, 33], "sinh": [4, 5, 7], "size": [2, 3, 5, 7, 26, 36], "skip": [2, 3, 7, 11, 18], "skip_metadata": [2, 7, 11], "slice": 5, "slightli": 31, "slope": 5, "slow": 3, "slower": 3, "slowest": 31, "slowpok": 33, "small": 35, "smallest": [18, 24], "smooth_a": 31, "snappi": 3, "snorlax": 33, "so": [2, 3, 7, 20, 21, 30, 31, 33, 38, 44], "softwar": [7, 13, 20], "solid": 36, "some": [5, 18, 20, 21, 24, 27, 31, 33, 37, 44], "sometim": [2, 7, 20, 35], "soon": [5, 35], "sort": [2, 3, 4, 5, 7, 11, 24, 33], "sortexpr": [2, 3, 4, 5, 7], "sound": 20, "sourc": [2, 5, 7, 8, 9, 10, 11, 20, 21, 23, 36, 37, 38, 44], "sp": [22, 35, 37], "space": [4, 5, 7], "sparingli": 31, "special": [6, 18], "specif": [3, 4, 6, 7, 13, 25, 26, 27, 33, 36], "specifi": [2, 3, 4, 5, 7, 26, 27, 29, 31, 33], "speed": [3, 22, 24, 33, 35, 37], "sphinx": 19, "spill": [2, 7], "spillabl": [2, 7], "split": [5, 31], "split_part": 5, "sql": [2, 7, 13, 15, 17, 18, 22, 23, 26, 30, 32, 36], "sql_with_opt": 2, "sqlite": 17, "sqloption": [2, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 27, "squirtl": [22, 27, 33, 35, 37], "src": [4, 7, 21], "stabl": [18, 20, 31], "standard": [5, 20], "start": [4, 5, 7, 18, 26, 30, 33, 37], "start_ag": 26, "start_bound": [4, 7], "started_young": 26, "starts_with": 5, "state": [2, 6, 7, 18, 23, 31], "state_typ": [7, 18], "statement": [2, 4, 5, 7, 23, 45], "static": [4, 7, 13, 15, 17, 18], "statist": [3, 24, 25], "std": 25, "stddev": [5, 24], "stddev_pop": [5, 24], "stddev_samp": 5, "steel": 24, "step": [5, 20], "still": [31, 35], "stop": 5, "storag": 35, "store": [2, 4, 7, 12], "str": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18], "str_lit": 27, "straightforward": [39, 40], "stream": [2, 3, 7, 14, 20], "strftime": 5, "stride": 5, "string": [3, 4, 5, 6, 7, 13, 17, 18, 20, 21, 24, 25, 26, 28], "string1": 5, "string2": 5, "string_agg": [5, 24], "string_list": 5, "string_liter": [4, 7, 27], "string_view": [4, 7, 38], "strong": 22, "strpo": 5, "struct": [2, 4, 5, 7, 20, 28, 38], "structarrai": 38, "structur": [7, 13, 20], "style": [6, 20, 26], "style_provid": [6, 36], "styleprovid": [6, 36], "sub": [4, 7], "subfield": [4, 5, 7], "submit": 21, "submodul": 21, "subqueri": 4, "subqueryalia": 4, "subset": [3, 27, 30], "substr": 5, "substr_index": 5, "substrait": [7, 19], "subtract": [4, 7], "suffici": [2, 7], "suffix": 5, "suggest": 35, "sum": [5, 7, 18, 24, 31], "sum_bias_10": [7, 18], "summar": [3, 7, 18], "summari": [3, 24, 25], "support": [3, 4, 5, 6, 7, 13, 15, 17, 20, 29, 31, 35, 36], "supports_bounded_execut": [18, 31], "suppos": [5, 20, 24], "suppress_build_script_link_lin": 21, "sure": 21, "switch": 6, "symbol": 3, "sync": 21, "synchon": 20, "syntax": 5, "system": [2, 7, 20, 21], "t": [5, 18, 30], "t1": 18, "tabl": [0, 2, 3, 6, 7, 8, 9, 10, 11, 13, 18, 20, 23, 25, 27, 28, 29, 36, 37, 38, 40, 41, 43], "table_exist": 2, "table_id": 6, "table_nam": [8, 9, 10], "table_partition_col": [2, 7, 11], "table_provid": 2, "table_uuid": [6, 36], "tablefunct": [2, 7, 18], "tableprovid": [20, 44], "tableproviderexport": 2, "tablescan": 4, "tag": 6, "tail": 3, "take": [3, 6, 18, 20, 21, 24, 26, 31, 33], "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [2, 7], "target_partit": [2, 7], "task": [27, 38], "taxi": 23, "td": 36, "technic": 22, "tempor": 28, "temporari": [2, 7, 36], "temporarili": 36, "term": 33, "termin": 36, "terminologi": 20, "test": [5, 21], "text": [2, 5, 36], "textual": 27, "th": [5, 36], "than": [3, 4, 5, 7, 24, 31, 36], "thei": [8, 18, 20, 26, 31], "them": [5, 20, 21, 23, 25], "theme": 36, "then_expr": 4, "therefor": 3, "thi": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 44], "third": 23, "thoroughli": 20, "those": [3, 4, 7, 22, 24, 31, 35], "though": 31, "thread": 22, "three": [31, 33, 35], "through": [6, 20, 22, 28, 35, 36, 37], "thu": 18, "thusli": 20, "ticket": 21, "tie": 5, "tight": 20, "tile": 5, "time": [5, 18, 20, 21, 24, 26, 27, 31, 38], "time64": 5, "timestamp": [4, 5, 7, 27], "tip_amount": [23, 30], "tip_perc": 23, "tips_plus_tol": 30, "tlc": [23, 30], "tmp": [2, 7], "to_arrow_t": 3, "to_hex": [4, 5, 7], "to_panda": [3, 25, 27, 45], "to_polar": 3, "to_proto": [7, 13], "to_pyarrow": [7, 14], "to_pyarrow_dataset": 35, "to_pydict": [3, 32], "to_pylist": 3, "to_str": 44, "to_substrait_plan": 15, "to_timestamp": [5, 27], "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": [3, 5, 24], "tolls_amount": 30, "toml": 21, "top": 25, "topic": 35, "total": [3, 4, 5, 7, 22, 23, 26, 27, 35, 37], "total_amount": 23, "total_as_float": 27, "total_as_int": 27, "toward": 5, "tr": 36, "tracker": 5, "tradit": 21, "trait": [18, 20], "transact": [2, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 20, "transform": [3, 7, 13, 23], "translat": [5, 20], "treat": [4, 33], "treatment": [4, 7], "tree": [7, 13, 26], "trigger": 3, "trim": [4, 5, 7], "trip": [23, 30, 35], "trip_dist": [23, 30], "trivial": [3, 21], "tru": 3, "true": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 18, 21, 24, 26, 27, 30, 31, 33, 34, 36], "trunc": 5, "truncat": [5, 6, 24, 27, 30, 33, 36], "try": [2, 7, 11, 20], "trycast": 4, "tupl": [2, 3, 5, 7, 11, 18], "turn": [3, 4, 7, 20], "tutori": 37, "two": [3, 4, 5, 7, 13, 20, 24, 26, 29, 31, 33, 34], "type": [2, 3, 4, 5, 6, 7, 11, 18, 20, 21, 22, 24, 26, 27, 30, 31, 33, 35, 37], "type_class": 6, "typeerror": 6, "typic": [0, 4, 7, 14, 17, 18, 23], "typing_extens": [7, 14], "u": [20, 24, 26, 35], "udaf": [2, 7, 18, 22, 31], "udaf1": [7, 18], "udaf2": [7, 18], "udaf3": [7, 18], "udf": [2, 7, 18, 19, 22, 31], "udf4": [7, 18], "udtf": [7, 18], "udwf": [2, 7, 18], "udwf1": [7, 18], "udwf2": [7, 18], "udwf3": [7, 18], "ui": 6, "ultim": 21, "unari": [7, 13], "unbound": [2, 4, 7, 18, 33], "unchang": [3, 27], "uncompress": 3, "undefin": 21, "under": [2, 20], "underli": [4, 7, 20], "unfortun": 20, "unicod": [4, 5, 7], "union": [3, 4, 5], "union_distinct": 3, "uniqu": [2, 5, 6, 18, 24], "unit": [4, 7, 33], "unixtim": 5, "unknown": 4, "unlik": [4, 7, 33], "unmatch": 29, "unnest": [3, 4], "unnest_column": 3, "unnestexpr": 4, "unoptim": 3, "unpars": [7, 19], "unsaf": 20, "unspil": [2, 7], "until": 23, "unwrap": 44, "up": [7, 13, 18, 23, 26, 33], "updat": [2, 3, 7, 18, 31], "upon": [5, 20, 31], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 20, "urbango": 29, "url": 2, "us": [2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 42, 43, 44], "usag": [2, 3, 4, 5, 7, 18, 24, 33], "use_shared_styl": [6, 7, 36], "user": [0, 2, 3, 4, 5, 7, 8, 13, 14, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 35, 37], "user_defin": [2, 7, 19, 31], "uses_window_fram": [18, 31], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [6, 20, 33], "uuid": 5, "uv": 21, "v": 21, "v4": 5, "valid": [2, 4, 6, 7, 8, 9, 10, 18], "valu": [2, 3, 4, 5, 6, 7, 13, 18, 24, 26, 28, 29, 30, 31, 33, 36], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [3, 6, 7], "values_a": 31, "values_b": 31, "var": 5, "var_pop": [5, 24], "var_samp": [5, 24], "var_sampl": 5, "variabl": [2, 5, 7, 21, 26], "varianc": 5, "variant": [4, 7, 13, 29], "variant_nam": [4, 7], "varieti": [26, 31, 35], "variou": 37, "vastli": 21, "vec": 20, "vendorid": 30, "venomoth": 33, "venonat": 33, "venu": 27, "venufleur": 27, "venufleurmega": 27, "venusaur": [22, 27, 33, 35, 37], "venusaurmega": [22, 27, 33, 35, 37], "venv": 21, "verbos": 3, "veri": [39, 40], "verifi": 37, "verion": 35, "version": [20, 21, 35], "via": [2, 15, 20, 21, 22, 26, 29, 31, 35, 37, 44, 45], "view": [2, 25, 27, 28, 37], "view1": 32, "viewtabl": 3, "vink": 33, "virtual": [2, 7, 21], "visual": [7, 13, 23, 36], "volatil": [7, 18, 31], "voltorb": [24, 33], "vulpix": 24, "wa": [2, 7], "wai": [20, 21, 24, 35, 37], "wait": 20, "want": [20, 21, 24, 27, 31, 33, 44], "wartortl": [22, 35, 37], "water": [22, 24, 27, 35, 37], "we": [3, 20, 21, 23, 24, 26, 27, 29, 30, 31, 33, 34, 37, 38], "weedl": [22, 33, 35, 37], "weight": [5, 26], "welcom": [21, 37], "well": [2, 7, 20, 21], "were": [20, 26], "what": [20, 23], "whatev": 18, "when": [2, 4, 5, 6, 7, 11, 18, 20, 21, 22, 24, 26, 29, 31, 33, 34, 36, 42], "when_expr": 4, "whenev": 21, "where": [3, 4, 5, 7, 13, 24, 26, 27, 31, 32, 33], "wherea": 26, "wherev": 20, "whether": [2, 4, 5, 6, 7, 11, 18, 26], "which": [2, 3, 4, 5, 7, 18, 20, 21, 22, 24, 26, 30, 31, 33, 35, 38], "while": [18, 29], "white": 36, "who": 20, "whole": 24, "wide": [26, 34, 35], "width": [6, 36], "window": [2, 4, 5, 7, 18, 24, 28], "window_fram": [4, 5, 7, 33], "windowevalu": [7, 18, 31], "windowexpr": 4, "windowfram": [4, 5, 7, 33], "windowframebound": [4, 7], "windowudf": [2, 7, 18], "wish": [20, 31], "with_allow_ddl": [2, 7], "with_allow_dml": [2, 7], "with_allow_stat": [2, 7], "with_batch_s": [2, 7], "with_column": 3, "with_column_renam": 3, "with_create_default_catalog_and_schema": [2, 7, 34], "with_default_catalog_and_schema": [2, 7, 34], "with_disk_manager_dis": [2, 7], "with_disk_manager_o": [2, 7, 34], "with_disk_manager_specifi": [2, 7], "with_fair_spill_pool": [2, 7, 34], "with_greedy_memory_pool": [2, 7], "with_head": 3, "with_information_schema": [2, 7, 34], "with_parquet_prun": [2, 7, 34], "with_pretti": 17, "with_repartition_aggreg": [2, 7, 34], "with_repartition_file_min_s": [2, 7], "with_repartition_file_scan": [2, 7], "with_repartition_join": [2, 7, 34], "with_repartition_sort": [2, 7], "with_repartition_window": [2, 7, 34], "with_target_partit": [2, 7, 34], "with_temp_file_path": [2, 7], "with_unbounded_memory_pool": [2, 7], "within": [5, 9, 18, 24, 26], "within_limit": 3, "without": [4, 5, 7, 20, 21, 24, 27, 29, 30, 31], "won": 30, "word": [4, 5, 7], "work": [2, 5, 7, 23, 27, 30, 36, 37], "workflow": 21, "would": [4, 5, 8, 18, 20], "wrap": [2, 3, 20], "wrapper": [2, 7, 14, 21], "write": [3, 8, 15, 20, 31], "write_csv": 3, "write_json": 3, "write_parquet": 3, "written": [20, 22], "x": [5, 7, 18, 22, 27, 33, 35, 37, 45], "xor": 5, "y": [5, 18, 22, 27, 33, 35, 37], "year": 5, "years_in_posit": 26, "yellow": [23, 35], "yellow_tripdata_2021": [23, 30], "yet": 3, "yield": 5, "you": [2, 5, 7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "your": [7, 18, 20, 21, 24, 25, 30, 31, 36, 44], "yourself": 20, "z": [2, 7, 18], "zero": [3, 5, 22, 38], "zstandard": 3, "zstd": 3, "zubat": 24, "\u03c0": 5}, "titles": ["datafusion.catalog", "datafusion.col", "datafusion.context", "datafusion.dataframe", "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.udf", "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", "Introduction", "Arrow", "Avro", "CSV", "IO", "JSON", "Parquet", "Custom Table Provider", "SQL"], "titleterms": {"The": 20, "aggreg": [24, 31, 33], "altern": 20, "anti": 29, "api": 19, "approach": 20, "arrai": 26, "arrow": [20, 38], "attribut": [1, 4, 7, 12, 18], "avail": 33, "avro": 39, "base": 8, "basic": [25, 36], "boolean": 26, "build": 21, "cast": 27, "catalog": 0, "class": [0, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18], "code": 21, "col": 1, "column": [26, 30], "commit": 21, "common": 28, "concept": 23, "condit": 27, "configur": 34, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18], "context": [2, 23], "contextu": 36, "control": 36, "creat": [35, 36], "csv": 40, "custom": [35, 36, 44], "data": 35, "datafram": [3, 23, 35, 36], "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 38], "defin": 31, "delta": 35, "depend": 21, "detail": 20, "develop": 21, "displai": 36, "distinct": 24, "exampl": 22, "export": 38, "expr": 4, "express": [23, 26], "extens": 20, "ffi": 20, "file": 35, "fill_nul": 27, "filter": 24, "format": 36, "formatt": 36, "frame": 33, "from": [20, 38], "full": 29, "function": [5, 6, 7, 11, 24, 26, 27, 31, 33], "guidelin": 21, "handl": 27, "hook": 21, "how": 21, "html": 36, "html_formatt": 6, "iceberg": 35, "implement": 20, "import": 38, "improv": 21, "inner": 29, "input": [8, 9, 10], "inspir": 20, "instal": [21, 22, 37], "introduct": [21, 37], "io": [11, 41], "issu": 20, "join": 29, "json": 42, "lake": 35, "left": 29, "librari": 35, "liter": 26, "local": 35, "locat": 10, "manag": 36, "mathemat": 27, "memori": [35, 36], "miss": 27, "modul": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18], "null": [24, 33], "object": 35, "object_stor": 12, "oper": [25, 28], "optim": 36, "option": 31, "order": [24, 33], "other": [27, 35], "overview": 36, "packag": [7, 9], "paramet": [24, 33], "parquet": 43, "partit": 33, "perform": 36, "plan": 13, "pre": 21, "primari": 20, "provid": [35, 36, 44], "python": [20, 21, 22], "record_batch": 14, "refer": 19, "regist": 32, "render": 36, "return": [4, 5, 7], "run": 21, "rust": 21, "scalar": 31, "select": 30, "semi": 29, "separ": 21, "session": 23, "set": [24, 33], "share": 36, "sourc": 35, "speed": 21, "sql": 45, "statu": 20, "store": 35, "string": 27, "struct": 26, "style": 36, "submodul": [7, 9], "substrait": 15, "tabl": [31, 35, 44], "tempor": 27, "treatment": [24, 33], "udf": 16, "udwf": 31, "unpars": 17, "updat": 21, "usag": 36, "user": 31, "user_defin": 18, "valu": 27, "view": 32, "window": [31, 33], "work": 20}}) \ No newline at end of file diff --git a/user-guide/basics.html b/user-guide/basics.html index ab965779a..3596aa2c1 100644 --- a/user-guide/basics.html +++ b/user-guide/basics.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -413,8 +438,9 @@

    Concepts

    -

    In this section, we will cover a basic example to introduce a few key concepts. We will use the same -source file as described in the Introduction, the Pokemon data set.

    +

    In this section, we will cover a basic example to introduce a few key concepts. We will use the +2021 Yellow Taxi Trip Records (download), +from the TLC Trip Record Data.

    In [1]: from datafusion import SessionContext, col, lit, functions as f
     
     In [2]: ctx = SessionContext()
    @@ -483,6 +509,7 @@ 

    DataFrameSessionContext, such as read_csv, and can then be modified by calling the transformation methods, such as filter(), select(), aggregate(), and limit() to build up a query definition.

    +

    For more details on working with DataFrames, including visualization options and conversion to other formats, see DataFrames.

    Expressions

    diff --git a/user-guide/common-operations/aggregations.html b/user-guide/common-operations/aggregations.html index 9235368c2..f35abc6c5 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -579,15 +604,15 @@

    Distinct | Type 1 | Type 2 List | +----------+--------------------------------------------------+ | Bug | [, Grass, Flying, Poison] | -| Poison | [, Flying, Ground] | -| Electric | [, Steel, Flying] | +| Poison | [, Ground, Flying] | +| Electric | [Flying, Steel, ] | | Fairy | [] | -| Normal | [, Flying, Fairy] | +| Normal | [Flying, Fairy, ] | | Ice | [Flying, Psychic] | | Grass | [Psychic, , Poison] | -| Fire | [Dragon, Flying, ] | -| Water | [Fighting, Flying, Psychic, Poison, , Dark, Ice] | -| Ground | [Rock, ] | +| Fire | [Flying, , Dragon] | +| Water | [Ice, Flying, , Fighting, Dark, Psychic, Poison] | +| Ground | [, Rock] | +----------+--------------------------------------------------+ Data truncated. @@ -602,15 +627,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Flying, Grass, Poison] | -| Poison | [Flying, Ground] | +| Bug | [Poison, Grass, Flying] | +| Poison | [Ground, Flying] | | Electric | [Flying, Steel] | | Normal | [Flying, Fairy] | | Ice | [Flying, Psychic] | -| Grass | [Poison, Psychic] | +| Grass | [Psychic, Poison] | | Fire | [Flying, Dragon] | -| Water | [Psychic, Flying, Fighting, Dark, Poison, Ice] | -| Rock | [Ground, Water, Flying] | +| Water | [Dark, Poison, Psychic, Flying, Ice, Fighting] | +| Rock | [Flying, Water, Ground] | | Ghost | [Poison] | +----------+------------------------------------------------+ Data truncated. @@ -621,15 +646,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Flying, Grass, Poison] | -| Poison | [Flying, Ground] | +| Bug | [Grass, Flying, Poison] | +| Poison | [Ground, Flying] | | Electric | [Steel, Flying] | | Fairy | | | Normal | [Fairy, Flying] | -| Ice | [Flying, Psychic] | +| Ice | [Psychic, Flying] | | Grass | [Psychic, Poison] | -| Fire | [Flying, Dragon] | -| Water | [Ice, Dark, Fighting, Flying, Poison, Psychic] | +| Fire | [Dragon, Flying] | +| Water | [Ice, Flying, Poison, Dark, Psychic, Fighting] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index f7c661210..3657b7419 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -414,11 +439,11 @@

    Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 832 | A | -| 2 | ruby | 669 | A | -| 3 | java | 803 | B | -| 4 | haskell | 531 | C | -| 5 | go | 774 | B | +| 1 | python | 316 | A | +| 2 | ruby | 698 | A | +| 3 | java | 568 | B | +| 4 | haskell | 804 | C | +| 5 | go | 513 | B | +-----+---------+--------+--------+ @@ -429,8 +454,8 @@

    Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 832 | A | -| 2 | ruby | 669 | A | +| 1 | python | 316 | A | +| 2 | ruby | 698 | A | +-----+--------+--------+--------+ @@ -448,28 +473,28 @@

    Basic Operations
    In [8]: df.to_pandas()
     Out[8]: 
        nrs    names  random groups
    -0    1   python     832      A
    -1    2     ruby     669      A
    -2    3     java     803      B
    -3    4  haskell     531      C
    -4    5       go     774      B
    +0    1   python     316      A
    +1    2     ruby     698      A
    +2    3     java     568      B
    +3    4  haskell     804      C
    +4    5       go     513      B
     

    describe() shows a quick statistic summary of your data:

    In [9]: df.describe()
     Out[9]: 
     DataFrame()
    -+------------+--------------------+-------+--------------------+--------+
    -| describe   | nrs                | names | random             | groups |
    -+------------+--------------------+-------+--------------------+--------+
    -| count      | 5.0                | 5     | 5.0                | 5      |
    -| null_count | 0.0                | 0     | 0.0                | 0      |
    -| mean       | 3.0                | null  | 721.8              | null   |
    -| std        | 1.5811388300841898 | null  | 123.14097612086726 | null   |
    -| min        | 1.0                | go    | 531.0              | A      |
    -| max        | 5.0                | ruby  | 832.0              | C      |
    -| median     | 3.0                | null  | 774.0              | null   |
    -+------------+--------------------+-------+--------------------+--------+
    ++------------+--------------------+-------+-------------------+--------+
    +| describe   | nrs                | names | random            | groups |
    ++------------+--------------------+-------+-------------------+--------+
    +| count      | 5.0                | 5     | 5.0               | 5      |
    +| null_count | 0.0                | 0     | 0.0               | 0      |
    +| mean       | 3.0                | null  | 579.8             | null   |
    +| std        | 1.5811388300841898 | null  | 186.0301050905471 | null   |
    +| min        | 1.0                | go    | 316.0             | A      |
    +| max        | 5.0                | ruby  | 804.0             | C      |
    +| median     | 3.0                | null  | 568.0             | null   |
    ++------------+--------------------+-------+-------------------+--------+
     

    diff --git a/user-guide/common-operations/expressions.html b/user-guide/common-operations/expressions.html index 0fe3e2938..291245092 100644 --- a/user-guide/common-operations/expressions.html +++ b/user-guide/common-operations/expressions.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index 803c2669e..61123ed4d 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -375,35 +400,54 @@ @@ -426,7 +456,7 @@

    User-Defined FunctionsScalar Functions

    When writing a user-defined function that can operate on a row by row basis, these are called Scalar Functions. You can define your own scalar function by calling -udf() .

    +udf() .

    The basic definition of a scalar UDF is a python function that takes one or more pyarrow arrays and returns a single array as output. DataFusion scalar UDFs operate on an entire batch of records at a time, though the @@ -512,9 +542,9 @@

    Scalar Functions

    Aggregate Functions

    -

    The udaf() function allows you to define User-Defined +

    The udaf() function allows you to define User-Defined Aggregate Functions (UDAFs). To use this you must implement an -Accumulator that determines how the aggregation is performed.

    +Accumulator that determines how the aggregation is performed.

    When defining a UDAF there are four methods you need to implement. The update function takes the array(s) of input and updates the internal state of the accumulator. You should define this function to have as many input arguments as you will pass when calling the UDAF. Since aggregation may be @@ -568,8 +598,8 @@

    Aggregate Functions

    Window Functions

    To implement a User-Defined Window Function (UDWF) you must call the -udwf() function using a class that implements the abstract -class WindowEvaluator.

    +udwf() function using a class that implements the abstract +class WindowEvaluator.

    There are three methods of evaluation of UDWFs.

    diff --git a/user-guide/common-operations/windows.html b/user-guide/common-operations/windows.html index 4b2be12cd..dcd5e5058 100644 --- a/user-guide/common-operations/windows.html +++ b/user-guide/common-operations/windows.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/configuration.html b/user-guide/configuration.html index b29bfff4a..5cd45975a 100644 --- a/user-guide/configuration.html +++ b/user-guide/configuration.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html index 64be39f69..f1be5894f 100644 --- a/user-guide/data-sources.html +++ b/user-guide/data-sources.html @@ -34,7 +34,7 @@ - + @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -650,10 +675,10 @@

    Custom Table ProviderConcepts

    - +

    next

    -

    Common Operations

    +

    DataFrames

    diff --git a/user-guide/dataframe.html b/user-guide/dataframe.html new file mode 100644 index 000000000..2c27110bd --- /dev/null +++ b/user-guide/dataframe.html @@ -0,0 +1,705 @@ + + + + + + + + DataFrames — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    +

    DataFrames

    +
    +

    Overview

    +

    DataFusion’s DataFrame API provides a powerful interface for building and executing queries against data sources. +It offers a familiar API similar to pandas and other DataFrame libraries, but with the performance benefits of Rust +and Arrow.

    +

    A DataFrame represents a logical plan that can be composed through operations like filtering, projection, and aggregation. +The actual execution happens when terminal operations like collect() or show() are called.

    +
    +
    +

    Basic Usage

    +
    import datafusion
    +from datafusion import col, lit
    +
    +# Create a context and register a data source
    +ctx = datafusion.SessionContext()
    +ctx.register_csv("my_table", "path/to/data.csv")
    +
    +# Create and manipulate a DataFrame
    +df = ctx.sql("SELECT * FROM my_table")
    +
    +# Or use the DataFrame API directly
    +df = (ctx.table("my_table")
    +      .filter(col("age") > lit(25))
    +      .select([col("name"), col("age")]))
    +
    +# Execute and collect results
    +result = df.collect()
    +
    +# Display the first few rows
    +df.show()
    +
    +
    +
    +
    +

    HTML Rendering

    +

    When working in Jupyter notebooks or other environments that support HTML rendering, DataFrames will +automatically display as formatted HTML tables, making it easier to visualize your data.

    +

    The _repr_html_ method is called automatically by Jupyter to render a DataFrame. This method +controls how DataFrames appear in notebook environments, providing a richer visualization than +plain text output.

    +
    +
    +

    Customizing HTML Rendering

    +

    You can customize how DataFrames are rendered in HTML by configuring the formatter:

    +
    from datafusion.html_formatter import configure_formatter
    +
    +# Change the default styling
    +configure_formatter(
    +    max_cell_length=25,        # Maximum characters in a cell before truncation
    +    max_width=1000,            # Maximum width in pixels
    +    max_height=300,            # Maximum height in pixels
    +    max_memory_bytes=2097152,  # Maximum memory for rendering (2MB)
    +    min_rows_display=20,       # Minimum number of rows to display
    +    repr_rows=10,              # Number of rows to display in __repr__
    +    enable_cell_expansion=True,# Allow expanding truncated cells
    +    custom_css=None,           # Additional custom CSS
    +    show_truncation_message=True, # Show message when data is truncated
    +    style_provider=None,       # Custom styling provider
    +    use_shared_styles=True     # Share styles across tables
    +)
    +
    +
    +

    The formatter settings affect all DataFrames displayed after configuration.

    +
    +
    +

    Custom Style Providers

    +

    For advanced styling needs, you can create a custom style provider:

    +
    from datafusion.html_formatter import StyleProvider, configure_formatter
    +
    +class MyStyleProvider(StyleProvider):
    +    def get_table_styles(self):
    +        return {
    +            "table": "border-collapse: collapse; width: 100%;",
    +            "th": "background-color: #007bff; color: white; padding: 8px; text-align: left;",
    +            "td": "border: 1px solid #ddd; padding: 8px;",
    +            "tr:nth-child(even)": "background-color: #f2f2f2;",
    +        }
    +
    +    def get_value_styles(self, dtype, value):
    +        """Return custom styles for specific values"""
    +        if dtype == "float" and value < 0:
    +            return "color: red;"
    +        return None
    +
    +# Apply the custom style provider
    +configure_formatter(style_provider=MyStyleProvider())
    +
    +
    +
    +
    +

    Performance Optimization with Shared Styles

    +

    The use_shared_styles parameter (enabled by default) optimizes performance when displaying +multiple DataFrames in notebook environments:

    +
    +
    +

    When use_shared_styles=True: +- CSS styles and JavaScript are included only once per notebook session +- This reduces HTML output size and prevents style duplication +- Improves rendering performance with many DataFrames +- Applies consistent styling across all DataFrames

    +
    +
    +

    Creating a Custom Formatter

    +

    For complete control over rendering, you can implement a custom formatter:

    +
    from datafusion.html_formatter import Formatter, get_formatter
    +
    +class MyFormatter(Formatter):
    +    def format_html(self, batches, schema, has_more=False, table_uuid=None):
    +        # Create your custom HTML here
    +        html = "<div class='my-custom-table'>"
    +        # ... formatting logic ...
    +        html += "</div>"
    +        return html
    +
    +# Set as the global formatter
    +configure_formatter(formatter_class=MyFormatter)
    +
    +# Or use the formatter just for specific operations
    +formatter = get_formatter()
    +custom_html = formatter.format_html(batches, schema)
    +
    +
    +
    +
    +

    Managing Formatters

    +

    Reset to default formatting:

    +
    from datafusion.html_formatter import reset_formatter
    +
    +# Reset to default settings
    +reset_formatter()
    +
    +
    +

    Get the current formatter settings:

    +
    from datafusion.html_formatter import get_formatter
    +
    +formatter = get_formatter()
    +print(formatter.max_rows)
    +print(formatter.theme)
    +
    +
    +
    +
    +

    Contextual Formatting

    +

    You can also use a context manager to temporarily change formatting settings:

    +
    from datafusion.html_formatter import formatting_context
    +
    +# Default formatting
    +df.show()
    +
    +# Temporarily use different formatting
    +with formatting_context(max_rows=100, theme="dark"):
    +    df.show()  # Will use the temporary settings
    +
    +# Back to default formatting
    +df.show()
    +
    +
    +
    +
    +

    Memory and Display Controls

    +

    You can control how much data is displayed and how much memory is used for rendering:

    +
    +
    configure_formatter(
    +    max_memory_bytes=4 * 1024 * 1024,  # 4MB maximum memory for display
    +    min_rows_display=50,               # Always show at least 50 rows
    +    repr_rows=20                       # Show 20 rows in __repr__ output
    +)
    +
    +
    +
    +

    These parameters help balance comprehensive data display against performance considerations.

    +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/user-guide/introduction.html b/user-guide/introduction.html index 64f713781..70d4f4a8b 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • @@ -415,7 +440,7 @@

    Installation
    In [1]: import datafusion
     
     In [2]: datafusion.__version__
    -Out[2]: '46.0.0'
    +Out[2]: '47.0.0'
     

    In this documentation we will also show some examples for how DataFusion integrates diff --git a/user-guide/io/arrow.html b/user-guide/io/arrow.html index caa0e63f7..7abc1d48d 100644 --- a/user-guide/io/arrow.html +++ b/user-guide/io/arrow.html @@ -117,6 +117,11 @@ Data Sources +

  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/avro.html b/user-guide/io/avro.html index 9c18f51b1..11306da96 100644 --- a/user-guide/io/avro.html +++ b/user-guide/io/avro.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/csv.html b/user-guide/io/csv.html index 880ce7757..c07f7780c 100644 --- a/user-guide/io/csv.html +++ b/user-guide/io/csv.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/index.html b/user-guide/io/index.html index b42512dc9..b2bfcab97 100644 --- a/user-guide/io/index.html +++ b/user-guide/io/index.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/json.html b/user-guide/io/json.html index 52d537771..627d4866b 100644 --- a/user-guide/io/json.html +++ b/user-guide/io/json.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/parquet.html b/user-guide/io/parquet.html index 71d033864..168fd0121 100644 --- a/user-guide/io/parquet.html +++ b/user-guide/io/parquet.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/io/table_provider.html b/user-guide/io/table_provider.html index 410623c36..215ed51f9 100644 --- a/user-guide/io/table_provider.html +++ b/user-guide/io/table_provider.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • diff --git a/user-guide/sql.html b/user-guide/sql.html index e8d46a507..52eda7921 100644 --- a/user-guide/sql.html +++ b/user-guide/sql.html @@ -117,6 +117,11 @@ Data Sources +
  • + + DataFrames + +
  • Common Operations @@ -275,6 +280,11 @@ datafusion.catalog
  • +
  • + + datafusion.col + +
  • datafusion.context @@ -295,6 +305,11 @@ datafusion.functions
  • +
  • + + datafusion.html_formatter + +
  • datafusion.input @@ -347,6 +362,16 @@ datafusion.udf
  • +
  • + + datafusion.unparser + +
  • +
  • + + datafusion.user_defined + +
  • From 80655fc48dd251f0564592b1a41acb04e2bf0e20 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 12 Jul 2025 11:50:09 +0000 Subject: [PATCH 27/36] Publish built docs triggered by f10d3b892b81f48b4dfc2ccd848d9c2ad5a1c4a7 --- .../autoapi/datafusion/catalog/index.rst.txt | 211 ++- _sources/autoapi/datafusion/col/index.rst.txt | 29 - .../autoapi/datafusion/context/index.rst.txt | 53 +- .../datafusion/dataframe/index.rst.txt | 354 +++- .../dataframe_formatter/index.rst.txt | 488 +++++ .../autoapi/datafusion/expr/index.rst.txt | 17 + .../datafusion/html_formatter/index.rst.txt | 499 +----- _sources/autoapi/datafusion/index.rst.txt | 482 ++++- _sources/autoapi/datafusion/io/index.rst.txt | 8 +- _sources/autoapi/datafusion/udf/index.rst.txt | 11 - .../datafusion/user_defined/index.rst.txt | 102 +- _sources/contributor-guide/ffi.rst.txt | 2 +- _sources/index.rst.txt | 2 +- _sources/user-guide/basics.rst.txt | 2 +- .../common-operations/functions.rst.txt | 2 +- _sources/user-guide/data-sources.rst.txt | 56 + _sources/user-guide/dataframe/index.rst.txt | 209 +++ .../rendering.rst.txt} | 106 +- autoapi/datafusion/catalog/index.html | 513 +++++- autoapi/datafusion/col/index.html | 540 ------ autoapi/datafusion/context/index.html | 180 +- autoapi/datafusion/dataframe/index.html | 1130 +++++++++++- .../datafusion/dataframe_formatter/index.html | 1533 ++++++++++++++++ autoapi/datafusion/expr/index.html | 95 +- autoapi/datafusion/functions/index.html | 51 +- autoapi/datafusion/html_formatter/index.html | 1136 +----------- autoapi/datafusion/index.html | 1578 ++++++++++++++--- autoapi/datafusion/input/base/index.html | 51 +- autoapi/datafusion/input/index.html | 51 +- autoapi/datafusion/input/location/index.html | 51 +- autoapi/datafusion/io/index.html | 59 +- autoapi/datafusion/object_store/index.html | 51 +- autoapi/datafusion/plan/index.html | 51 +- autoapi/datafusion/record_batch/index.html | 51 +- autoapi/datafusion/substrait/index.html | 57 +- autoapi/datafusion/udf/index.html | 479 ----- autoapi/datafusion/unparser/index.html | 57 +- autoapi/datafusion/user_defined/index.html | 272 ++- autoapi/index.html | 54 +- contributor-guide/ffi.html | 53 +- contributor-guide/introduction.html | 51 +- genindex.html | 580 ++++-- index.html | 51 +- objects.inv | Bin 7830 -> 8733 bytes py-modindex.html | 62 +- search.html | 51 +- searchindex.js | 2 +- user-guide/basics.html | 53 +- .../common-operations/aggregations.html | 91 +- user-guide/common-operations/basic-info.html | 85 +- user-guide/common-operations/expressions.html | 51 +- user-guide/common-operations/functions.html | 71 +- user-guide/common-operations/index.html | 57 +- user-guide/common-operations/joins.html | 51 +- .../common-operations/select-and-filter.html | 51 +- .../common-operations/udf-and-udfa.html | 51 +- user-guide/common-operations/views.html | 51 +- user-guide/common-operations/windows.html | 51 +- user-guide/configuration.html | 51 +- user-guide/data-sources.html | 184 +- user-guide/dataframe/index.html | 706 ++++++++ .../rendering.html} | 315 ++-- user-guide/introduction.html | 53 +- user-guide/io/arrow.html | 51 +- user-guide/io/avro.html | 51 +- user-guide/io/csv.html | 51 +- user-guide/io/index.html | 51 +- user-guide/io/json.html | 51 +- user-guide/io/parquet.html | 51 +- user-guide/io/table_provider.html | 51 +- user-guide/sql.html | 51 +- 71 files changed, 9439 insertions(+), 4464 deletions(-) delete mode 100644 _sources/autoapi/datafusion/col/index.rst.txt create mode 100644 _sources/autoapi/datafusion/dataframe_formatter/index.rst.txt delete mode 100644 _sources/autoapi/datafusion/udf/index.rst.txt create mode 100644 _sources/user-guide/dataframe/index.rst.txt rename _sources/user-guide/{dataframe.rst.txt => dataframe/rendering.rst.txt} (72%) delete mode 100644 autoapi/datafusion/col/index.html create mode 100644 autoapi/datafusion/dataframe_formatter/index.html delete mode 100644 autoapi/datafusion/udf/index.html create mode 100644 user-guide/dataframe/index.html rename user-guide/{dataframe.html => dataframe/rendering.html} (65%) diff --git a/_sources/autoapi/datafusion/catalog/index.rst.txt b/_sources/autoapi/datafusion/catalog/index.rst.txt index fbf71c621..9364aae2e 100644 --- a/_sources/autoapi/datafusion/catalog/index.rst.txt +++ b/_sources/autoapi/datafusion/catalog/index.rst.txt @@ -15,64 +15,253 @@ Classes .. autoapisummary:: datafusion.catalog.Catalog - datafusion.catalog.Database + datafusion.catalog.CatalogProvider + datafusion.catalog.Schema + datafusion.catalog.SchemaProvider datafusion.catalog.Table Module Contents --------------- -.. py:class:: Catalog(catalog: datafusion._internal.Catalog) +.. py:class:: Catalog(catalog: datafusion._internal.catalog.RawCatalog) DataFusion data catalog. This constructor is not typically called by the end user. - .. py:method:: database(name: str = 'public') -> Database + .. py:method:: __repr__() -> str + + Print a string representation of the catalog. + + + + .. py:method:: database(name: str = 'public') -> Schema + + Returns the database with the given ``name`` from this catalog. + + + + .. py:method:: deregister_schema(name: str, cascade: bool = True) -> Schema | None + + Deregister a schema from this catalog. + + + + .. py:method:: memory_catalog() -> Catalog + :staticmethod: + + + Create an in-memory catalog provider. + + + + .. py:method:: names() -> set[str] + + This is an alias for `schema_names`. + + + + .. py:method:: register_schema(name, schema) -> Schema | None + + Register a schema with this catalog. + + + + .. py:method:: schema(name: str = 'public') -> Schema Returns the database with the given ``name`` from this catalog. - .. py:method:: names() -> list[str] + .. py:method:: schema_names() -> set[str] - Returns the list of databases in this catalog. + Returns the list of schemas in this catalog. .. py:attribute:: catalog -.. py:class:: Database(db: datafusion._internal.Database) +.. py:class:: CatalogProvider + + Bases: :py:obj:`abc.ABC` + + + Abstract class for defining a Python based Catalog Provider. - DataFusion Database. + + .. py:method:: deregister_schema(name: str, cascade: bool) -> None + + Remove a schema from this catalog. + + This method is optional. If your catalog provides a fixed list of schemas, you + do not need to implement this method. + + :param name: The name of the schema to remove. + :param cascade: If true, deregister the tables within the schema. + + + + .. py:method:: register_schema(name: str, schema: SchemaProviderExportable | SchemaProvider | Schema) -> None + + Add a schema to this catalog. + + This method is optional. If your catalog provides a fixed list of schemas, you + do not need to implement this method. + + + + .. py:method:: schema(name: str) -> Schema | None + :abstractmethod: + + + Retrieve a specific schema from this catalog. + + + + .. py:method:: schema_names() -> set[str] + :abstractmethod: + + + Set of the names of all schemas in this catalog. + + + +.. py:class:: Schema(schema: datafusion._internal.catalog.RawSchema) + + DataFusion Schema. This constructor is not typically called by the end user. + .. py:method:: __repr__() -> str + + Print a string representation of the schema. + + + + .. py:method:: deregister_table(name: str) -> None + + Deregister a table provider from this schema. + + + + .. py:method:: memory_schema() -> Schema + :staticmethod: + + + Create an in-memory schema provider. + + + .. py:method:: names() -> set[str] - Returns the list of all tables in this database. + This is an alias for `table_names`. + + + + .. py:method:: register_table(name, table) -> None + + Register a table provider in this schema. .. py:method:: table(name: str) -> Table - Return the table with the given ``name`` from this database. + Return the table with the given ``name`` from this schema. + + + + .. py:method:: table_names() -> set[str] + + Returns the list of all tables in this schema. + + + + .. py:attribute:: _raw_schema + + +.. py:class:: SchemaProvider + + Bases: :py:obj:`abc.ABC` + + + Abstract class for defining a Python based Schema Provider. + + + .. py:method:: deregister_table(name, cascade: bool) -> None + + Remove a table from this schema. + + This method is optional. If your schema provides a fixed list of tables, you do + not need to implement this method. + + + + .. py:method:: owner_name() -> str | None + Returns the owner of the schema. + This is an optional method. The default return is None. - .. py:attribute:: db -.. py:class:: Table(table: datafusion._internal.Table) + .. py:method:: register_table(name: str, table: Table) -> None + + Add a table from this schema. + + This method is optional. If your schema provides a fixed list of tables, you do + not need to implement this method. + + + + .. py:method:: table(name: str) -> Table | None + :abstractmethod: + + + Retrieve a specific table from this schema. + + + + .. py:method:: table_exist(name: str) -> bool + :abstractmethod: + + + Returns true if the table exists in this schema. + + + + .. py:method:: table_names() -> set[str] + :abstractmethod: + + + Set of the names of all tables in this schema. + + + +.. py:class:: Table(table: datafusion._internal.catalog.RawTable) DataFusion table. This constructor is not typically called by the end user. + .. py:method:: __repr__() -> str + + Print a string representation of the table. + + + + .. py:method:: from_dataset(dataset: pyarrow.dataset.Dataset) -> Table + :staticmethod: + + + Turn a pyarrow Dataset into a Table. + + + .. py:property:: kind :type: str diff --git a/_sources/autoapi/datafusion/col/index.rst.txt b/_sources/autoapi/datafusion/col/index.rst.txt deleted file mode 100644 index 138a35e7d..000000000 --- a/_sources/autoapi/datafusion/col/index.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -datafusion.col -============== - -.. py:module:: datafusion.col - -.. autoapi-nested-parse:: - - Col class. - - - -Attributes ----------- - -.. autoapisummary:: - - datafusion.col.col - datafusion.col.column - - -Module Contents ---------------- - -.. py:data:: col - :type: Col - -.. py:data:: column - :type: Col - diff --git a/_sources/autoapi/datafusion/context/index.rst.txt b/_sources/autoapi/datafusion/context/index.rst.txt index 12c4965c9..672346d67 100644 --- a/_sources/autoapi/datafusion/context/index.rst.txt +++ b/_sources/autoapi/datafusion/context/index.rst.txt @@ -16,6 +16,7 @@ Classes datafusion.context.ArrowArrayExportable datafusion.context.ArrowStreamExportable + datafusion.context.CatalogProviderExportable datafusion.context.RuntimeConfig datafusion.context.RuntimeEnvBuilder datafusion.context.SQLOptions @@ -53,6 +54,19 @@ Module Contents .. py:method:: __arrow_c_stream__(requested_schema: object | None = None) -> object +.. py:class:: CatalogProviderExportable + + Bases: :py:obj:`Protocol` + + + Type hint for object that has __datafusion_catalog_provider__ PyCapsule. + + https://docs.rs/datafusion/latest/datafusion/catalog/trait.CatalogProvider.html + + + .. py:method:: __datafusion_catalog_provider__() -> object + + .. py:class:: RuntimeConfig Bases: :py:obj:`RuntimeEnvBuilder` @@ -411,12 +425,29 @@ Module Contents df = ctx.read_csv("data.csv") + .. py:method:: __repr__() -> str + + Print a string representation of the Session Context. + + + + .. py:method:: _convert_table_partition_cols(table_partition_cols: list[tuple[str, str | pyarrow.DataType]]) -> list[tuple[str, pyarrow.DataType]] + :staticmethod: + + + .. py:method:: catalog(name: str = 'datafusion') -> datafusion.catalog.Catalog Retrieve a catalog by name. + .. py:method:: catalog_names() -> set[str] + + Returns the list of catalogs in this context. + + + .. py:method:: create_dataframe(partitions: list[list[pyarrow.RecordBatch]], name: str | None = None, schema: pyarrow.Schema | None = None) -> datafusion.dataframe.DataFrame Create and return a dataframe using the provided partitions. @@ -544,7 +575,7 @@ Module Contents - .. py:method:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame + .. py:method:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame Create a :py:class:`DataFrame` for reading Avro data source. @@ -557,7 +588,7 @@ Module Contents - .. py:method:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame + .. py:method:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -579,7 +610,7 @@ Module Contents - .. py:method:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame + .. py:method:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a line-delimited JSON data source. @@ -596,7 +627,7 @@ Module Contents - .. py:method:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) -> datafusion.dataframe.DataFrame + .. py:method:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) -> datafusion.dataframe.DataFrame Read a Parquet source into a :py:class:`~datafusion.dataframe.Dataframe`. @@ -628,7 +659,7 @@ Module Contents - .. py:method:: register_avro(name: str, path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_extension: str = '.avro', table_partition_cols: list[tuple[str, str]] | None = None) -> None + .. py:method:: register_avro(name: str, path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_extension: str = '.avro', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None) -> None Register an Avro file as a table. @@ -643,6 +674,12 @@ Module Contents + .. py:method:: register_catalog_provider(name: str, provider: CatalogProviderExportable | datafusion.catalog.CatalogProvider | datafusion.catalog.Catalog) -> None + + Register a catalog provider. + + + .. py:method:: register_csv(name: str, path: str | pathlib.Path | list[str | pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', file_compression_type: str | None = None) -> None Register a CSV file as a table. @@ -674,7 +711,7 @@ Module Contents - .. py:method:: register_json(name: str, path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> None + .. py:method:: register_json(name: str, path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> None Register a JSON file as a table. @@ -693,7 +730,7 @@ Module Contents - .. py:method:: register_listing_table(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, file_extension: str = '.parquet', schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) -> None + .. py:method:: register_listing_table(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.parquet', schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) -> None Register multiple files as a single table. @@ -720,7 +757,7 @@ Module Contents - .. py:method:: register_parquet(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None) -> None + .. py:method:: register_parquet(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None) -> None Register a Parquet file as a table. diff --git a/_sources/autoapi/datafusion/dataframe/index.rst.txt b/_sources/autoapi/datafusion/dataframe/index.rst.txt index 5262d74fc..f0272cc79 100644 --- a/_sources/autoapi/datafusion/dataframe/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe/index.rst.txt @@ -18,6 +18,8 @@ Classes datafusion.dataframe.Compression datafusion.dataframe.DataFrame + datafusion.dataframe.ParquetColumnOptions + datafusion.dataframe.ParquetWriterOptions Module Contents @@ -100,7 +102,7 @@ Module Contents create a :py:class:`DataFrame`. - .. py:method:: __arrow_c_stream__(requested_schema: pyarrow.Schema) -> Any + .. py:method:: __arrow_c_stream__(requested_schema: object | None = None) -> object Export an Arrow PyCapsule Stream. @@ -202,6 +204,17 @@ Module Contents + .. py:method:: default_str_repr(batches: list[pyarrow.RecordBatch], schema: pyarrow.Schema, has_more: bool, table_uuid: str | None = None) -> str + :staticmethod: + + + Return the default string representation of a DataFrame. + + This method is used by the default formatter and implemented in Rust for + performance reasons. + + + .. py:method:: describe() -> DataFrame Return the statistics for this DataFrame. @@ -269,17 +282,15 @@ Module Contents - .. py:method:: explain(verbose: bool = False, analyze: bool = False) -> DataFrame + .. py:method:: explain(verbose: bool = False, analyze: bool = False) -> None - Return a DataFrame with the explanation of its plan so far. + Print an explanation of the DataFrame's plan so far. 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. - :returns: DataFrame with the explanation of its plan. - .. py:method:: fill_null(value: Any, subset: list[str] | None = None) -> DataFrame @@ -673,7 +684,9 @@ Module Contents - .. py:method:: write_parquet(path: str | pathlib.Path, compression: Union[str, Compression] = Compression.ZSTD, compression_level: int | None = None) -> None + .. py:method:: write_parquet(path: str | pathlib.Path, compression: str, compression_level: int | None = None) -> None + write_parquet(path: str | pathlib.Path, compression: Compression = Compression.ZSTD, compression_level: int | None = None) -> None + write_parquet(path: str | pathlib.Path, compression: ParquetWriterOptions, compression_level: None = None) -> None Execute the :py:class:`DataFrame` and write the results to a Parquet file. @@ -694,6 +707,335 @@ Module Contents + .. py:method:: write_parquet_with_options(path: str | pathlib.Path, options: ParquetWriterOptions) -> None + + Execute the :py:class:`DataFrame` and write the results to a Parquet file. + + Allows advanced writer options to be set with `ParquetWriterOptions`. + + :param path: Path of the Parquet file to write. + :param options: Sets the writer parquet options (see `ParquetWriterOptions`). + + + .. py:attribute:: df +.. py:class:: ParquetColumnOptions(encoding: Optional[str] = None, dictionary_enabled: Optional[bool] = None, compression: Optional[str] = None, statistics_enabled: Optional[str] = None, bloom_filter_enabled: Optional[bool] = None, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None) + + Parquet options for individual columns. + + Contains the available options that can be applied for an individual Parquet column, + replacing the global options in `ParquetWriterOptions`. + + .. attribute:: encoding + + Sets encoding for the column path. Valid values are: `plain`, + `plain_dictionary`, `rle`, `bit_packed`, `delta_binary_packed`, + `delta_length_byte_array`, `delta_byte_array`, `rle_dictionary`, and + `byte_stream_split`. These values are not case-sensitive. If `None`, uses + the default parquet options + + .. attribute:: dictionary_enabled + + Sets if dictionary encoding is enabled for the column path. + If `None`, uses the default parquet options + + .. attribute:: compression + + Sets default parquet compression codec for the column path. Valid + values are `uncompressed`, `snappy`, `gzip(level)`, `lzo`, `brotli(level)`, + `lz4`, `zstd(level)`, and `lz4_raw`. These values are not case-sensitive. If + `None`, uses the default parquet options. + + .. attribute:: statistics_enabled + + Sets if statistics are enabled for the column Valid values + are: `none`, `chunk`, and `page` These values are not case sensitive. If + `None`, uses the default parquet options. + + .. attribute:: bloom_filter_enabled + + Sets if bloom filter is enabled for the column path. If + `None`, uses the default parquet options. + + .. attribute:: bloom_filter_fpp + + Sets bloom filter false positive probability for the column + path. If `None`, uses the default parquet options. + + .. attribute:: bloom_filter_ndv + + Sets bloom filter number of distinct values. If `None`, uses + the default parquet options. + + Initialize the ParquetColumnOptions. + + + .. py:attribute:: bloom_filter_enabled + :value: None + + + + .. py:attribute:: bloom_filter_fpp + :value: None + + + + .. py:attribute:: bloom_filter_ndv + :value: None + + + + .. py:attribute:: compression + :value: None + + + + .. py:attribute:: dictionary_enabled + :value: None + + + + .. py:attribute:: encoding + :value: None + + + + .. py:attribute:: statistics_enabled + :value: None + + + +.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: Optional[str] = 'zstd(3)', compression_level: Optional[int] = None, dictionary_enabled: Optional[bool] = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: Optional[str] = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: Optional[int] = 64, statistics_truncate_length: Optional[int] = None, data_page_row_count_limit: int = 20000, encoding: Optional[str] = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: Optional[dict[str, ParquetColumnOptions]] = None) + + Advanced parquet writer options. + + Allows settings the writer options that apply to the entire file. Some options can + also be set on a column by column basis, with the field `column_specific_options` + (see `ParquetColumnOptions`). + + .. attribute:: data_pagesize_limit + + Sets best effort maximum size of data page in bytes. + + .. attribute:: write_batch_size + + Sets write_batch_size in bytes. + + .. attribute:: writer_version + + Sets parquet writer version. Valid values are `1.0` and + `2.0`. + + .. attribute:: skip_arrow_metadata + + Skip encoding the embedded arrow metadata in the + KV_meta. + + .. attribute:: compression + + Compression type to use. Default is "zstd(3)". + Available compression types are + - "uncompressed": No compression. + - "snappy": Snappy compression. + - "gzip(n)": Gzip compression with level n. + - "brotli(n)": Brotli compression with level n. + - "lz4": LZ4 compression. + - "lz4_raw": LZ4_RAW compression. + - "zstd(n)": Zstandard compression with level n. + + .. attribute:: dictionary_enabled + + Sets if dictionary encoding is enabled. If None, uses + the default parquet writer setting. + + .. attribute:: dictionary_page_size_limit + + Sets best effort maximum dictionary page size, + in bytes. + + .. attribute:: statistics_enabled + + Sets if statistics are enabled for any column Valid + values are `none`, `chunk`, and `page`. If None, uses the default + parquet writer setting. + + .. attribute:: max_row_group_size + + Target maximum number of rows in each row group + (defaults to 1M rows). Writing larger row groups requires more memory to + write, but can get better compression and be faster to read. + + .. attribute:: created_by + + Sets "created by" property. + + .. attribute:: column_index_truncate_length + + Sets column index truncate length. + + .. attribute:: statistics_truncate_length + + Sets statistics truncate length. If None, uses + the default parquet writer setting. + + .. attribute:: data_page_row_count_limit + + Sets best effort maximum number of rows in a data + page. + + .. attribute:: encoding + + Sets default encoding for any column. Valid values are `plain`, + `plain_dictionary`, `rle`, `bit_packed`, `delta_binary_packed`, + `delta_length_byte_array`, `delta_byte_array`, `rle_dictionary`, and + `byte_stream_split`. If None, uses the default parquet writer setting. + + .. attribute:: bloom_filter_on_write + + Write bloom filters for all columns when creating + parquet files. + + .. attribute:: bloom_filter_fpp + + Sets bloom filter false positive probability. If None, + uses the default parquet writer setting + + .. attribute:: bloom_filter_ndv + + Sets bloom filter number of distinct values. If None, uses + the default parquet writer setting. + + .. attribute:: allow_single_file_parallelism + + Controls whether DataFusion will attempt to + speed up writing parquet files by serializing them in parallel. Each + column in each row group in each output file are serialized in parallel + leveraging a maximum possible core count of n_files * n_row_groups * + n_columns. + + .. attribute:: maximum_parallel_row_group_writers + + By default parallel parquet writer is + tuned for minimum memory usage in a streaming execution plan. You may + see a performance benefit when writing large parquet files by increasing + `maximum_parallel_row_group_writers` and + `maximum_buffered_record_batches_per_stream` if your system has idle + cores and can tolerate additional memory usage. Boosting these values is + likely worthwhile when writing out already in-memory data, such as from + a cached data frame. + + .. attribute:: maximum_buffered_record_batches_per_stream + + See + `maximum_parallel_row_group_writers`. + + .. attribute:: column_specific_options + + Overrides options for specific columns. If a column + is not a part of this dictionary, it will use the parameters provided here. + + Initialize the ParquetWriterOptions. + + + .. py:attribute:: allow_single_file_parallelism + :value: True + + + + .. py:attribute:: bloom_filter_fpp + :value: None + + + + .. py:attribute:: bloom_filter_ndv + :value: None + + + + .. py:attribute:: bloom_filter_on_write + :value: False + + + + .. py:attribute:: column_index_truncate_length + :value: 64 + + + + .. py:attribute:: column_specific_options + :value: None + + + + .. py:attribute:: created_by + :value: 'datafusion-python' + + + + .. py:attribute:: data_page_row_count_limit + :value: 20000 + + + + .. py:attribute:: data_pagesize_limit + :value: 1048576 + + + + .. py:attribute:: dictionary_enabled + :value: True + + + + .. py:attribute:: dictionary_page_size_limit + :value: 1048576 + + + + .. py:attribute:: encoding + :value: None + + + + .. py:attribute:: max_row_group_size + :value: 1048576 + + + + .. py:attribute:: maximum_buffered_record_batches_per_stream + :value: 2 + + + + .. py:attribute:: maximum_parallel_row_group_writers + :value: 1 + + + + .. py:attribute:: skip_arrow_metadata + :value: False + + + + .. py:attribute:: statistics_enabled + :value: 'page' + + + + .. py:attribute:: statistics_truncate_length + :value: None + + + + .. py:attribute:: write_batch_size + :value: 1024 + + + + .. py:attribute:: writer_version + :value: '1.0' + + + diff --git a/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt new file mode 100644 index 000000000..ad3e62b5d --- /dev/null +++ b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt @@ -0,0 +1,488 @@ +datafusion.dataframe_formatter +============================== + +.. py:module:: datafusion.dataframe_formatter + +.. autoapi-nested-parse:: + + HTML formatting utilities for DataFusion DataFrames. + + + +Classes +------- + +.. autoapisummary:: + + datafusion.dataframe_formatter.CellFormatter + datafusion.dataframe_formatter.DataFrameHtmlFormatter + datafusion.dataframe_formatter.DefaultStyleProvider + datafusion.dataframe_formatter.FormatterManager + datafusion.dataframe_formatter.StyleProvider + + +Functions +--------- + +.. autoapisummary:: + + datafusion.dataframe_formatter._refresh_formatter_reference + datafusion.dataframe_formatter._validate_bool + datafusion.dataframe_formatter._validate_positive_int + datafusion.dataframe_formatter.configure_formatter + datafusion.dataframe_formatter.get_formatter + datafusion.dataframe_formatter.reset_formatter + datafusion.dataframe_formatter.set_formatter + + +Module Contents +--------------- + +.. py:class:: CellFormatter + + Bases: :py:obj:`Protocol` + + + Protocol for cell value formatters. + + + .. py:method:: __call__(value: Any) -> str + + Format a cell value to string representation. + + + +.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: Optional[str] = None, show_truncation_message: bool = True, style_provider: Optional[StyleProvider] = None, use_shared_styles: bool = True) + + Configurable HTML formatter for DataFusion DataFrames. + + This class handles the HTML rendering of DataFrames for display in + Jupyter notebooks and other rich display contexts. + + This class supports extension through composition. Key extension points: + - Provide a custom StyleProvider for styling cells and headers + - Register custom formatters for specific types + - Provide custom cell builders for specialized cell rendering + + :param max_cell_length: Maximum characters to display in a cell before truncation + :param max_width: Maximum width of the HTML table in pixels + :param max_height: Maximum height of the HTML table in pixels + :param max_memory_bytes: Maximum memory in bytes for rendered data (default: 2MB) + :param min_rows_display: Minimum number of rows to display + :param repr_rows: Default number of rows to display in repr output + :param enable_cell_expansion: Whether to add expand/collapse buttons for long cell + values + :param custom_css: Additional CSS to include in the HTML output + :param show_truncation_message: Whether to display a message when data is truncated + :param style_provider: Custom provider for cell and header styles + :param use_shared_styles: Whether to load styles and scripts only once per notebook + session + + Initialize the HTML formatter. + + :param max_cell_length: Maximum length of cell content before truncation. + :type max_cell_length: int, default 25 + :param max_width: Maximum width of the displayed table in pixels. + :type max_width: int, default 1000 + :param max_height: Maximum height of the displayed table in pixels. + :type max_height: int, default 300 + :param max_memory_bytes: Maximum memory in bytes for rendered data. + :type max_memory_bytes: int, default 2097152 (2MB) + :param min_rows_display: Minimum number of rows to display. + :type min_rows_display: int, default 20 + :param repr_rows: Default number of rows to display in repr output. + :type repr_rows: int, default 10 + :param enable_cell_expansion: Whether to allow cells to expand when clicked. + :type enable_cell_expansion: bool, default True + :param custom_css: Custom CSS to apply to the HTML table. + :type custom_css: str, optional + :param show_truncation_message: Whether to show a message indicating that content has been truncated. + :type show_truncation_message: bool, default True + :param style_provider: Provider of CSS styles for the HTML table. If None, DefaultStyleProvider + is used. + :type style_provider: StyleProvider, optional + :param use_shared_styles: Whether to use shared styles across multiple tables. + :type use_shared_styles: bool, default True + :param Raises: + :param ------: + :param ValueError: If max_cell_length, max_width, max_height, max_memory_bytes, + min_rows_display, or repr_rows is not a positive integer. + :param TypeError: If enable_cell_expansion, show_truncation_message, or use_shared_styles is + not a boolean, + or if custom_css is provided but is not a string, + or if style_provider is provided but does not implement the StyleProvider + protocol. + + + .. py:method:: _build_expandable_cell(formatted_value: str, row_count: int, col_idx: int, table_uuid: str) -> str + + Build an expandable cell for long content. + + + + .. py:method:: _build_html_footer(has_more: bool) -> list[str] + + Build the HTML footer with JavaScript and messages. + + + + .. py:method:: _build_html_header() -> list[str] + + Build the HTML header with CSS styles. + + + + .. py:method:: _build_regular_cell(formatted_value: str) -> str + + Build a regular table cell. + + + + .. py:method:: _build_table_body(batches: list, table_uuid: str) -> list[str] + + Build the HTML table body with data rows. + + + + .. py:method:: _build_table_container_start() -> list[str] + + Build the opening tags for the table container. + + + + .. py:method:: _build_table_header(schema: Any) -> list[str] + + Build the HTML table header with column names. + + + + .. py:method:: _format_cell_value(value: Any) -> str + + Format a cell value for display. + + Uses registered type formatters if available. + + :param value: The cell value to format + + :returns: Formatted cell value as string + + + + .. py:method:: _get_cell_value(column: Any, row_idx: int) -> Any + + Extract a cell value from a column. + + :param column: Arrow array + :param row_idx: Row index + + :returns: The raw cell value + + + + .. py:method:: _get_default_css() -> str + + Get default CSS styles for the HTML table. + + + + .. py:method:: _get_javascript() -> str + + Get JavaScript code for interactive elements. + + + + .. py:method:: format_html(batches: list, schema: Any, has_more: bool = False, table_uuid: str | None = None) -> str + + Format record batches as HTML. + + This method is used by DataFrame's _repr_html_ implementation and can be + called directly when custom HTML rendering is needed. + + :param batches: List of Arrow RecordBatch objects + :param schema: Arrow Schema object + :param has_more: Whether there are more batches not shown + :param table_uuid: Unique ID for the table, used for JavaScript interactions + + :returns: HTML string representation of the data + + :raises TypeError: If schema is invalid and no batches are provided + + + + .. py:method:: format_str(batches: list, schema: Any, has_more: bool = False, table_uuid: str | None = None) -> str + + Format record batches as a string. + + This method is used by DataFrame's __repr__ implementation and can be + called directly when string rendering is needed. + + :param batches: List of Arrow RecordBatch objects + :param schema: Arrow Schema object + :param has_more: Whether there are more batches not shown + :param table_uuid: Unique ID for the table, used for JavaScript interactions + + :returns: String representation of the data + + :raises TypeError: If schema is invalid and no batches are provided + + + + .. py:method:: register_formatter(type_class: type, formatter: CellFormatter) -> None + + Register a custom formatter for a specific data type. + + :param type_class: The type to register a formatter for + :param formatter: Function that takes a value of the given type and returns + a formatted string + + + + .. py:method:: set_custom_cell_builder(builder: Callable[[Any, int, int, str], str]) -> None + + Set a custom cell builder function. + + :param builder: Function that takes (value, row, col, table_id) and returns HTML + + + + .. py:method:: set_custom_header_builder(builder: Callable[[Any], str]) -> None + + Set a custom header builder function. + + :param builder: Function that takes a field and returns HTML + + + + .. py:attribute:: _custom_cell_builder + :type: Optional[Callable[[Any, int, int, str], str]] + :value: None + + + + .. py:attribute:: _custom_header_builder + :type: Optional[Callable[[Any], str]] + :value: None + + + + .. py:attribute:: _type_formatters + :type: dict[type, CellFormatter] + + + .. py:attribute:: custom_css + :value: None + + + + .. py:attribute:: enable_cell_expansion + :value: True + + + + .. py:attribute:: max_cell_length + :value: 25 + + + + .. py:attribute:: max_height + :value: 300 + + + + .. py:attribute:: max_memory_bytes + :value: 2097152 + + + + .. py:attribute:: max_width + :value: 1000 + + + + .. py:attribute:: min_rows_display + :value: 20 + + + + .. py:attribute:: repr_rows + :value: 10 + + + + .. py:attribute:: show_truncation_message + :value: True + + + + .. py:attribute:: style_provider + + + .. py:attribute:: use_shared_styles + :value: True + + + +.. py:class:: DefaultStyleProvider + + Default implementation of StyleProvider. + + + .. py:method:: get_cell_style() -> str + + Get the CSS style for table cells. + + :returns: CSS style string + + + + .. py:method:: get_header_style() -> str + + Get the CSS style for header cells. + + :returns: CSS style string + + + +.. py:class:: FormatterManager + + Manager class for the global DataFrame HTML formatter instance. + + + .. py:method:: get_formatter() -> DataFrameHtmlFormatter + :classmethod: + + + Get the current global DataFrame HTML formatter. + + :returns: The global HTML formatter instance + + + + .. py:method:: set_formatter(formatter: DataFrameHtmlFormatter) -> None + :classmethod: + + + Set the global DataFrame HTML formatter. + + :param formatter: The formatter instance to use globally + + + + .. py:attribute:: _default_formatter + :type: DataFrameHtmlFormatter + + +.. py:class:: StyleProvider + + Bases: :py:obj:`Protocol` + + + Protocol for HTML style providers. + + + .. py:method:: get_cell_style() -> str + + Get the CSS style for table cells. + + + + .. py:method:: get_header_style() -> str + + Get the CSS style for header cells. + + + +.. py:function:: _refresh_formatter_reference() -> None + + Refresh formatter reference in any modules using it. + + This helps ensure that changes to the formatter are reflected in existing + DataFrames that might be caching the formatter reference. + + +.. py:function:: _validate_bool(value: Any, param_name: str) -> None + + Validate that a parameter is a boolean. + + :param value: The value to validate + :param param_name: Name of the parameter (used in error message) + + :raises TypeError: If the value is not a boolean + + +.. py:function:: _validate_positive_int(value: Any, param_name: str) -> None + + Validate that a parameter is a positive integer. + + :param value: The value to validate + :param param_name: Name of the parameter (used in error message) + + :raises ValueError: If the value is not a positive integer + + +.. py:function:: configure_formatter(**kwargs: Any) -> None + + Configure the global DataFrame HTML formatter. + + This function creates a new formatter with the provided configuration + and sets it as the global formatter for all DataFrames. + + :param \*\*kwargs: Formatter configuration parameters like max_cell_length, + max_width, max_height, enable_cell_expansion, etc. + + :raises ValueError: If any invalid parameters are provided + + .. rubric:: Example + + >>> from datafusion.html_formatter import configure_formatter + >>> configure_formatter( + ... max_cell_length=50, + ... max_height=500, + ... enable_cell_expansion=True, + ... use_shared_styles=True + ... ) + + +.. py:function:: get_formatter() -> DataFrameHtmlFormatter + + Get the current global DataFrame HTML formatter. + + This function is used by the DataFrame._repr_html_ implementation to access + the shared formatter instance. It can also be used directly when custom + HTML rendering is needed. + + :returns: The global HTML formatter instance + + .. rubric:: Example + + >>> from datafusion.html_formatter import get_formatter + >>> formatter = get_formatter() + >>> formatter.max_cell_length = 50 # Increase cell length + + +.. py:function:: reset_formatter() -> None + + Reset the global DataFrame HTML formatter to default settings. + + This function creates a new formatter with default configuration + and sets it as the global formatter for all DataFrames. + + .. rubric:: Example + + >>> from datafusion.html_formatter import reset_formatter + >>> reset_formatter() # Reset formatter to default settings + + +.. py:function:: set_formatter(formatter: DataFrameHtmlFormatter) -> None + + Set the global DataFrame HTML formatter. + + :param formatter: The formatter instance to use globally + + .. rubric:: Example + + >>> from datafusion.html_formatter import get_formatter, set_formatter + >>> custom_formatter = DataFrameHtmlFormatter(max_cell_length=100) + >>> set_formatter(custom_formatter) + + diff --git a/_sources/autoapi/datafusion/expr/index.rst.txt b/_sources/autoapi/datafusion/expr/index.rst.txt index 51caf4b2f..81bb5b5a0 100644 --- a/_sources/autoapi/datafusion/expr/index.rst.txt +++ b/_sources/autoapi/datafusion/expr/index.rst.txt @@ -677,6 +677,17 @@ Module Contents + .. py:method:: literal_with_metadata(value: Any, metadata: dict[str, str]) -> Expr + :staticmethod: + + + Creates a new expression representing a scalar value with metadata. + + :param value: A valid PyArrow scalar value or easily castable to one. + :param metadata: Metadata to attach to the expression. + + + .. py:method:: ln() -> Expr Returns the natural logarithm (base e) of the argument. @@ -1068,6 +1079,12 @@ Module Contents parameter must be set. + .. py:method:: __repr__() -> str + + Print a string representation of the window frame. + + + .. py:method:: get_frame_units() -> str Returns the window frame units for the bounds. diff --git a/_sources/autoapi/datafusion/html_formatter/index.rst.txt b/_sources/autoapi/datafusion/html_formatter/index.rst.txt index b00cced17..2b9efd822 100644 --- a/_sources/autoapi/datafusion/html_formatter/index.rst.txt +++ b/_sources/autoapi/datafusion/html_formatter/index.rst.txt @@ -5,504 +5,7 @@ datafusion.html_formatter .. autoapi-nested-parse:: - HTML formatting utilities for DataFusion DataFrames. + Deprecated module for dataframe formatting. -Classes -------- - -.. autoapisummary:: - - datafusion.html_formatter.CellFormatter - datafusion.html_formatter.DataFrameHtmlFormatter - datafusion.html_formatter.DefaultStyleProvider - datafusion.html_formatter.FormatterManager - datafusion.html_formatter.StyleProvider - - -Functions ---------- - -.. autoapisummary:: - - datafusion.html_formatter._refresh_formatter_reference - datafusion.html_formatter._validate_bool - datafusion.html_formatter._validate_positive_int - datafusion.html_formatter.configure_formatter - datafusion.html_formatter.get_formatter - datafusion.html_formatter.reset_formatter - datafusion.html_formatter.reset_styles_loaded_state - datafusion.html_formatter.set_formatter - - -Module Contents ---------------- - -.. py:class:: CellFormatter - - Bases: :py:obj:`Protocol` - - - Protocol for cell value formatters. - - - .. py:method:: __call__(value: Any) -> str - - Format a cell value to string representation. - - - -.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: Optional[str] = None, show_truncation_message: bool = True, style_provider: Optional[StyleProvider] = None, use_shared_styles: bool = True) - - Configurable HTML formatter for DataFusion DataFrames. - - This class handles the HTML rendering of DataFrames for display in - Jupyter notebooks and other rich display contexts. - - This class supports extension through composition. Key extension points: - - Provide a custom StyleProvider for styling cells and headers - - Register custom formatters for specific types - - Provide custom cell builders for specialized cell rendering - - :param max_cell_length: Maximum characters to display in a cell before truncation - :param max_width: Maximum width of the HTML table in pixels - :param max_height: Maximum height of the HTML table in pixels - :param max_memory_bytes: Maximum memory in bytes for rendered data (default: 2MB) - :param min_rows_display: Minimum number of rows to display - :param repr_rows: Default number of rows to display in repr output - :param enable_cell_expansion: Whether to add expand/collapse buttons for long cell - values - :param custom_css: Additional CSS to include in the HTML output - :param show_truncation_message: Whether to display a message when data is truncated - :param style_provider: Custom provider for cell and header styles - :param use_shared_styles: Whether to load styles and scripts only once per notebook - session - - Initialize the HTML formatter. - - :param max_cell_length: Maximum length of cell content before truncation. - :type max_cell_length: int, default 25 - :param max_width: Maximum width of the displayed table in pixels. - :type max_width: int, default 1000 - :param max_height: Maximum height of the displayed table in pixels. - :type max_height: int, default 300 - :param max_memory_bytes: Maximum memory in bytes for rendered data. - :type max_memory_bytes: int, default 2097152 (2MB) - :param min_rows_display: Minimum number of rows to display. - :type min_rows_display: int, default 20 - :param repr_rows: Default number of rows to display in repr output. - :type repr_rows: int, default 10 - :param enable_cell_expansion: Whether to allow cells to expand when clicked. - :type enable_cell_expansion: bool, default True - :param custom_css: Custom CSS to apply to the HTML table. - :type custom_css: str, optional - :param show_truncation_message: Whether to show a message indicating that content has been truncated. - :type show_truncation_message: bool, default True - :param style_provider: Provider of CSS styles for the HTML table. If None, DefaultStyleProvider - is used. - :type style_provider: StyleProvider, optional - :param use_shared_styles: Whether to use shared styles across multiple tables. - :type use_shared_styles: bool, default True - :param Raises: - :param ------: - :param ValueError: If max_cell_length, max_width, max_height, max_memory_bytes, - min_rows_display, or repr_rows is not a positive integer. - :param TypeError: If enable_cell_expansion, show_truncation_message, or use_shared_styles is - not a boolean, - or if custom_css is provided but is not a string, - or if style_provider is provided but does not implement the StyleProvider - protocol. - - - .. py:method:: _build_expandable_cell(formatted_value: str, row_count: int, col_idx: int, table_uuid: str) -> str - - Build an expandable cell for long content. - - - - .. py:method:: _build_html_footer(has_more: bool) -> list[str] - - Build the HTML footer with JavaScript and messages. - - - - .. py:method:: _build_html_header() -> list[str] - - Build the HTML header with CSS styles. - - - - .. py:method:: _build_regular_cell(formatted_value: str) -> str - - Build a regular table cell. - - - - .. py:method:: _build_table_body(batches: list, table_uuid: str) -> list[str] - - Build the HTML table body with data rows. - - - - .. py:method:: _build_table_container_start() -> list[str] - - Build the opening tags for the table container. - - - - .. py:method:: _build_table_header(schema: Any) -> list[str] - - Build the HTML table header with column names. - - - - .. py:method:: _format_cell_value(value: Any) -> str - - Format a cell value for display. - - Uses registered type formatters if available. - - :param value: The cell value to format - - :returns: Formatted cell value as string - - - - .. py:method:: _get_cell_value(column: Any, row_idx: int) -> Any - - Extract a cell value from a column. - - :param column: Arrow array - :param row_idx: Row index - - :returns: The raw cell value - - - - .. py:method:: _get_default_css() -> str - - Get default CSS styles for the HTML table. - - - - .. py:method:: _get_javascript() -> str - - Get JavaScript code for interactive elements. - - - - .. py:method:: format_html(batches: list, schema: Any, has_more: bool = False, table_uuid: str | None = None) -> str - - Format record batches as HTML. - - This method is used by DataFrame's _repr_html_ implementation and can be - called directly when custom HTML rendering is needed. - - :param batches: List of Arrow RecordBatch objects - :param schema: Arrow Schema object - :param has_more: Whether there are more batches not shown - :param table_uuid: Unique ID for the table, used for JavaScript interactions - - :returns: HTML string representation of the data - - :raises TypeError: If schema is invalid and no batches are provided - - - - .. py:method:: is_styles_loaded() -> bool - :classmethod: - - - Check if HTML styles have been loaded in the current session. - - This method is primarily intended for debugging UI rendering issues - related to style loading. - - :returns: True if styles have been loaded, False otherwise - - .. rubric:: Example - - >>> from datafusion.html_formatter import DataFrameHtmlFormatter - >>> DataFrameHtmlFormatter.is_styles_loaded() - False - - - - .. py:method:: register_formatter(type_class: type, formatter: CellFormatter) -> None - - Register a custom formatter for a specific data type. - - :param type_class: The type to register a formatter for - :param formatter: Function that takes a value of the given type and returns - a formatted string - - - - .. py:method:: set_custom_cell_builder(builder: Callable[[Any, int, int, str], str]) -> None - - Set a custom cell builder function. - - :param builder: Function that takes (value, row, col, table_id) and returns HTML - - - - .. py:method:: set_custom_header_builder(builder: Callable[[Any], str]) -> None - - Set a custom header builder function. - - :param builder: Function that takes a field and returns HTML - - - - .. py:attribute:: _custom_cell_builder - :type: Optional[Callable[[Any, int, int, str], str]] - :value: None - - - - .. py:attribute:: _custom_header_builder - :type: Optional[Callable[[Any], str]] - :value: None - - - - .. py:attribute:: _styles_loaded - :value: False - - - - .. py:attribute:: _type_formatters - :type: dict[type, CellFormatter] - - - .. py:attribute:: custom_css - :value: None - - - - .. py:attribute:: enable_cell_expansion - :value: True - - - - .. py:attribute:: max_cell_length - :value: 25 - - - - .. py:attribute:: max_height - :value: 300 - - - - .. py:attribute:: max_memory_bytes - :value: 2097152 - - - - .. py:attribute:: max_width - :value: 1000 - - - - .. py:attribute:: min_rows_display - :value: 20 - - - - .. py:attribute:: repr_rows - :value: 10 - - - - .. py:attribute:: show_truncation_message - :value: True - - - - .. py:attribute:: style_provider - - - .. py:attribute:: use_shared_styles - :value: True - - - -.. py:class:: DefaultStyleProvider - - Default implementation of StyleProvider. - - - .. py:method:: get_cell_style() -> str - - Get the CSS style for table cells. - - :returns: CSS style string - - - - .. py:method:: get_header_style() -> str - - Get the CSS style for header cells. - - :returns: CSS style string - - - -.. py:class:: FormatterManager - - Manager class for the global DataFrame HTML formatter instance. - - - .. py:method:: get_formatter() -> DataFrameHtmlFormatter - :classmethod: - - - Get the current global DataFrame HTML formatter. - - :returns: The global HTML formatter instance - - - - .. py:method:: set_formatter(formatter: DataFrameHtmlFormatter) -> None - :classmethod: - - - Set the global DataFrame HTML formatter. - - :param formatter: The formatter instance to use globally - - - - .. py:attribute:: _default_formatter - :type: DataFrameHtmlFormatter - - -.. py:class:: StyleProvider - - Bases: :py:obj:`Protocol` - - - Protocol for HTML style providers. - - - .. py:method:: get_cell_style() -> str - - Get the CSS style for table cells. - - - - .. py:method:: get_header_style() -> str - - Get the CSS style for header cells. - - - -.. py:function:: _refresh_formatter_reference() -> None - - Refresh formatter reference in any modules using it. - - This helps ensure that changes to the formatter are reflected in existing - DataFrames that might be caching the formatter reference. - - -.. py:function:: _validate_bool(value: Any, param_name: str) -> None - - Validate that a parameter is a boolean. - - :param value: The value to validate - :param param_name: Name of the parameter (used in error message) - - :raises TypeError: If the value is not a boolean - - -.. py:function:: _validate_positive_int(value: Any, param_name: str) -> None - - Validate that a parameter is a positive integer. - - :param value: The value to validate - :param param_name: Name of the parameter (used in error message) - - :raises ValueError: If the value is not a positive integer - - -.. py:function:: configure_formatter(**kwargs: Any) -> None - - Configure the global DataFrame HTML formatter. - - This function creates a new formatter with the provided configuration - and sets it as the global formatter for all DataFrames. - - :param \*\*kwargs: Formatter configuration parameters like max_cell_length, - max_width, max_height, enable_cell_expansion, etc. - - :raises ValueError: If any invalid parameters are provided - - .. rubric:: Example - - >>> from datafusion.html_formatter import configure_formatter - >>> configure_formatter( - ... max_cell_length=50, - ... max_height=500, - ... enable_cell_expansion=True, - ... use_shared_styles=True - ... ) - - -.. py:function:: get_formatter() -> DataFrameHtmlFormatter - - Get the current global DataFrame HTML formatter. - - This function is used by the DataFrame._repr_html_ implementation to access - the shared formatter instance. It can also be used directly when custom - HTML rendering is needed. - - :returns: The global HTML formatter instance - - .. rubric:: Example - - >>> from datafusion.html_formatter import get_formatter - >>> formatter = get_formatter() - >>> formatter.max_cell_length = 50 # Increase cell length - - -.. py:function:: reset_formatter() -> None - - Reset the global DataFrame HTML formatter to default settings. - - This function creates a new formatter with default configuration - and sets it as the global formatter for all DataFrames. - - .. rubric:: Example - - >>> from datafusion.html_formatter import reset_formatter - >>> reset_formatter() # Reset formatter to default settings - - -.. py:function:: reset_styles_loaded_state() -> None - - Reset the styles loaded state to force reloading of styles. - - This can be useful when switching between notebook sessions or - when styles need to be refreshed. - - .. rubric:: Example - - >>> from datafusion.html_formatter import reset_styles_loaded_state - >>> reset_styles_loaded_state() # Force styles to reload in next render - - -.. py:function:: set_formatter(formatter: DataFrameHtmlFormatter) -> None - - Set the global DataFrame HTML formatter. - - :param formatter: The formatter instance to use globally - - .. rubric:: Example - - >>> from datafusion.html_formatter import get_formatter, set_formatter - >>> custom_formatter = DataFrameHtmlFormatter(max_cell_length=100) - >>> set_formatter(custom_formatter) - - diff --git a/_sources/autoapi/datafusion/index.rst.txt b/_sources/autoapi/datafusion/index.rst.txt index 07c99bf68..0b19b1d40 100644 --- a/_sources/autoapi/datafusion/index.rst.txt +++ b/_sources/autoapi/datafusion/index.rst.txt @@ -19,9 +19,9 @@ Submodules :maxdepth: 1 /autoapi/datafusion/catalog/index - /autoapi/datafusion/col/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 @@ -31,7 +31,6 @@ Submodules /autoapi/datafusion/plan/index /autoapi/datafusion/record_batch/index /autoapi/datafusion/substrait/index - /autoapi/datafusion/udf/index /autoapi/datafusion/unparser/index /autoapi/datafusion/user_defined/index @@ -62,6 +61,8 @@ Classes datafusion.ExecutionPlan datafusion.Expr datafusion.LogicalPlan + datafusion.ParquetColumnOptions + datafusion.ParquetWriterOptions datafusion.RecordBatch datafusion.RecordBatchStream datafusion.RuntimeEnvBuilder @@ -150,6 +151,23 @@ Package Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Aggregate UDF. + + + + .. py:method:: from_pycapsule(func: AggregateUDFExportable) -> AggregateUDF + :staticmethod: + + + Create an Aggregate UDF from AggregateUDF PyCapsule object. + + This function will instantiate a Aggregate UDF that uses a DataFusion + AggregateUDF that is exported via the FFI bindings. + + + .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, AggregateUDF] udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> AggregateUDF :staticmethod: @@ -210,6 +228,10 @@ Package Contents :param accum: The accumulator python function. Only needed when calling as a function. Skip this argument when using ``udaf`` as a decorator. + If you have a Rust backed AggregateUDF within a PyCapsule, you can + pass this parameter and ignore the rest. They will be determined + directly from the underlying function. See the online documentation + for more information. :param input_types: The data types of the arguments to ``accum``. :param return_type: The data type of the return value. :param state_type: The data types of the intermediate accumulation. @@ -224,48 +246,74 @@ Package Contents .. py:attribute:: _udaf -.. py:class:: Catalog(catalog: datafusion._internal.Catalog) +.. py:class:: Catalog(catalog: datafusion._internal.catalog.RawCatalog) DataFusion data catalog. This constructor is not typically called by the end user. - .. py:method:: database(name: str = 'public') -> Database + .. py:method:: __repr__() -> str - Returns the database with the given ``name`` from this catalog. + Print a string representation of the catalog. - .. py:method:: names() -> list[str] + .. py:method:: database(name: str = 'public') -> Schema - Returns the list of databases in this catalog. + Returns the database with the given ``name`` from this catalog. - .. py:attribute:: catalog + .. py:method:: deregister_schema(name: str, cascade: bool = True) -> Schema | None + Deregister a schema from this catalog. -.. py:class:: Database(db: datafusion._internal.Database) - DataFusion Database. - This constructor is not typically called by the end user. + .. py:method:: memory_catalog() -> Catalog + :staticmethod: + + + Create an in-memory catalog provider. + .. py:method:: names() -> set[str] - Returns the list of all tables in this database. + This is an alias for `schema_names`. + + + + .. py:method:: register_schema(name, schema) -> Schema | None + + Register a schema with this catalog. + + + + .. py:method:: schema(name: str = 'public') -> Schema + + Returns the database with the given ``name`` from this catalog. + + + + .. py:method:: schema_names() -> set[str] + Returns the list of schemas in this catalog. - .. py:method:: table(name: str) -> Table - Return the table with the given ``name`` from this database. + .. py:attribute:: catalog + +.. py:class:: Database(schema: datafusion._internal.catalog.RawSchema) + Bases: :py:obj:`Schema` - .. py:attribute:: db + + See `Schema`. + + This constructor is not typically called by the end user. .. py:class:: ExecutionPlan(plan: datafusion._internal.ExecutionPlan) @@ -850,6 +898,17 @@ Package Contents + .. py:method:: literal_with_metadata(value: Any, metadata: dict[str, str]) -> Expr + :staticmethod: + + + Creates a new expression representing a scalar value with metadata. + + :param value: A valid PyArrow scalar value or easily castable to one. + :param metadata: Metadata to attach to the expression. + + + .. py:method:: ln() -> Expr Returns the natural logarithm (base e) of the argument. @@ -1244,6 +1303,324 @@ Package Contents .. py:attribute:: _raw_plan +.. py:class:: ParquetColumnOptions(encoding: Optional[str] = None, dictionary_enabled: Optional[bool] = None, compression: Optional[str] = None, statistics_enabled: Optional[str] = None, bloom_filter_enabled: Optional[bool] = None, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None) + + Parquet options for individual columns. + + Contains the available options that can be applied for an individual Parquet column, + replacing the global options in `ParquetWriterOptions`. + + .. attribute:: encoding + + Sets encoding for the column path. Valid values are: `plain`, + `plain_dictionary`, `rle`, `bit_packed`, `delta_binary_packed`, + `delta_length_byte_array`, `delta_byte_array`, `rle_dictionary`, and + `byte_stream_split`. These values are not case-sensitive. If `None`, uses + the default parquet options + + .. attribute:: dictionary_enabled + + Sets if dictionary encoding is enabled for the column path. + If `None`, uses the default parquet options + + .. attribute:: compression + + Sets default parquet compression codec for the column path. Valid + values are `uncompressed`, `snappy`, `gzip(level)`, `lzo`, `brotli(level)`, + `lz4`, `zstd(level)`, and `lz4_raw`. These values are not case-sensitive. If + `None`, uses the default parquet options. + + .. attribute:: statistics_enabled + + Sets if statistics are enabled for the column Valid values + are: `none`, `chunk`, and `page` These values are not case sensitive. If + `None`, uses the default parquet options. + + .. attribute:: bloom_filter_enabled + + Sets if bloom filter is enabled for the column path. If + `None`, uses the default parquet options. + + .. attribute:: bloom_filter_fpp + + Sets bloom filter false positive probability for the column + path. If `None`, uses the default parquet options. + + .. attribute:: bloom_filter_ndv + + Sets bloom filter number of distinct values. If `None`, uses + the default parquet options. + + Initialize the ParquetColumnOptions. + + + .. py:attribute:: bloom_filter_enabled + :value: None + + + + .. py:attribute:: bloom_filter_fpp + :value: None + + + + .. py:attribute:: bloom_filter_ndv + :value: None + + + + .. py:attribute:: compression + :value: None + + + + .. py:attribute:: dictionary_enabled + :value: None + + + + .. py:attribute:: encoding + :value: None + + + + .. py:attribute:: statistics_enabled + :value: None + + + +.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: Optional[str] = 'zstd(3)', compression_level: Optional[int] = None, dictionary_enabled: Optional[bool] = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: Optional[str] = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: Optional[int] = 64, statistics_truncate_length: Optional[int] = None, data_page_row_count_limit: int = 20000, encoding: Optional[str] = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: Optional[dict[str, ParquetColumnOptions]] = None) + + Advanced parquet writer options. + + Allows settings the writer options that apply to the entire file. Some options can + also be set on a column by column basis, with the field `column_specific_options` + (see `ParquetColumnOptions`). + + .. attribute:: data_pagesize_limit + + Sets best effort maximum size of data page in bytes. + + .. attribute:: write_batch_size + + Sets write_batch_size in bytes. + + .. attribute:: writer_version + + Sets parquet writer version. Valid values are `1.0` and + `2.0`. + + .. attribute:: skip_arrow_metadata + + Skip encoding the embedded arrow metadata in the + KV_meta. + + .. attribute:: compression + + Compression type to use. Default is "zstd(3)". + Available compression types are + - "uncompressed": No compression. + - "snappy": Snappy compression. + - "gzip(n)": Gzip compression with level n. + - "brotli(n)": Brotli compression with level n. + - "lz4": LZ4 compression. + - "lz4_raw": LZ4_RAW compression. + - "zstd(n)": Zstandard compression with level n. + + .. attribute:: dictionary_enabled + + Sets if dictionary encoding is enabled. If None, uses + the default parquet writer setting. + + .. attribute:: dictionary_page_size_limit + + Sets best effort maximum dictionary page size, + in bytes. + + .. attribute:: statistics_enabled + + Sets if statistics are enabled for any column Valid + values are `none`, `chunk`, and `page`. If None, uses the default + parquet writer setting. + + .. attribute:: max_row_group_size + + Target maximum number of rows in each row group + (defaults to 1M rows). Writing larger row groups requires more memory to + write, but can get better compression and be faster to read. + + .. attribute:: created_by + + Sets "created by" property. + + .. attribute:: column_index_truncate_length + + Sets column index truncate length. + + .. attribute:: statistics_truncate_length + + Sets statistics truncate length. If None, uses + the default parquet writer setting. + + .. attribute:: data_page_row_count_limit + + Sets best effort maximum number of rows in a data + page. + + .. attribute:: encoding + + Sets default encoding for any column. Valid values are `plain`, + `plain_dictionary`, `rle`, `bit_packed`, `delta_binary_packed`, + `delta_length_byte_array`, `delta_byte_array`, `rle_dictionary`, and + `byte_stream_split`. If None, uses the default parquet writer setting. + + .. attribute:: bloom_filter_on_write + + Write bloom filters for all columns when creating + parquet files. + + .. attribute:: bloom_filter_fpp + + Sets bloom filter false positive probability. If None, + uses the default parquet writer setting + + .. attribute:: bloom_filter_ndv + + Sets bloom filter number of distinct values. If None, uses + the default parquet writer setting. + + .. attribute:: allow_single_file_parallelism + + Controls whether DataFusion will attempt to + speed up writing parquet files by serializing them in parallel. Each + column in each row group in each output file are serialized in parallel + leveraging a maximum possible core count of n_files * n_row_groups * + n_columns. + + .. attribute:: maximum_parallel_row_group_writers + + By default parallel parquet writer is + tuned for minimum memory usage in a streaming execution plan. You may + see a performance benefit when writing large parquet files by increasing + `maximum_parallel_row_group_writers` and + `maximum_buffered_record_batches_per_stream` if your system has idle + cores and can tolerate additional memory usage. Boosting these values is + likely worthwhile when writing out already in-memory data, such as from + a cached data frame. + + .. attribute:: maximum_buffered_record_batches_per_stream + + See + `maximum_parallel_row_group_writers`. + + .. attribute:: column_specific_options + + Overrides options for specific columns. If a column + is not a part of this dictionary, it will use the parameters provided here. + + Initialize the ParquetWriterOptions. + + + .. py:attribute:: allow_single_file_parallelism + :value: True + + + + .. py:attribute:: bloom_filter_fpp + :value: None + + + + .. py:attribute:: bloom_filter_ndv + :value: None + + + + .. py:attribute:: bloom_filter_on_write + :value: False + + + + .. py:attribute:: column_index_truncate_length + :value: 64 + + + + .. py:attribute:: column_specific_options + :value: None + + + + .. py:attribute:: created_by + :value: 'datafusion-python' + + + + .. py:attribute:: data_page_row_count_limit + :value: 20000 + + + + .. py:attribute:: data_pagesize_limit + :value: 1048576 + + + + .. py:attribute:: dictionary_enabled + :value: True + + + + .. py:attribute:: dictionary_page_size_limit + :value: 1048576 + + + + .. py:attribute:: encoding + :value: None + + + + .. py:attribute:: max_row_group_size + :value: 1048576 + + + + .. py:attribute:: maximum_buffered_record_batches_per_stream + :value: 2 + + + + .. py:attribute:: maximum_parallel_row_group_writers + :value: 1 + + + + .. py:attribute:: skip_arrow_metadata + :value: False + + + + .. py:attribute:: statistics_enabled + :value: 'page' + + + + .. py:attribute:: statistics_truncate_length + :value: None + + + + .. py:attribute:: write_batch_size + :value: 1024 + + + + .. py:attribute:: writer_version + :value: '1.0' + + + .. py:class:: RecordBatch(record_batch: datafusion._internal.RecordBatch) This class is essentially a wrapper for :py:class:`pa.RecordBatch`. @@ -1494,8 +1871,26 @@ Package Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Scalar UDF. + + + + .. py:method:: from_pycapsule(func: ScalarUDFExportable) -> ScalarUDF + :staticmethod: + + + Create a Scalar UDF from ScalarUDF PyCapsule object. + + This function will instantiate a Scalar UDF that uses a DataFusion + ScalarUDF that is exported via the FFI bindings. + + + .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, ScalarUDF] udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> ScalarUDF + udf(func: ScalarUDFExportable) -> ScalarUDF :staticmethod: @@ -1509,7 +1904,10 @@ Package Contents When used a decorator, do **not** pass ``func`` explicitly. :param func: Only needed when calling as a function. - Skip this argument when using ``udf`` as a decorator. + Skip this argument when using `udf` as a decorator. If you have a Rust + backed ScalarUDF within a PyCapsule, you can pass this parameter + and ignore the rest. They will be determined directly from the + underlying function. See the online documentation for more information. :type func: Callable, optional :param input_types: The data types of the arguments to ``func``. This list must be of the same length as the number of @@ -1699,13 +2097,27 @@ Package Contents .. py:attribute:: config_internal -.. py:class:: Table(table: datafusion._internal.Table) +.. py:class:: Table(table: datafusion._internal.catalog.RawTable) DataFusion table. This constructor is not typically called by the end user. + .. py:method:: __repr__() -> str + + Print a string representation of the table. + + + + .. py:method:: from_dataset(dataset: pyarrow.dataset.Dataset) -> Table + :staticmethod: + + + Turn a pyarrow Dataset into a Table. + + + .. py:property:: kind :type: str @@ -1791,6 +2203,12 @@ Package Contents parameter must be set. + .. py:method:: __repr__() -> str + + Print a string representation of the window frame. + + + .. py:method:: get_frame_units() -> str Returns the window frame units for the bounds. @@ -1834,6 +2252,12 @@ Package Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Window UDF. + + + .. py:method:: _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF :staticmethod: @@ -1866,6 +2290,17 @@ Package Contents + .. py:method:: from_pycapsule(func: WindowUDFExportable) -> WindowUDF + :staticmethod: + + + Create a Window UDF from WindowUDF PyCapsule object. + + This function will instantiate a Window UDF that uses a DataFusion + WindowUDF that is exported via the FFI bindings. + + + .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, WindowUDF] udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF :staticmethod: @@ -1907,7 +2342,10 @@ Package Contents return BiasedNumbers(10) :param func: Only needed when calling as a function. Skip this argument when - using ``udwf`` as a decorator. + using ``udwf`` as a decorator. If you have a Rust backed WindowUDF + within a PyCapsule, you can pass this parameter and ignore the rest. + They will be determined directly from the underlying function. See + the online documentation for more information. :param input_types: The data types of the arguments. :param return_type: The data type of the return value. :param volatility: See :py:class:`Volatility` for allowed values. @@ -1953,7 +2391,7 @@ Package Contents Create a literal expression. -.. py:function:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame +.. py:function:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame Create a :py:class:`DataFrame` for reading Avro data source. @@ -1969,7 +2407,7 @@ Package Contents :returns: DataFrame representation of the read Avro file -.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -1994,7 +2432,7 @@ Package Contents :returns: DataFrame representation of the read CSV files -.. py:function:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a line-delimited JSON data source. @@ -2014,7 +2452,7 @@ Package Contents :returns: DataFrame representation of the read JSON files. -.. py:function:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr]] | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr]] | None = None) -> datafusion.dataframe.DataFrame Read a Parquet source into a :py:class:`~datafusion.dataframe.Dataframe`. diff --git a/_sources/autoapi/datafusion/io/index.rst.txt b/_sources/autoapi/datafusion/io/index.rst.txt index 79ef20e5e..bb80c1cd3 100644 --- a/_sources/autoapi/datafusion/io/index.rst.txt +++ b/_sources/autoapi/datafusion/io/index.rst.txt @@ -23,7 +23,7 @@ Functions Module Contents --------------- -.. py:function:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame +.. py:function:: read_avro(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.avro') -> datafusion.dataframe.DataFrame Create a :py:class:`DataFrame` for reading Avro data source. @@ -39,7 +39,7 @@ Module Contents :returns: DataFrame representation of the read Avro file -.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -64,7 +64,7 @@ Module Contents :returns: DataFrame representation of the read CSV files -.. py:function:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_json(path: str | pathlib.Path, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = 1000, file_extension: str = '.json', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame Read a line-delimited JSON data source. @@ -84,7 +84,7 @@ Module Contents :returns: DataFrame representation of the read JSON files. -.. py:function:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr]] | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr]] | None = None) -> datafusion.dataframe.DataFrame Read a Parquet source into a :py:class:`~datafusion.dataframe.Dataframe`. diff --git a/_sources/autoapi/datafusion/udf/index.rst.txt b/_sources/autoapi/datafusion/udf/index.rst.txt deleted file mode 100644 index c11c9e6c8..000000000 --- a/_sources/autoapi/datafusion/udf/index.rst.txt +++ /dev/null @@ -1,11 +0,0 @@ -datafusion.udf -============== - -.. py:module:: datafusion.udf - -.. autoapi-nested-parse:: - - Deprecated module for user defined functions. - - - diff --git a/_sources/autoapi/datafusion/user_defined/index.rst.txt b/_sources/autoapi/datafusion/user_defined/index.rst.txt index d6c30ab16..728ace0a6 100644 --- a/_sources/autoapi/datafusion/user_defined/index.rst.txt +++ b/_sources/autoapi/datafusion/user_defined/index.rst.txt @@ -28,11 +28,14 @@ Classes datafusion.user_defined.Accumulator datafusion.user_defined.AggregateUDF + datafusion.user_defined.AggregateUDFExportable datafusion.user_defined.ScalarUDF + datafusion.user_defined.ScalarUDFExportable datafusion.user_defined.TableFunction datafusion.user_defined.Volatility datafusion.user_defined.WindowEvaluator datafusion.user_defined.WindowUDF + datafusion.user_defined.WindowUDFExportable Module Contents @@ -97,6 +100,23 @@ Module Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Aggregate UDF. + + + + .. py:method:: from_pycapsule(func: AggregateUDFExportable) -> AggregateUDF + :staticmethod: + + + Create an Aggregate UDF from AggregateUDF PyCapsule object. + + This function will instantiate a Aggregate UDF that uses a DataFusion + AggregateUDF that is exported via the FFI bindings. + + + .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, AggregateUDF] udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> AggregateUDF :staticmethod: @@ -157,6 +177,10 @@ Module Contents :param accum: The accumulator python function. Only needed when calling as a function. Skip this argument when using ``udaf`` as a decorator. + If you have a Rust backed AggregateUDF within a PyCapsule, you can + pass this parameter and ignore the rest. They will be determined + directly from the underlying function. See the online documentation + for more information. :param input_types: The data types of the arguments to ``accum``. :param return_type: The data type of the return value. :param state_type: The data types of the intermediate accumulation. @@ -171,6 +195,17 @@ Module Contents .. py:attribute:: _udaf +.. py:class:: AggregateUDFExportable + + Bases: :py:obj:`Protocol` + + + Type hint for object that has __datafusion_aggregate_udf__ PyCapsule. + + + .. py:method:: __datafusion_aggregate_udf__() -> object + + .. py:class:: ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) Class for performing scalar user-defined functions (UDF). @@ -192,8 +227,26 @@ Module Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Scalar UDF. + + + + .. py:method:: from_pycapsule(func: ScalarUDFExportable) -> ScalarUDF + :staticmethod: + + + Create a Scalar UDF from ScalarUDF PyCapsule object. + + This function will instantiate a Scalar UDF that uses a DataFusion + ScalarUDF that is exported via the FFI bindings. + + + .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, ScalarUDF] udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> ScalarUDF + udf(func: ScalarUDFExportable) -> ScalarUDF :staticmethod: @@ -207,7 +260,10 @@ Module Contents When used a decorator, do **not** pass ``func`` explicitly. :param func: Only needed when calling as a function. - Skip this argument when using ``udf`` as a decorator. + Skip this argument when using `udf` as a decorator. If you have a Rust + backed ScalarUDF within a PyCapsule, you can pass this parameter + and ignore the rest. They will be determined directly from the + underlying function. See the online documentation for more information. :type func: Callable, optional :param input_types: The data types of the arguments to ``func``. This list must be of the same length as the number of @@ -241,6 +297,17 @@ Module Contents .. py:attribute:: _udf +.. py:class:: ScalarUDFExportable + + Bases: :py:obj:`Protocol` + + + Type hint for object that has __datafusion_scalar_udf__ PyCapsule. + + + .. py:method:: __datafusion_scalar_udf__() -> object + + .. py:class:: TableFunction(name: str, func: Callable[[], any]) Class for performing user-defined table functions (UDTF). @@ -544,6 +611,12 @@ Module Contents + .. py:method:: __repr__() -> str + + Print a string representation of the Window UDF. + + + .. py:method:: _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF :staticmethod: @@ -576,6 +649,17 @@ Module Contents + .. py:method:: from_pycapsule(func: WindowUDFExportable) -> WindowUDF + :staticmethod: + + + Create a Window UDF from WindowUDF PyCapsule object. + + This function will instantiate a Window UDF that uses a DataFusion + WindowUDF that is exported via the FFI bindings. + + + .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, WindowUDF] udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF :staticmethod: @@ -617,7 +701,10 @@ Module Contents return BiasedNumbers(10) :param func: Only needed when calling as a function. Skip this argument when - using ``udwf`` as a decorator. + using ``udwf`` as a decorator. If you have a Rust backed WindowUDF + within a PyCapsule, you can pass this parameter and ignore the rest. + They will be determined directly from the underlying function. See + the online documentation for more information. :param input_types: The data types of the arguments. :param return_type: The data type of the return value. :param volatility: See :py:class:`Volatility` for allowed values. @@ -630,6 +717,17 @@ Module Contents .. py:attribute:: _udwf +.. py:class:: WindowUDFExportable + + Bases: :py:obj:`Protocol` + + + Type hint for object that has __datafusion_window_udf__ PyCapsule. + + + .. py:method:: __datafusion_window_udf__() -> object + + .. py:data:: _R .. py:data:: udaf diff --git a/_sources/contributor-guide/ffi.rst.txt b/_sources/contributor-guide/ffi.rst.txt index c1f9806b3..a40af1234 100644 --- a/_sources/contributor-guide/ffi.rst.txt +++ b/_sources/contributor-guide/ffi.rst.txt @@ -176,7 +176,7 @@ By convention the ``datafusion-python`` library expects a Python object that has ``TableProvider`` PyCapsule to have this capsule accessible by calling a function named ``__datafusion_table_provider__``. You can see a complete working example of how to share a ``TableProvider`` from one python library to DataFusion Python in the -`repository examples folder `_. +`repository examples folder `_. This section has been written using ``TableProvider`` as an example. It is the first extension that has been written using this approach and the most thoroughly implemented. diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt index c18793822..adec60f48 100644 --- a/_sources/index.rst.txt +++ b/_sources/index.rst.txt @@ -72,7 +72,7 @@ Example user-guide/introduction user-guide/basics user-guide/data-sources - user-guide/dataframe + user-guide/dataframe/index user-guide/common-operations/index user-guide/io/index user-guide/configuration diff --git a/_sources/user-guide/basics.rst.txt b/_sources/user-guide/basics.rst.txt index 2975d9a6b..7c6820461 100644 --- a/_sources/user-guide/basics.rst.txt +++ b/_sources/user-guide/basics.rst.txt @@ -73,7 +73,7 @@ DataFrames are typically created by calling a method on :py:class:`~datafusion.c calling the transformation methods, such as :py:func:`~datafusion.dataframe.DataFrame.filter`, :py:func:`~datafusion.dataframe.DataFrame.select`, :py:func:`~datafusion.dataframe.DataFrame.aggregate`, and :py:func:`~datafusion.dataframe.DataFrame.limit` to build up a query definition. -For more details on working with DataFrames, including visualization options and conversion to other formats, see :doc:`dataframe`. +For more details on working with DataFrames, including visualization options and conversion to other formats, see :doc:`dataframe/index`. Expressions ----------- diff --git a/_sources/user-guide/common-operations/functions.rst.txt b/_sources/user-guide/common-operations/functions.rst.txt index d458d3eb0..ccb47a4e7 100644 --- a/_sources/user-guide/common-operations/functions.rst.txt +++ b/_sources/user-guide/common-operations/functions.rst.txt @@ -132,7 +132,7 @@ The function :py:func:`~datafusion.functions.in_list` allows to check a column f Handling Missing Values -===================== +======================= DataFusion provides methods to handle missing values in DataFrames: diff --git a/_sources/user-guide/data-sources.rst.txt b/_sources/user-guide/data-sources.rst.txt index ba5967c97..9c95d58e0 100644 --- a/_sources/user-guide/data-sources.rst.txt +++ b/_sources/user-guide/data-sources.rst.txt @@ -185,3 +185,59 @@ the interface as describe in the :ref:`Custom Table Provider `_ is provided in the DataFusion repository. + +Catalog +======= + +A common technique for organizing tables is using a three level hierarchical approach. DataFusion +supports this form of organizing using the :py:class:`~datafusion.catalog.Catalog`, +:py:class:`~datafusion.catalog.Schema`, and :py:class:`~datafusion.catalog.Table`. By default, +a :py:class:`~datafusion.context.SessionContext` comes with a single Catalog and a single Schema +with the names ``datafusion`` and ``default``, respectively. + +The default implementation uses an in-memory approach to the catalog and schema. We have support +for adding additional in-memory catalogs and schemas. This can be done like in the following +example: + +.. code-block:: python + + from datafusion.catalog import Catalog, Schema + + my_catalog = Catalog.memory_catalog() + my_schema = Schema.memory_schema() + + my_catalog.register_schema("my_schema_name", my_schema) + + ctx.register_catalog("my_catalog_name", my_catalog) + +You could then register tables in ``my_schema`` and access them either through the DataFrame +API or via sql commands such as ``"SELECT * from my_catalog_name.my_schema_name.my_table"``. + +User Defined Catalog and Schema +------------------------------- + +If the in-memory catalogs are insufficient for your uses, there are two approaches you can take +to implementing a custom catalog and/or schema. In the below discussion, we describe how to +implement these for a Catalog, but the approach to implementing for a Schema is nearly +identical. + +DataFusion supports Catalogs written in either Rust or Python. If you write a Catalog in Rust, +you will need to export it as a Python library via PyO3. There is a complete example of a +catalog implemented this way in the +`examples folder `_ +of our repository. Writing catalog providers in Rust provides typically can lead to significant +performance improvements over the Python based approach. + +To implement a Catalog in Python, you will need to inherit from the abstract base class +:py:class:`~datafusion.catalog.CatalogProvider`. There are examples in the +`unit tests `_ of +implementing a basic Catalog in Python where we simply keep a dictionary of the +registered Schemas. + +One important note for developers is that when we have a Catalog defined in Python, we have +two different ways of accessing this Catalog. First, we register the catalog with a Rust +wrapper. This allows for any rust based code to call the Python functions as necessary. +Second, if the user access the Catalog via the Python API, we identify this and return back +the original Python object that implements the Catalog. This is an important distinction +for developers because we do *not* return a Python wrapper around the Rust wrapper of the +original Python object. diff --git a/_sources/user-guide/dataframe/index.rst.txt b/_sources/user-guide/dataframe/index.rst.txt new file mode 100644 index 000000000..f69485af7 --- /dev/null +++ b/_sources/user-guide/dataframe/index.rst.txt @@ -0,0 +1,209 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +DataFrames +========== + +Overview +-------- + +The ``DataFrame`` class is the core abstraction in DataFusion that represents tabular data and operations +on that data. DataFrames provide a flexible API for transforming data through various operations such as +filtering, projection, aggregation, joining, and more. + +A DataFrame represents a logical plan that is lazily evaluated. The actual execution occurs only when +terminal operations like ``collect()``, ``show()``, or ``to_pandas()`` are called. + +Creating DataFrames +------------------- + +DataFrames can be created in several ways: + +* From SQL queries via a ``SessionContext``: + + .. code-block:: python + + from datafusion import SessionContext + + ctx = SessionContext() + df = ctx.sql("SELECT * FROM your_table") + +* From registered tables: + + .. code-block:: python + + df = ctx.table("your_table") + +* From various data sources: + + .. code-block:: python + + # From CSV files (see :ref:`io_csv` for detailed options) + df = ctx.read_csv("path/to/data.csv") + + # From Parquet files (see :ref:`io_parquet` for detailed options) + df = ctx.read_parquet("path/to/data.parquet") + + # From JSON files (see :ref:`io_json` for detailed options) + df = ctx.read_json("path/to/data.json") + + # From Avro files (see :ref:`io_avro` for detailed options) + df = ctx.read_avro("path/to/data.avro") + + # From Pandas DataFrame + import pandas as pd + pandas_df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) + df = ctx.from_pandas(pandas_df) + + # From Arrow data + import pyarrow as pa + batch = pa.RecordBatch.from_arrays( + [pa.array([1, 2, 3]), pa.array([4, 5, 6])], + names=["a", "b"] + ) + df = ctx.from_arrow(batch) + +For detailed information about reading from different data sources, see the :doc:`I/O Guide <../io/index>`. +For custom data sources, see :ref:`io_custom_table_provider`. + +Common DataFrame Operations +--------------------------- + +DataFusion's DataFrame API offers a wide range of operations: + +.. code-block:: python + + from datafusion import column, literal + + # Select specific columns + df = df.select("col1", "col2") + + # Select with expressions + df = df.select(column("a") + column("b"), column("a") - column("b")) + + # Filter rows + df = df.filter(column("age") > literal(25)) + + # Add computed columns + df = df.with_column("full_name", column("first_name") + literal(" ") + column("last_name")) + + # Multiple column additions + df = df.with_columns( + (column("a") + column("b")).alias("sum"), + (column("a") * column("b")).alias("product") + ) + + # Sort data + df = df.sort(column("age").sort(ascending=False)) + + # Join DataFrames + df = df1.join(df2, on="user_id", how="inner") + + # Aggregate data + from datafusion import functions as f + df = df.aggregate( + [], # Group by columns (empty for global aggregation) + [f.sum(column("amount")).alias("total_amount")] + ) + + # Limit rows + df = df.limit(100) + + # Drop columns + df = df.drop("temporary_column") + +Terminal Operations +------------------- + +To materialize the results of your DataFrame operations: + +.. code-block:: python + + # Collect all data as PyArrow RecordBatches + result_batches = df.collect() + + # Convert to various formats + pandas_df = df.to_pandas() # Pandas DataFrame + polars_df = df.to_polars() # Polars DataFrame + arrow_table = df.to_arrow_table() # PyArrow Table + py_dict = df.to_pydict() # Python dictionary + py_list = df.to_pylist() # Python list of dictionaries + + # Display results + df.show() # Print tabular format to console + + # Count rows + count = df.count() + +HTML Rendering +-------------- + +When working in Jupyter notebooks or other environments that support HTML rendering, DataFrames will +automatically display as formatted HTML tables. For detailed information about customizing HTML +rendering, formatting options, and advanced styling, see :doc:`rendering`. + +Core Classes +------------ + +**DataFrame** + The main DataFrame class for building and executing queries. + + See: :py:class:`datafusion.DataFrame` + +**SessionContext** + The primary entry point for creating DataFrames from various data sources. + + Key methods for DataFrame creation: + + * :py:meth:`~datafusion.SessionContext.read_csv` - Read CSV files + * :py:meth:`~datafusion.SessionContext.read_parquet` - Read Parquet files + * :py:meth:`~datafusion.SessionContext.read_json` - Read JSON files + * :py:meth:`~datafusion.SessionContext.read_avro` - Read Avro files + * :py:meth:`~datafusion.SessionContext.table` - Access registered tables + * :py:meth:`~datafusion.SessionContext.sql` - Execute SQL queries + * :py:meth:`~datafusion.SessionContext.from_pandas` - Create from Pandas DataFrame + * :py:meth:`~datafusion.SessionContext.from_arrow` - Create from Arrow data + + See: :py:class:`datafusion.SessionContext` + +Expression Classes +------------------ + +**Expr** + Represents expressions that can be used in DataFrame operations. + + See: :py:class:`datafusion.Expr` + +**Functions for creating expressions:** + +* :py:func:`datafusion.column` - Reference a column by name +* :py:func:`datafusion.literal` - Create a literal value expression + +Built-in Functions +------------------ + +DataFusion provides many built-in functions for data manipulation: + +* :py:mod:`datafusion.functions` - Mathematical, string, date/time, and aggregation functions + +For a complete list of available functions, see the :py:mod:`datafusion.functions` module documentation. + + +.. toctree:: + :maxdepth: 1 + + rendering diff --git a/_sources/user-guide/dataframe.rst.txt b/_sources/user-guide/dataframe/rendering.rst.txt similarity index 72% rename from _sources/user-guide/dataframe.rst.txt rename to _sources/user-guide/dataframe/rendering.rst.txt index 11e3d7e72..4c37c7471 100644 --- a/_sources/user-guide/dataframe.rst.txt +++ b/_sources/user-guide/dataframe/rendering.rst.txt @@ -15,59 +15,37 @@ .. specific language governing permissions and limitations .. under the License. -DataFrames -========== +HTML Rendering in Jupyter +========================= -Overview --------- +When working in Jupyter notebooks or other environments that support rich HTML display, +DataFusion DataFrames automatically render as nicely formatted HTML tables. This functionality +is provided by the ``_repr_html_`` method, which is automatically called by Jupyter to provide +a richer visualization than plain text output. -DataFusion's DataFrame API provides a powerful interface for building and executing queries against data sources. -It offers a familiar API similar to pandas and other DataFrame libraries, but with the performance benefits of Rust -and Arrow. +Basic HTML Rendering +-------------------- -A DataFrame represents a logical plan that can be composed through operations like filtering, projection, and aggregation. -The actual execution happens when terminal operations like ``collect()`` or ``show()`` are called. - -Basic Usage ------------ +In a Jupyter environment, simply displaying a DataFrame object will trigger HTML rendering: .. code-block:: python - import datafusion - from datafusion import col, lit - - # Create a context and register a data source - ctx = datafusion.SessionContext() - ctx.register_csv("my_table", "path/to/data.csv") - - # Create and manipulate a DataFrame - df = ctx.sql("SELECT * FROM my_table") - - # Or use the DataFrame API directly - df = (ctx.table("my_table") - .filter(col("age") > lit(25)) - .select([col("name"), col("age")])) - - # Execute and collect results - result = df.collect() - - # Display the first few rows - df.show() + # Will display as HTML table in Jupyter + df -HTML Rendering --------------- + # Explicit display also uses HTML rendering + display(df) -When working in Jupyter notebooks or other environments that support HTML rendering, DataFrames will -automatically display as formatted HTML tables, making it easier to visualize your data. +Customizing HTML Rendering +--------------------------- -The ``_repr_html_`` method is called automatically by Jupyter to render a DataFrame. This method -controls how DataFrames appear in notebook environments, providing a richer visualization than -plain text output. +DataFusion provides extensive customization options for HTML table rendering through the +``datafusion.html_formatter`` module. -Customizing HTML Rendering --------------------------- +Configuring the HTML Formatter +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -You can customize how DataFrames are rendered in HTML by configuring the formatter: +You can customize how DataFrames are rendered by configuring the formatter: .. code-block:: python @@ -91,7 +69,7 @@ You can customize how DataFrames are rendered in HTML by configuring the formatt The formatter settings affect all DataFrames displayed after configuration. Custom Style Providers ----------------------- +----------------------- For advanced styling needs, you can create a custom style provider: @@ -118,11 +96,13 @@ For advanced styling needs, you can create a custom style provider: configure_formatter(style_provider=MyStyleProvider()) Performance Optimization with Shared Styles -------------------------------------------- +-------------------------------------------- + The ``use_shared_styles`` parameter (enabled by default) optimizes performance when displaying multiple DataFrames in notebook environments: - .. code-block:: python +.. code-block:: python + from datafusion.html_formatter import StyleProvider, configure_formatter # Default: Use shared styles (recommended for notebooks) configure_formatter(use_shared_styles=True) @@ -137,7 +117,7 @@ When ``use_shared_styles=True``: - Applies consistent styling across all DataFrames Creating a Custom Formatter ---------------------------- +---------------------------- For complete control over rendering, you can implement a custom formatter: @@ -183,7 +163,7 @@ Get the current formatter settings: print(formatter.theme) Contextual Formatting ---------------------- +---------------------- You can also use a context manager to temporarily change formatting settings: @@ -206,12 +186,38 @@ Memory and Display Controls You can control how much data is displayed and how much memory is used for rendering: - .. code-block:: python - +.. code-block:: python + configure_formatter( max_memory_bytes=4 * 1024 * 1024, # 4MB maximum memory for display min_rows_display=50, # Always show at least 50 rows repr_rows=20 # Show 20 rows in __repr__ output ) -These parameters help balance comprehensive data display against performance considerations. \ No newline at end of file +These parameters help balance comprehensive data display against performance considerations. + +Best Practices +-------------- + +1. **Global Configuration**: Use ``configure_formatter()`` at the beginning of your notebook to set up consistent formatting for all DataFrames. + +2. **Memory Management**: Set appropriate ``max_memory_bytes`` limits to prevent performance issues with large datasets. + +3. **Shared Styles**: Keep ``use_shared_styles=True`` (default) for better performance in notebooks with multiple DataFrames. + +4. **Reset When Needed**: Call ``reset_formatter()`` when you want to start fresh with default settings. + +5. **Cell Expansion**: Use ``enable_cell_expansion=True`` when cells might contain longer content that users may want to see in full. + +Additional Resources +-------------------- + +* :doc:`../dataframe/index` - Complete guide to using DataFrames +* :doc:`../io/index` - I/O Guide for reading data from various sources +* :doc:`../data-sources` - Comprehensive data sources guide +* :ref:`io_csv` - CSV file reading +* :ref:`io_parquet` - Parquet file reading +* :ref:`io_json` - JSON file reading +* :ref:`io_avro` - Avro file reading +* :ref:`io_custom_table_provider` - Custom table providers +* `API Reference `_ - Full API reference diff --git a/autoapi/datafusion/catalog/index.html b/autoapi/datafusion/catalog/index.html index 7629a570a..64d0e67c9 100644 --- a/autoapi/datafusion/catalog/index.html +++ b/autoapi/datafusion/catalog/index.html @@ -34,7 +34,7 @@ - + @@ -117,17 +117,29 @@ Data Sources -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -419,6 +426,15 @@
  • - + + + + CatalogProvider + + + + +
  • +
  • + - Database + Schema +
  • +
  • + + + + SchemaProvider + + + + +
  • +
  • + + + + RecordBatch + + + + +
  • +
  • + + + + RecordBatchStream + + + + +
  • +
  • + + + + RuntimeEnvBuilder + + + + +
  • +
  • + + + + SQLOptions + + + + +
  • +
  • + + + + ScalarUDF + + + + +
  • +
  • + + + + SessionConfig + + + + +
  • +
  • + + + + Table + + + + +
  • +
  • + TableFunction @@ -2372,6 +2984,15 @@
  • +
  • + + + + ScalarUDFExportable + + + + +
  • @@ -759,6 +842,15 @@
  • +
  • + + + + WindowUDF.__repr__() + + + +
  • @@ -795,6 +887,15 @@
  • +
  • + + + + WindowUDF.from_pycapsule() + + + +
  • @@ -815,6 +916,26 @@
  • +
  • + + + + WindowUDFExportable + + + + +
  • @@ -918,9 +1039,15 @@

    Classes

    AggregateUDF

    Class for performing scalar user-defined functions (UDF).

    -

    ScalarUDF

    +

    AggregateUDFExportable

    +

    Type hint for object that has __datafusion_aggregate_udf__ PyCapsule.

    + +

    ScalarUDF

    Class for performing scalar user-defined functions (UDF).

    +

    ScalarUDFExportable

    +

    Type hint for object that has __datafusion_scalar_udf__ PyCapsule.

    +

    TableFunction

    Class for performing user-defined table functions (UDTF).

    @@ -933,6 +1060,9 @@

    Classes

    WindowUDF

    Class for performing window user-defined functions (UDF).

    +

    WindowUDFExportable

    +

    Type hint for object that has __datafusion_window_udf__ PyCapsule.

    + @@ -985,6 +1115,20 @@

    Module Contents +
    +__repr__() str
    +

    Print a string representation of the Aggregate UDF.

    +
    + +
    +
    +static from_pycapsule(func: AggregateUDFExportable) AggregateUDF
    +

    Create an Aggregate UDF from AggregateUDF PyCapsule object.

    +

    This function will instantiate a Aggregate UDF that uses a DataFusion +AggregateUDF that is exported via the FFI bindings.

    +
    +
    static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, AggregateUDF]
    @@ -1047,7 +1191,11 @@

    Module ContentsParameters:

    +
    class datafusion.user_defined.ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    @@ -1085,11 +1245,27 @@

    Module Contents +
    +__repr__() str
    +

    Print a string representation of the Scalar UDF.

    +

    + +
    +
    +static from_pycapsule(func: ScalarUDFExportable) ScalarUDF
    +

    Create a Scalar UDF from ScalarUDF PyCapsule object.

    +

    This function will instantiate a Scalar UDF that uses a DataFusion +ScalarUDF that is exported via the FFI bindings.

    +
    +
    static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, ScalarUDF]
    static udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    +
    +static udf(func: ScalarUDFExportable) ScalarUDF

    Create a new User-Defined Function (UDF).

    This class can be used both as either a function or a decorator.

    @@ -1104,7 +1280,10 @@

    Module ContentsParameters:

    +
    class datafusion.user_defined.TableFunction(name: str, func: Callable[[], any])
    @@ -1430,6 +1621,12 @@

    Module Contents +
    +__repr__() str
    +

    Print a string representation of the Window UDF.

    +

    +
    static _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    @@ -1454,6 +1651,14 @@

    Module Contents +
    +static from_pycapsule(func: WindowUDFExportable) WindowUDF
    +

    Create a Window UDF from WindowUDF PyCapsule object.

    +

    This function will instantiate a Window UDF that uses a DataFusion +WindowUDF that is exported via the FFI bindings.

    +

    +
    static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
    @@ -1498,7 +1703,10 @@

    Module ContentsParameters:

    +
    datafusion.user_defined._R
    diff --git a/autoapi/index.html b/autoapi/index.html index b8d920eaf..b79037d04 100644 --- a/autoapi/index.html +++ b/autoapi/index.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -423,9 +430,9 @@

    API Referencedatafusion diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html index 2607e7220..518ae0ef7 100644 --- a/contributor-guide/ffi.html +++ b/contributor-guide/ffi.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -585,7 +592,7 @@

    Implementation DetailsTableProvider PyCapsule to have this capsule accessible by calling a function named __datafusion_table_provider__. You can see a complete working example of how to share a TableProvider from one python library to DataFusion Python in the -repository examples folder.

    +repository examples folder.

    This section has been written using TableProvider as an example. It is the first extension that has been written using this approach and the most thoroughly implemented. As we continue to expose more of the DataFusion features, we intend to follow this same diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html index a8c329ba2..5df6002ce 100644 --- a/contributor-guide/introduction.html +++ b/contributor-guide/introduction.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/genindex.html b/genindex.html index 3044426d6..145252ef5 100644 --- a/genindex.html +++ b/genindex.html @@ -114,17 +114,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -292,6 +299,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -311,8 +323,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -467,7 +474,7 @@

    _

  • __call__() (datafusion.AggregateUDF method)
  • +
  • __datafusion_aggregate_udf__() (datafusion.user_defined.AggregateUDFExportable method) +
  • +
  • __datafusion_catalog_provider__() (datafusion.context.CatalogProviderExportable method) +
  • +
  • __datafusion_scalar_udf__() (datafusion.user_defined.ScalarUDFExportable method) +
  • __datafusion_table_provider__() (datafusion.context.TableProviderExportable method) +
  • +
  • __datafusion_window_udf__() (datafusion.user_defined.WindowUDFExportable method)
  • __eq__() (datafusion.Expr method) @@ -578,9 +593,21 @@

    _

  • (datafusion.expr.Expr attribute)
  • -
  • __repr__() (datafusion.dataframe.DataFrame method) +
  • __repr__() (datafusion.AggregateUDF method)
  • + + - -
  • _custom_cell_builder (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • _custom_cell_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _custom_header_builder (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • _custom_header_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _default_formatter (datafusion.html_formatter.FormatterManager attribute) +
  • _default_formatter (datafusion.dataframe_formatter.FormatterManager attribute)
  • -
  • _format_cell_value() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • _format_cell_value() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • -
  • _get_cell_value() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • _get_cell_value() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • -
  • _get_default_css() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • _get_default_css() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _get_default_name() (datafusion.user_defined.WindowUDF static method) @@ -708,7 +753,7 @@

    _

  • (datafusion.WindowUDF static method)
  • -
  • _get_javascript() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method) @@ -734,11 +779,11 @@

    _

  • (datafusion.plan.LogicalPlan attribute)
  • -
  • _refresh_formatter_reference() (in module datafusion.html_formatter) +
  • _raw_schema (datafusion.catalog.Schema attribute)
  • -
  • _repr_html_() (datafusion.dataframe.DataFrame method) +
  • _refresh_formatter_reference() (in module datafusion.dataframe_formatter)
  • -
  • _styles_loaded (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • _repr_html_() (datafusion.dataframe.DataFrame method)
  • _to_pyarrow_types (datafusion.Expr attribute) @@ -746,7 +791,7 @@

    _

  • (datafusion.expr.Expr attribute)
  • -
  • _type_formatters (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • _type_formatters (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _udaf (datafusion.AggregateUDF attribute) @@ -772,9 +817,9 @@

    _

  • (datafusion.WindowUDF attribute)
  • -
  • _validate_bool() (in module datafusion.html_formatter) +
  • _validate_bool() (in module datafusion.dataframe_formatter)
  • -
  • _validate_positive_int() (in module datafusion.html_formatter) +
  • _validate_positive_int() (in module datafusion.dataframe_formatter)
  • _window_frame (datafusion.expr.Window attribute)
  • @@ -826,6 +871,8 @@

    A

  • (class in datafusion.user_defined)
  • +
  • AggregateUDFExportable (class in datafusion.user_defined) +
  • Alias (in module datafusion.expr)
  • alias() (datafusion.Expr method) @@ -834,6 +881,12 @@

    A

  • (datafusion.expr.Expr method)
  • (in module datafusion.functions) +
  • + +
  • allow_single_file_parallelism (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • AmazonS3 (in module datafusion.object_store) @@ -900,6 +953,8 @@

    A

  • array_join() (in module datafusion.functions)
  • + + -
  • catalog() (datafusion.context.SessionContext method) +
  • +
  • catalog_names() (datafusion.context.SessionContext method) +
  • +
  • CatalogProvider (class in datafusion.catalog) +
  • +
  • CatalogProviderExportable (class in datafusion.context)
  • cbrt() (datafusion.Expr method) @@ -1154,7 +1245,7 @@

    C

  • (in module datafusion.functions)
  • -
  • CellFormatter (class in datafusion.html_formatter) +
  • CellFormatter (class in datafusion.dataframe_formatter)
  • char_length() (datafusion.Expr method) @@ -1189,11 +1280,7 @@

    C

  • coalesce() (in module datafusion.functions)
  • col (in module datafusion) - -
  • col() (in module datafusion.functions)
  • collect() (datafusion.dataframe.DataFrame method) @@ -1201,29 +1288,47 @@

    C

  • collect_partitioned() (datafusion.dataframe.DataFrame method)
  • column (in module datafusion) - -
  • Column (in module datafusion.expr)
  • - - + @@ -1324,12 +1435,20 @@

    C

    D

    - + + - - + @@ -1911,14 +2081,14 @@

    I

  • is_following() (datafusion.expr.WindowFrameBound method)
  • + + - - + + - @@ -2295,9 +2493,7 @@

    N

  • nanvl() (in module datafusion.functions) @@ -2375,6 +2571,8 @@

    O

  • overlay() (in module datafusion.functions) +
  • +
  • owner_name() (datafusion.catalog.SchemaProvider method)
  • - datafusion.col + datafusion.context
  • - datafusion.context + datafusion.dataframe
  • - datafusion.dataframe + datafusion.dataframe_formatter
  • @@ -1450,13 +1569,6 @@

    D

  • -
  • - datafusion.udf - -
  • @@ -1479,25 +1591,21 @@

    D

  • date_trunc() (in module datafusion.functions)
  • -
  • dense_rank() (in module datafusion.functions)
  • -
  • deregister_table() (datafusion.context.SessionContext method) +
  • deregister_schema() (datafusion.Catalog method) + +
  • +
  • deregister_table() (datafusion.catalog.Schema method) + +
  • describe() (datafusion.dataframe.DataFrame method)
  • DescribeTable (in module datafusion.expr) @@ -1527,6 +1649,22 @@

    D

  • dialect (datafusion.unparser.Dialect attribute)
  • +
  • dictionary_enabled (datafusion.dataframe.ParquetColumnOptions attribute), [1] + +
  • +
  • dictionary_page_size_limit (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • digest() (in module datafusion.functions)
  • display() (datafusion.ExecutionPlan method) @@ -1609,7 +1747,7 @@

    E

  • EmptyRelation (in module datafusion.expr)
  • -
  • enable_cell_expansion (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • enable_cell_expansion (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • enable_url_table() (datafusion.context.SessionContext method)
  • @@ -1617,6 +1755,16 @@

    E

    +
  • encoding (datafusion.dataframe.ParquetColumnOptions attribute), [1] + +
  • end() (datafusion.expr.CaseBuilder method) @@ -1635,12 +1783,12 @@

    E

  • evaluate_all_with_rank() (datafusion.user_defined.WindowEvaluator method)
  • +
    - +
  • from_pycapsule() (datafusion.AggregateUDF static method) + +
  • from_pydict() (datafusion.context.SessionContext method) @@ -1797,18 +1967,18 @@

    G

  • -
  • get_header_style() (datafusion.html_formatter.DefaultStyleProvider method) +
  • get_header_style() (datafusion.dataframe_formatter.DefaultStyleProvider method)
  • +
  • literal_with_metadata() (datafusion.Expr static method) + +
  • ln() (datafusion.Expr method) @@ -2201,14 +2375,32 @@

    M

  • max() (in module datafusion.functions)
  • -
  • max_cell_length (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • max_cell_length (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • max_height (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • max_memory_bytes (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) +
  • +
  • max_row_group_size (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • +
  • max_width (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • max_memory_bytes (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • maximum_buffered_record_batches_per_stream (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • +
  • maximum_parallel_row_group_writers (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • md5() (datafusion.Expr method)
  • +
    -
    @@ -2382,6 +2580,18 @@

    O

    P

    + - - +
    +
  • ScalarUDFExportable (class in datafusion.user_defined) +
  • ScalarVariable (in module datafusion.expr) +
  • +
  • Schema (class in datafusion.catalog)
  • schema (datafusion.catalog.Table property) @@ -2658,14 +2886,32 @@

    S

  • (datafusion.Table property)
  • -
  • schema() (datafusion.dataframe.DataFrame method) +
  • schema() (datafusion.Catalog method) + +
  • schema_name() (datafusion.Expr method)
  • +
  • schema_names() (datafusion.Catalog method) + +
  • +
  • SchemaProvider (class in datafusion.catalog) +
  • select() (datafusion.dataframe.DataFrame method)
  • select_columns() (datafusion.dataframe.DataFrame method) @@ -2694,14 +2940,14 @@

    S

  • (datafusion.SessionConfig method)
  • -
  • set_custom_cell_builder() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • set_custom_cell_builder() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • -
  • set_custom_header_builder() (datafusion.html_formatter.DataFrameHtmlFormatter method) +
  • set_custom_header_builder() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • -
  • set_formatter() (datafusion.html_formatter.FormatterManager class method) +
  • set_formatter() (datafusion.dataframe_formatter.FormatterManager class method)
  • SetVariable (in module datafusion.expr) @@ -2740,7 +2986,7 @@

    S

  • show() (datafusion.dataframe.DataFrame method)
  • -
  • show_truncation_message (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • show_truncation_message (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • signum() (datafusion.Expr method) @@ -2768,6 +3014,12 @@

    S

  • (datafusion.expr.Expr method)
  • (in module datafusion.functions) +
  • + +
  • skip_arrow_metadata (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • SNAPPY (datafusion.dataframe.Compression attribute) @@ -2814,6 +3066,22 @@

    S

  • +
  • statistics_enabled (datafusion.dataframe.ParquetColumnOptions attribute), [1] + +
  • +
  • statistics_truncate_length (datafusion.dataframe.ParquetWriterOptions attribute), [1] + +
  • stddev() (in module datafusion.functions) @@ -2834,9 +3102,9 @@

    S

  • struct() (in module datafusion.functions)
  • -
  • style_provider (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • style_provider (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • StyleProvider (class in datafusion.html_formatter) +
  • StyleProvider (class in datafusion.dataframe_formatter)
  • Subquery (in module datafusion.expr)
  • @@ -2870,16 +3138,26 @@

    T

  • (datafusion.Table attribute)
  • -
  • table() (datafusion.catalog.Database method) +
  • table() (datafusion.catalog.Schema method)
  • +
  • table_exist() (datafusion.catalog.SchemaProvider method) + +
  • -
  • table_exist() (datafusion.context.SessionContext method) +
  • table_names() (datafusion.catalog.Schema method) + +
  • TableFunction (class in datafusion)
  • -
  • use_shared_styles (datafusion.html_formatter.DataFrameHtmlFormatter attribute) +
  • use_shared_styles (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • uses_window_frame() (datafusion.user_defined.WindowEvaluator method)
  • @@ -3168,6 +3446,8 @@

    W

  • (class in datafusion.user_defined)
  • +
  • WindowUDFExportable (class in datafusion.user_defined) +
  • with_allow_ddl() (datafusion.context.SQLOptions method)
  • -
    diff --git a/index.html b/index.html index e143b33fc..cf0938eb3 100644 --- a/index.html +++ b/index.html @@ -116,17 +116,29 @@ Data Sources -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -294,6 +301,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -313,8 +325,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/objects.inv b/objects.inv index da03cabba9cb48d4da33f9ea456f318ceee93134..e1fa1a7374b9965764d9053e9351ef3d5796b99d 100644 GIT binary patch delta 8674 zcmV<8Asyb9J)K05g@4VRTX)+ww#VQ7DZJL4S8Ea{>2&5T7pLQ%H1WhqyUx6DK_n!h zApr&eWhtNj;6hTAEQ%npx7?T35y9UdBre&1PA{Kbl1d9w zvcG5T<-aqY(amh7i~Mgs+13ACUR~@G%wDHyRa80ALRwau6Mv;HpAVq=88f;jc||mJ z8KZh7vKU%H2QsEWscKPN0FiG0j=@9*3E*q=w=->FiQ zTFlLcrj<5--Q|SCPykxr0Z)>Lq^$EdxfSj+(-q4zNjX#=Gp0-qx4^i>rso=p>U(@C zw16U(L~3ULm87Eb88!TpO1+H(YZ0H(QbtthQkr^9vVSbD8hZ+dpwRCCkR=6ym@=mY z1W5xx7+;(E1^~(-UQP~?6Entupj0^kg+sg*Apsz=ZH^HifttjjNYP(9k74O5ElLPd zTX&)#t*t-Nq^9_zL8_Vqk+iI6#?~;jHd|3ex0j_DlKpsYiIn0Y(c9A7r*V%+<|;B% zBoz>dRevlaXCyiwQX11NV+9mQX~t6x0;5H#w;-gP@}*vZpg7pODn*&hN%{>8W=vuZ z@aF55CKjpDuUG$o807Psy=2SmW8k>_j(=ZKUZhGM&l93WFI7>pr1O6M{fL0KM)SP=Xo#Y+BnV1;l_%C&C-!qCNyZ3| z?I|QR??*-Fg>Jkjj9tnjJX4@N9c?C9o`0QhiNydk*p44SENMlquU`T{Ui}mgdGRwq zPF_8a?Uof=@+!KBqUXZ^ro)top4w2~;}NFD^JM~KPsC5~0nG1dk*w$@9Jp<}ihqv4 zlBFc&YR!JYQe)ke`kB#we_b?$|5KO8cv)!$!-{u!I-o^&Xm><@uc&_OW_v%C)?ikX z8{RS4Y@Q2KAbtufp`6TfnvH8dEPFOqXHk}8HLk~M@N7L+<3)f*DvDB4)ofT8gMS%- z&sb{zAaXmkFkS_yP@am+7$IZXKYs&!5R7dM{~W6^p)ovvHde$8!XNC_(Mrz)lR3I-0SF``}+9^`Q{7Jd1Tl5 z$chc?A-4J zklCjG8f-Q~7X@5$F`ONxcgfMMBe} zY(|(dtGPY+iqDPxof)GDTunY`yqUmfjsRVvH(ZA@D0{6 zAfhGSrz9sbCg?&-0Dp+M&}GF==yzCE78hz^hk}Z;up`!an~3pa{kQG|Gra`66wt5L zK3P!>^r*fS?AzgBSU=B^WOPBQTsKh^+|J+F1&kwVXOdxjA!I?ErwjtV^aGisG=s2u zUI2`3I)c{8ht%;&nr{h;i2JSCjnB}j@uyD~F#hxjXRoc-*=rj^?q*X8sY9B}V~r7T>-XjSFVn<_t{ZMf zdUa&)4wCqR+xoExd4s+3x;~eOs6t!mH4g9Hb{|uf>nk-;`cZbUO>9y`D zM>*QtnuRWcM)Ct^3n#18-!+>sB;XI2P~xTna~}nz4aI{atv5&pj{E26nf$3jF2FOk z2KSzSGRGEj2Z-VEUG)mua0(!S{I0yGkbg1yh(gv7Ig!{JTN}y%TO$uy#+j%oNEPo>U zEGiFYP+2pIXWlCR&xB=o65n%7wm&Q{q)=2=YN~~`?|LMjLqWVN+l-TjV)SvGKbl znqgO`=~5L(dyb|rGR@glS3Dh+nm!w?Dg{MNnhXy-;B7KriV}-WHz_T(b${}~Q*i4a zodC4>D(7f-UeVh3A!~ZmRScb>;e*fnj1UMo2y`laMG0E@I+rnp_>C|EB4}b`s(^J! z!DJ@_4d2H5MuCr5i=V1t=VA)>gJ#J&)H<#@XOKwd+hj$C54fHx73P6AnNBecKTl8m zej|mZvJz;$M#zb9Q`wp@w0|#+=}bqsC`71)`6t8(1UVI882IVCo5TN0lF)H8(~(?4Ye4-RIMF!w%o-(Y+p}JAdvVsUFD}qa-Jt zl+>gAa+LCj(~NrbUX9Y5bT&?p@=pWGV@|u9)J9=X!0UO+e~iimTx0!tx^7fs{pWPu z5r^mX^-#}7sYf2D*O!UsQ!+8(ki9yi4={pGlZHtI0GzGr+fN;2kvzP=p1oR))8 z$J_O3zZ$0v_<4H%(|=Uy@rV2MWno;G8vluWKCUmFbO>Od^gqW+!yOFRXN^6Zl%=S{ z0{gNuuBV-LfMB2YxLy|0aJqgmRT}IYcRjB6n{fDGpYW^k!eb63?33;5_Vy!01-a(! zZW-aEx4UWfmgf2Uu4;%~d|Y&_T5yc;c-?kt;NRwk^F8iy*?*boQCXfPbmJz2t$Sxm zM=YWuWykpvErb}e;)rhudVT-m$QGe``si&;3O@mfXnu|K(fUB&|a2RWXLT9LM#g_79)uhhD7^iyZEZFh6 zE0pnrAdIZ6C|j=dQ|F?N?Kj_Qs-8M84=j7)Vqx4)Qz*M?U*=@{lzC~lMD7nXpQ7Qo z{R^@V3-wg*L)q{Daf9tiUP>oFj}5k`$MfsT?>wkJuP^HL{K53!p?ZK|@r^-pC zXrflc&W*ZEovAK+L-F1!2A;owBRXr%XZQ4HsH1(Es2j_fve8z6-+V-3^p}4qIBN$B zd;K_i&3lv&ck<%-J|&Oz)p_;L+vJ|Mtvz)kOC()Ls#d$7>@QSOp3>p-69DwrBxjjj z-k8@Rs(;U?SPI27TibIP^*NL$9Z?Z4`>6N87Buzg+>)q*bW;wl6xlSxOG7r*>~(j; zZ~svzhs2Yp?vc}x$eek{`A7^W`Su6EBfg>ffl`16d&8_t!%bb5ajduXnVIpFu+uU| z((JBmI${!fES?UZsXP`b^oq&{HhdK6Sn$J&a(^JE1}O4?GmgSI<@SpJ;5fgo&Y`$~ zxZOFA5YU^AKOLYwUOciRkNK{%4JeXSP8*CM8U$gMSd5K1lx4#nNMm>$mPfyX;+7N`7Z^ur3{!*Rm_PLZ5}Cuk#2hwv zW`qaJt8!2thkbiOg5qS`Apnd`S|*2Q289+2AH|?`2mD-gm+qsGMSU~8v=GA1qUswx`m4c98{%@0n!);g#lI|O*kkF zE^G7MY&i^%Y3SxRH(!$ijFu8ExQpGz0}c!uft4BKrYi^R%tAt?hQsC(5JrbXK7WP7 zRzyPA8OtQ8JBS1tEa6x|F?L4cfU7m2)dXrZr2?)tXVf0>4fmk6Ln&-YfSX^ihL`yZ zk|iO>5ew532+0Usm*pd@0)EtkL$;0~2KZiu<8tft0QkVU5P-R}G5jmeHuh|LFe>9r zrv$EEGnH_mVT;)^VR?|%nyDXj_xwb+=erR9VypD;GWu1F`k_RKfLL106W>5 z=i|h6V>!Uk;c9sr3;;jr(J zFw?&HGJ&?eASbLr=c~0yR&)c2TN7zMBXA`G+TpcpsvxwgECDTr`o+Qa#t$Zucu02V zU`9hVZDTUT`M14iIsH<98-Jro_1sJx=NB7c&ouvg3g8`j`+(vQD{ik$9nDt0QE&yP`Ucbzj5)vL1;h^2=#PekM^rzK$N$F zo3A)w5H8-92h&Hv^adZAD6p}Z*1U-WeYBh3*c#x;J_>;6`sBuM?SC$i*Aie$&0RBq zufyR+(sGj0m1y>bMZ(;9QxpOu{-i*g4nEVglFHPH|G<1~KJOpf6$iUF!+av)zJ#9l zyS3avwpkd<0}y693zIvDZEE-RfGwT^w5y>(fqDqHP@+=GoA}pY)OH&)6wuDns${_= zj9*L3mE<95hUfr`#(#j#ttJ8Ok#>8dOcMs^Siacfwut}gq$ySEH<3|LtTAiSyn-2e zb+9*nD=`@FRtdkg>qB!gI~e-DiM|?3+`{Z7{>niLq{jm}=x%@0;9#)PDhg^cm!5zsq&8T3ld~ ziZiV+@NNw`nTrZ0h{GY?O-kb6(Q2E+ziF}zS4|vp=F78vBM7;6FJ3GbifZ6@?(s|| zW>6(fk7q+kVo5B7JOCe^X`d;0tQ~Baq;x&o)C&&FbR@&ZFX8!5-RJ%AksN z=M)MwAU=ZJ8QRF*EK-`$A;x5q_Ltm6E$UW|h$?|*zh;n^IoyXtN%#-X?Si!t!3 zT|U91W4(DZ&PV$wmz7#!maD}h7ObR&SW`?kUf)~uITpR71nsStb`cj9j``lb0NRUh zj;e%btDIrI_GYyUo~%XUeM)ig702n=?TOFzA_+Ws7xw~`-Gsk@g(6r&jW0DQR3pqy z80Iww6o3Bd*Wm5TM&2OshR1$D4`{NG7}N~{R)`$s^;#}Mb{j8rNa#U~6IiqY|57#) zPe7S<;1f{he*6K9s$!jF2oejbPD^kFdtAe`8e0Z>5?|;tfi1ZljCb|hE+aIL_KWOj=CK32g zumii34>8DCImXE_O>3`BSZW&%3l_^2wIP?mCoeO$r0@+IW!a2!j1r?fQ*Lb>9K0#v zktoZ0dojL1!6s3{cv8Dc!J?(oyPz1L=v}xjSge2_t3C?e1qolK;6rv(8FB;zq7!Wl z6o1Z7hV9rtr3?3wDO%EalJ$ zvjCopGQqGH_6`Az<0$3eNPbeDjpEBxqfu-g$3}A7so6+gJC2Uwv~v(D5gg6Y+6|V| z%N`sl>o_hio{i=4vZJFoyf{3Lze@*=;eU3~#d9P$hO?O|Vu^tCp>Tnr*YL~-3Ofe%U%O6oAeHz>Oko&l7*rZR``y6erBC`)uDxT9+c-^5A`o1hb=92Uzn zQ6Ny46aflepCnzG(RY9bm8^xG0 zc651-f>pUFajJ&eY>>D(6+>+ixPKVaT4?RLJ?sJ$ixHYZHj!{(p$`eKiaEj;A7K_i zV$1^UPQHMq`U5b4sr5M+z|{IU3{Yx&Dh4c-BOt-e5LM<(qd0yx=VpL1ZHPu3-#MkT zjIMF07(UlE8N=ziKBNR84vrz0@LLdYW|~wrH((s9cLTs-Bdn4r`0f#5JAWz0#?RgP zHNaHsJZX9}_{Q61Ck0C-e0w{P$a97(!3jrx2t`v-pZEr>f#oQxZQSADKNJb3k1vDiQqxKzNH4DoKCDQZ z)S<=Fq@Ub4jtP!d8edc}veSw!L|Y6Nmk1~#F_V;J30a41aM>sJpnp=e1|t2bLj1~t zP$iMytB^fyCuungA)LCsIoE3{Ld@++P>Iq)4)&nkw8J%_n|k)TAU_1Ze{uSZfj)s# z>vss%_S}Jr47Jt28a(1%7kGOtH|fe^f)~g$44+bEe)tlmONXaSe`4`Rto#{tx0IyBJsvd0B(EnPNX zjXr`+mXegKHT!|ZhifnW^hBjAS`cUv*e2N}J6lyjQ<2)>h=0S+2gqX#=F^ZcQ~5L_ z&`3TF2{(^VaLhO-OXiKU*D1@Rn|9a&>87^lmzsaPX;e=1s(m7X^hXag&>_ak*=oOa z0a%BsXQa}-J)f<>eR*EPe5i;W@(h2ez~ngH=<~^)_uo z$v_nuDIrZ^r@&>|Ky7D^S(5iuW)w8%jyTJxqBg2jy>%8i!(Dtb-)gEbL{OjLocXuA zcA=_Hm665id8JeLM%=0+?tPekFE<9Q8eTAL(hYwEntznDccyUa5FsZT-!bq2(X@^Q zsq(?E?j-as(*vF8Bzl#8%jOvQF1G4>jsY%((n~qqfTyrcmYJrIeFr2op= z&lT*8Zu#A&2w3-8zB?nalvL|2ME=d?#56?4>qAOUbsn9x0Ubyu_3U+;Rz;N)Ee6Z9 zMN+`7slvg z%@I$)6@CYw-4;dFb{q(At0Q%PCY}1vGbklC77|YT{lodH-}pfi%3$n30d+vur`5!8 zJb$O2+hp1X*TGg^QWwZ)d6w78c$!xkJ=?=s7h+N=a+WeIXdwb7&mp8#Ra#3&C373` zfMyA8e6h})naw;Q9}!jkjba>x8CWX)y~2YVGj2 z_op=(f@BU-KN4!MpOiY>*BUB%bU*A-`CZCm8KIjpOnH~^k(9l3F}xFaK;YQE;mcz? zkuL(b2oLD>?kc|Q-Kc!g=dCaxb(DP(u(@-Pdt@)@<1Gz<=-A({k{KxoE!liv{ZvjwbM=yR9)1`Q^<XVR-E{%)^(F($5D;@9Rs_D;LGwdj-llzx<^{-ae?P58hVz0Msm-yHFPao}_&DNC@ zH`htp`!wM&w4Fwk9I3DecRp%@mv29P{POws&41S~pFUsy^7Z!J zjiU~ee2TC4H{IKE#=ohPxA_zwZa@C-{Y9tPj4i@a)om<~F8WvXR&X1aSX~5&p;v@wR|}Twx;G8cd30ydSTiZU4M@Y(bs4xv{UjUG>O@>c6uwu$*PJf9X_t?GH9@KV3XFg!=Dn%_MIg9W{gc z@9x@3t#Ne9+FR>K9kB{~jK9u()(8DK(OjtwqyKzxcX-Rj9T{vt{=L>;$5Qy)?&qua zzCG)qhT6)VbQ|e0@S|qh#qTxqz2@62IPQHv!$vXPPU~;}A6Glhqh9R)0olm=ZSb=6 ALjV8( delta 7764 zcmV-a9;@MT*G<6xH zdM&aTT0!Ls2&FVwuBtMNW35(_t_L=G6k0$LOCmM1pOREmKBI)|xgam-dwmU{V1Zon8B1J#xJcgy~v?w7+ZQF^ywYL34lbY&}2B~TRMAEXN8QZ|n z+H6Ht-9eUONcQ2mBT|azMDI#(X2#tjS*XZNkyJn+*0GG7k?4F#X-u<>6;L3h8Ba9` zj25Ndfq#&4%2#>~g5qFhRf;lMkn|fE%$UR+pycbGCYG@%l`pDuUG^^(=Z)kVMgI1l93WFI7>;M*hz$Fn9LYA!(#NXkrEZ#lhTEZMo^Z=BGyF0 z)V3v&R8ugVj3tP?DmVxPr13@D1OO&MDq`DQMt@h5(%4&R=6nFk709H3Fed1>j3>x= z3wCMxp^%Kk4h~C}+i{nJV5%G-J7#!^h2*Aeqo0w>T!`qL*cr--v#n;)oq%zsQxer!-?nW)xBFCGoytJLK&URGMcuz%v6 zla6T71KJZ!jm`ds=yW~0zjYYKXtRGOiv~EllXRi`WoeKbo!b|u0^)W($$DzpXKlp7rt-}P>-w8Tlz(r4O3VUH2w#;nWlM%|8%x40-p;d^Lge6lyX2GY zl7bdO?r&YYE(DE5PbVpBV>O_Pi+NtNrQ-k0RO;bUJE&Zyl;hViA4 z1#vUd2>6o7?-kYN^`hd8uRz)64Z597C-uIyX0%2TaZj#-armZnqM}lQcq3m0L!{f; zMm)No&w=G@B3HJNHX;%9&wtJKwNWFkyL$G`B#7C0mWD%!{3nJL1((3s-tc)Wf_7Y@QV6wK8sD>qw%?^b)SdXAN##-u`qQ{(Uol zJF4w;7&F_`-E6S+%ZVANj-hTDKXI=ha8Ng!4hcP;4kq6^CkzZwhN?$AssoFTFY-i9BF15_x|%j!5Sb^)87BN-yEs)%IPhk~Hy? z4Yh~&vUw#Kj?>LT%+(Th$wErmC7ivsOL?#DR=WFbX#xB5ti4IzjgH;V$paYW(TCf9C3tGSf zQwv+-C0hAY|omZ*(MC}lm`<^oL_YA-G^Hrb{uKFMS4cN zkH(6nE2gX;YuKdTSRoh109%9mZy_*t3sJ}#A}11C zW0$d1V{6zQ>u4IQTrA9>RgWtu5@xi_60+$JZV;!Cs(%fxz*i+Wu0n12;)>w*@AmnD zT;a6}Zl%{EHmO3bmRbn8h1Dv#3(2v%RYMSquQb(((n8)q4ZjQ3Lfze1RN?F0sJ6UI zRw>1XW&K-V0UEryh7JwHK!Yz!%A5fxqlF^?~&9I&MM=Tf=?J3FA=tVVKm?2 zZE7@$W(A3238cilZQ#NCO@YyDk>@nU#_v~0`h91{OH~~0J~FCOGnS%NanRP@(eS`n zpQHIwlvr%KO=+pEHwT`ATP3JR>f5N?qCe2)jIf}Uukk8|&d~6|p`RlJ0%AgsrLQSL ztAAhT8>A4&ZX+OqCLG2JSkD7Yb|TR5IV%`i!4Fxn9;;#JNDB6YX2~toIzAaUkVqE0 zWKH_dIv6Vz=4v&XPB9HKPfz@w3x%e#7HFeJNWjstY)u&2lg13D0~YclRKiyAV+4Yh z@M8pm*6*VPLKg2w3rND1^~}T)s5s(4>VMz~_B%txIaTQ6karCZI>!ep5Rv9koofpWHckK9f=xAh-JOiOyyfwjcoo%+fD(yp z4t9d6ORHAH*a5)AfWeKzZI&D zLI44U8#WJlZ$!3(Vm{bJP_WG0RPu2t7=DUt597!tj zd9xuAfF?x=+|?`+u1{DRR2>);On*bWw>uo3Xii}6@qWL@AQohrnS$W76Y|j@2(zR< zubpIB{|fRD9*5=8@1VF91;z!g@eg5YP#ohMDq)d1Y$4{bxifEgu)Hb<<#E{36A~0B z+W`UK-K1r5cxI66%Mc(-*J)A0GTXKYc;jt*1Y|ai2oR~N1vpd7ie_vB&3|pP3RLX} z*@R*4kDb}abA&1YvQS_dB>|_Q4}z`XXw3u~49&&v3ON>cFfwd{e;_vK81#Y6uwz;W zLODX2mZD4+B>jefT}r`0>#FYIVhIOTDPw>%#zA3#4JhD%$U!i;tS$DlSjGW+V`j5x61C zdl>^h)PvoYhY$n&l*4hkjg$;{!?_TExwHGrD$cexkS7?Gai&uO*MF{=O1RLl)ohut zJjiCv)DPMpJtP5rs5N=@>hGYq zU;Y7!``bT3bN9>7aE}+oR=fhNUcfn4&?(lCO+MkU?~pLlzxXPFwvHgDltE{dwMf=< z3yIqh^YRX8Gk^|wL8sUS)7%M*V6?j6U`ONQGaKWfnsNo=TYvYS<@9s?Y>Xz=vnO$! zU!|x@)BWcZz<=}M1N#PWZx8$fgK$lM;PYzny`mDpbNNBNCpp9xi3jyjXh_z_dUgc> z^;uR>x%$Gtaq-MSXh1gzb$4L5_8-B3C~pNfPjSK^oUknqW{iRv4L&r131Ts=c@qcv z=nn4K0NmL}0e^5`pWORfyHDe_1laWQ*u22kXQD*Xa+1=uXm)Nz!dz4Y3IP%}S}@3C z{fVZPRHjY*4)d^iIt(rm2b-JMd?MkVgr4_@wcJ29LKw>f5M~AolRJowWb^ukEuI3j z@1Q|}`tY_;qEgDUfJ2Z5QQM8iP(V9NtCA&?FrFtZSAUY{qF zWV$fG!1CD!g&_W^lcrRu-$X`1vBs=P^9ttGtAoAwn|;A}4@&sWS09?Vo?z&?CJ>|0 zXSsvf?fZp;RK^z&Jiu zH)FPWHPrST*Rf7uuo1m5sC42=Oz_FGJ#sapiB z5IIWmS}sC%8*gz)=uxx~ShNCvQZ}(eK$&$25m4q~BoS!zaX=ARK6uMb1<9#`x0_M{ zUvVfinVy%ICxvaBT<(14x(j&f=!}?@uYT@f<;TE_rWVb(fhzx zuvh{Au6hy%3lhFc!C%=;W5^KLU}8VeTMM96}q=41tr#Oh&r3O>J**T-nX zGM5^ji7}Uu(~YqZ)|$fGqAqM0j#@fFpi^?gCqG#c{YkKQ;kNk zc^n(bZKq};=q^#q(ym&U2$IG6M;_%||IDh^w9W;j9 zMHkPJ;26#>4I0DOrOQSvb0klfnvUV<;?O95E}o3w=HkF;UM`M~;^dOU6U7Pv=|k26 zLtnu&>j1W(&=TPV4r3+1Am7Y5hOy(tkulal92jHXr65~yq>n%hilp$fI5-=`3V5sD zMgq+2fL+1Aig3a=;LmgJH-Ei?BJ~<)BFk;B1BX_5&cI(v5o+o<5;rKj6Gj1)yP-0N zAG+(!mMBYfCAgz&3E#y^44a@6O&k`>Gf^N=R}=vX-ku~~(QTQaIN{Xnybe@|fG&tm z*GO!nH(*1T3E8Z+Sl}HB7^{IuKR1doW9;bi6$)16qQq$$YP&_^;(s&@wL{=yOlzU_ z=k`zvP%K7h2H8ZyfrUONyebw5Pke+~0EsaRus@*!n(7a#0H)UGRRB}#V=F+Z?dcV; zRE~fIH$zmJGmYZ-*_>|y%Cw;raeU{L&N8~ep-sPegg7{cT*7Zbz?o@M z)xv;rsNM|#hmEjGqJQ9rM}+O97#lzL=ga_8t@ETA&EPw4mz@+WmGJ%TNFvV}t^_9> z`6d)iMSU_Gum+Z+thVumbA*K(49gW|H${7j5h%1`;4cFRJGqedabfM^YPj$V7td>W zuleUT_;WnfewQqTEUbUO>a+pgP`)5rU-)~Upxc(b&A_@1aejO4 zf)+yVlEqF_^)fklX4#7rJmdDX3T3yjm9>A>ZF693QGcdvw5G!syxTQ?cZ8fRgWKP` zvd{bTCfE%Npp%PJ6YQ4xSlh6Zc9zSXA!a(IQe;J6pjzxuoRm^**ozpVm7;^buCw&}8#i6FhauK2JjX;Oz)OOt+d=Qt-g zSZR1w!N`uQwh(R6TU{ccii8=^NtTdJNZ77J;ssQyHbA7WDrC2O5UM2ddleF??s( zZK}M$Ej+Jb9#q7>^7KEcz~ngH>f6cP_U3MRZ&vFzN^+s#dY9jrMp*BxZkw=w_-T{Q z-U_a&qIWs#EV~!#pVRI4tsQo)27iVr1z4iPft`~pU~}po;69oL_j4vaO=O^iG?kqK z*JT5>gE?kR&Z*2OXwDsRmQh9RSs8UeP~Z%A@q0HiXc5#qxMlurEK;bZQ)Og%eO~F> zwadQI)FkO2N2^Rn@s((*ZlP=&+>Xfs0rl#sB=vR8;IdBhgR)4#t^ws?+ z^gh!)BkCx6m43?>82K)C>U)j>E``!7+25PTuuYbkrjX<>o#qVG=o+Md#$MhwcbJG-~4R-!x*of&94m}owNZ1NGJ8|b(&U1l@l#`>-2(1Abm#d zmKhSz93yp%HM>F=X?;#GMSrR?!%|t9A!lXaU*5gPsP+y%c=K$$P-AEGb?#W9MhE(C z=BA*C#Ho^&janZamD+GasEfTwV;lnC#b@iL@xGafgs+POK5Bg&D}}Ax04SxBx&u+& zuCZHG)2U=)&mon~gAG}{dA&er?uSZ^5cK{0ASG?065qoLS>M+&I+;3ci*l$=}YxiEfh_;PGz>+s#i%f=RC zJk6_&-t6YAJ0qzSxk(+`9j5^kc@R>nDobG_J}zubS!$!O)P5niP&Yr?Sd;e4WNG)h z;fdndwk;dgmg=a~rhi6VW=Q7EH9cJ0rlZ`AIKi=-#w_7>--MffcHSK>=7K`jY-V>6 z9^HGDMg;mklBeqv(_@(Z)Ai%1C{T?;eU6}#daA&V-b!cx%E^M})4QLi_M*F0#WMO+ zDvCnzJL^73d~CJORjOgV-hVealZn*)nTwUzcT$;1tx#WD$A6!8?!Nx@tcb|N1e$cG zaFL$}b4|B85Z+09M!@}gPQ?9bA8A1{N2yPQ+TYJf(QPS%RQ3r^1nf_f{t$dU0_Otu zP0xh@oCI!P>(RTo<869zQ{Cj!8d{IkS@tAg|4}dZ%yy;e*{xBN>-)}vgsx~z0(a#E z>73cfGrhQhXn%5LKT4mPxTGK^LAwZg_!qVvOfPI{m|XR$?9n=MznmU9bxwlZgL*VB z_!CVp_$^KP*WG&r&#lr=&$$6iuC1^4h#aoNPY)OIC%vm+ee}~Mv+0@TxJl5{x=-u; z<9&L;U}!ZjvOA2|j}OzQX7~KWKD(UNDH_vYxny0!*?$C{^tdy&B%j`IHFe>*)EOEx zUs$i8)*88p?WXknht4+>`)H!d$qcY+I#)GD&HetX$%^uQk+sC;+a?$0&xsSbD14H4 zqjQk^lZxpGxDYR{Qq8w@p-!0aKGqi%#ZUHkFUG{3OZ?jWW3RN1)mJVwKeyM}q;Kbc zxT}1CAAdi8-G;Wg!Z}R2M>@`(`}MBnymjAB-DL8#i6CKRod@?775jV3c8UKp|Mbyb z*|=?AxwuZ!Uf*2u=>MM-B0JLn%H3V_gRi3B{Mxr~3Y}kjE~`7p!PSZqnXV5n^xyew z=Kl9bvZ50$(wXVKhlxAZzWM#m{%*RoOWWyG$$yy!dvxVV7o5KR^zrl4!<#RkKRr!< z{qpec-ckEWKE;>$efP4Q@o(ztWj@7+hmZd|pLD9t7&$Ce-Oh6Iqc5trg4>hE)Fk-D z<^nX}ZRp@#=<1~|hj)xGMX=ib60h~fex8166HG$KxM0QOaq(bOyn1D8ya#LTBYr!j z_kXSRfAy-95wkya(<VCn8fUiFJj{;u`}3aq{jqtD^R>QZ~Lr#jf5JznJx`}K7l zKP4HiRHye^etPWEE%_)pdDe8hQ!bdrrQCLt>`jBIkAR_$VSc9k zGRghku`uk%1IQ)Q?3!J3Xw@9qBX0N31yKESJ(k)(C#TlTm5Uo&$J;n3_RQrg8)L^= zIfp-88)6RMC?7sePK}bwSGFdLH&xD>B$u!5+AOW1a?SF(j5=eXT`
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -427,17 +434,17 @@

    Python Module Index

        -
    datafusion.col + datafusion.context     - datafusion.context + datafusion.dataframe     - datafusion.dataframe + datafusion.dataframe_formatter @@ -494,11 +501,6 @@

    Python Module Index

        datafusion.substrait - - -     - datafusion.udf -     diff --git a/search.html b/search.html index 6602d8b2f..5339967e5 100644 --- a/search.html +++ b/search.html @@ -121,17 +121,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -299,6 +306,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -318,8 +330,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/searchindex.js b/searchindex.js index bd9247ebd..6f84552f1 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API Reference": [[19, null]], "Aggregate Functions": [[24, "aggregate-functions"], [31, "aggregate-functions"], [33, "aggregate-functions"]], "Aggregation": [[24, null]], "Alternative Approach": [[20, "alternative-approach"]], "Arrays": [[26, "arrays"]], "Arrow": [[38, null]], "Attributes": [[1, "attributes"], [4, "attributes"], [7, "attributes"], [12, "attributes"], [18, "attributes"]], "Available Functions": [[33, "available-functions"]], "Avro": [[39, null]], "Basic Operations": [[25, null]], "Basic Usage": [[36, "basic-usage"]], "Boolean": [[26, "boolean"]], "CSV": [[40, null]], "Casting": [[27, "casting"]], "Classes": [[0, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [17, "classes"], [18, "classes"]], "Column": [[26, "column"]], "Column Selections": [[30, null]], "Common Operations": [[28, null]], "Concepts": [[23, null]], "Conditional": [[27, "conditional"]], "Configuration": [[34, null]], "Contextual Formatting": [[36, "contextual-formatting"]], "Create in-memory": [[35, "create-in-memory"]], "Creating a Custom Formatter": [[36, "creating-a-custom-formatter"]], "Custom Style Providers": [[36, "custom-style-providers"]], "Custom Table Provider": [[35, "custom-table-provider"], [44, null]], "Customizing HTML Rendering": [[36, "customizing-html-rendering"]], "Data Sources": [[35, null]], "DataFrame": [[23, "dataframe"]], "DataFrames": [[36, null]], "DataFusion in Python": [[22, null]], "Delta Lake": [[35, "delta-lake"]], "Distinct": [[24, "distinct"]], "Example": [[22, "example"]], "Exporting from DataFusion": [[38, "exporting-from-datafusion"]], "Expressions": [[23, "expressions"], [26, null]], "Filter": [[24, "filter"]], "Full Join": [[29, "full-join"]], "Functions": [[5, "functions"], [6, "functions"], [7, "functions"], [11, "functions"], [26, "functions"], [27, null]], "Guidelines for Separating Python and Rust Code": [[21, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[36, "html-rendering"]], "Handling Missing Values": [[27, "handling-missing-values"]], "How to develop": [[21, "how-to-develop"]], "IO": [[41, null]], "Iceberg": [[35, "iceberg"]], "Implementation Details": [[20, "implementation-details"]], "Importing to DataFusion": [[38, "importing-to-datafusion"]], "Improving Build Speed": [[21, "improving-build-speed"]], "Inner Join": [[29, "inner-join"]], "Inspiration from Arrow": [[20, "inspiration-from-arrow"]], "Install": [[22, "install"]], "Installation": [[37, "installation"]], "Introduction": [[21, null], [37, null]], "JSON": [[42, null]], "Joins": [[29, null]], "Left Anti Join": [[29, "left-anti-join"]], "Left Join": [[29, "left-join"]], "Left Semi Join": [[29, "left-semi-join"]], "Literal": [[26, "literal"]], "Local file": [[35, "local-file"]], "Managing Formatters": [[36, "managing-formatters"]], "Mathematical": [[27, "mathematical"]], "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"], [6, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [17, "module-contents"], [18, "module-contents"]], "Null Treatment": [[24, "null-treatment"], [33, "null-treatment"]], "Object Store": [[35, "object-store"]], "Ordering": [[24, "ordering"], [33, "ordering"]], "Other": [[27, "other"]], "Other DataFrame Libraries": [[35, "other-dataframe-libraries"]], "Overview": [[36, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parquet": [[43, null]], "Partitions": [[33, "partitions"]], "Performance Optimization with Shared Styles": [[36, "performance-optimization-with-shared-styles"]], "Python Extensions": [[20, null]], "Registering Views": [[32, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[21, "running-installing-pre-commit-hooks"]], "SQL": [[45, null]], "Scalar Functions": [[31, "scalar-functions"]], "Session Context": [[23, "session-context"]], "Setting Parameters": [[24, "setting-parameters"], [33, "setting-parameters"]], "Status of Work": [[20, "status-of-work"]], "String": [[27, "string"]], "Structs": [[26, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[31, "table-functions"]], "Temporal": [[27, "temporal"]], "The FFI Approach": [[20, "the-ffi-approach"]], "The Primary Issue": [[20, "the-primary-issue"]], "UDWF options": [[31, "udwf-options"]], "Update Dependencies": [[21, "update-dependencies"]], "User-Defined Functions": [[31, null]], "Window Frame": [[33, "window-frame"]], "Window Functions": [[31, "window-functions"], [33, null]], "datafusion": [[7, null]], "datafusion.catalog": [[0, null]], "datafusion.col": [[1, null]], "datafusion.context": [[2, null]], "datafusion.dataframe": [[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.udf": [[16, null]], "datafusion.unparser": [[17, null]], "datafusion.user_defined": [[18, null]], "fill_null": [[27, "fill-null"]]}, "docnames": ["autoapi/datafusion/catalog/index", "autoapi/datafusion/col/index", "autoapi/datafusion/context/index", "autoapi/datafusion/dataframe/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/udf/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", "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/col/index.rst", "autoapi/datafusion/context/index.rst", "autoapi/datafusion/dataframe/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/udf/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.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)": [[2, "datafusion.context.ArrowArrayExportable.__arrow_c_array__", false]], "__arrow_c_stream__() (datafusion.context.arrowstreamexportable method)": [[2, "datafusion.context.ArrowStreamExportable.__arrow_c_stream__", false]], "__arrow_c_stream__() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.__arrow_c_stream__", false]], "__call__() (datafusion.aggregateudf method)": [[7, "datafusion.AggregateUDF.__call__", false]], "__call__() (datafusion.html_formatter.cellformatter method)": [[6, "datafusion.html_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)": [[18, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__call__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[2, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", 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)": [[3, "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.dataframe.dataframe method)": [[3, "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.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.tablefunction method)": [[7, "datafusion.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__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)": [[18, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_expandable_cell", false]], "_build_html_footer() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_html_footer", false]], "_build_html_header() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_html_header", false]], "_build_regular_cell() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_regular_cell", false]], "_build_table_body() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_body", false]], "_build_table_container_start() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_container_start", false]], "_build_table_header() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._build_table_header", false]], "_create_table_udf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction._create_table_udf", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[18, "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)": [[18, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._custom_cell_builder", false]], "_custom_header_builder (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._custom_header_builder", false]], "_default_formatter (datafusion.html_formatter.formattermanager attribute)": [[6, "datafusion.html_formatter.FormatterManager._default_formatter", false]], "_format_cell_value() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._format_cell_value", false]], "_get_cell_value() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_cell_value", false]], "_get_default_css() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_default_css", false]], "_get_default_name() (datafusion.user_defined.windowudf static method)": [[18, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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]], "_refresh_formatter_reference() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter._refresh_formatter_reference", false]], "_repr_html_() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame._repr_html_", false]], "_styles_loaded (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._styles_loaded", 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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter._type_formatters", false]], "_udaf (datafusion.aggregateudf attribute)": [[7, "datafusion.AggregateUDF._udaf", false]], "_udaf (datafusion.user_defined.aggregateudf attribute)": [[18, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[7, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[18, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.tablefunction attribute)": [[7, "datafusion.TableFunction._udtf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[18, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[18, "datafusion.user_defined.WindowUDF._udwf", false]], "_udwf (datafusion.windowudf attribute)": [[7, "datafusion.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter._validate_bool", false]], "_validate_positive_int() (in module datafusion.html_formatter)": [[6, "datafusion.html_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)": [[18, "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)": [[3, "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)": [[18, "datafusion.user_defined.AggregateUDF", 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]], "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)": [[2, "datafusion.context.ArrowArrayExportable", false]], "arrowstreamexportable (class in datafusion.context)": [[2, "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]], "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)": [[3, "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)": [[3, "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)": [[3, "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)": [[2, "datafusion.context.SessionContext.catalog", 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.html_formatter)": [[6, "datafusion.html_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.col)": [[1, "datafusion.col.col", false]], "col() (in module datafusion.functions)": [[5, "datafusion.functions.col", false]], "collect() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.collect", false]], "collect_partitioned() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.collect_partitioned", false]], "column (in module datafusion)": [[7, "datafusion.column", false]], "column (in module datafusion.col)": [[1, "datafusion.col.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_name() (datafusion.expr method)": [[7, "datafusion.Expr.column_name", false]], "column_name() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.column_name", false]], "compression (class in datafusion.dataframe)": [[3, "datafusion.dataframe.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)": [[2, "datafusion.context.RuntimeEnvBuilder.config_internal", false]], "config_internal (datafusion.context.sessionconfig attribute)": [[2, "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.html_formatter)": [[6, "datafusion.html_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)": [[3, "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)": [[2, "datafusion.context.SessionContext.create_dataframe", false]], "create_dataframe_from_logical_plan() (datafusion.context.sessioncontext method)": [[2, "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]], "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)": [[2, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.custom_css", false]], "database (class in datafusion)": [[7, "datafusion.Database", false]], "database (class in datafusion.catalog)": [[0, "datafusion.catalog.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)": [[3, "datafusion.dataframe.DataFrame", false]], "dataframehtmlformatter (class in datafusion.html_formatter)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter", false]], "datafusion": [[7, "module-datafusion", false]], "datafusion.catalog": [[0, "module-datafusion.catalog", false]], "datafusion.col": [[1, "module-datafusion.col", false]], "datafusion.context": [[2, "module-datafusion.context", false]], "datafusion.dataframe": [[3, "module-datafusion.dataframe", 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.udf": [[16, "module-datafusion.udf", false]], "datafusion.unparser": [[17, "module-datafusion.unparser", false]], "datafusion.user_defined": [[18, "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]], "db (datafusion.catalog.database attribute)": [[0, "datafusion.catalog.Database.db", false]], "db (datafusion.database attribute)": [[7, "datafusion.Database.db", 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)": [[17, "datafusion.unparser.Dialect.default", false]], "defaultstyleprovider (class in datafusion.html_formatter)": [[6, "datafusion.html_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_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.deregister_table", false]], "describe() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.df", false]], "dfschema (in module datafusion)": [[7, "datafusion.DFSchema", false]], "dialect (class in datafusion.unparser)": [[17, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[17, "datafusion.unparser.Dialect.dialect", 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)": [[3, "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)": [[3, "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)": [[17, "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)": [[2, "datafusion.context.SessionContext.empty_table", false]], "emptyrelation (in module datafusion.expr)": [[4, "datafusion.expr.EmptyRelation", false]], "enable_cell_expansion (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.enable_cell_expansion", false]], "enable_url_table() (datafusion.context.sessioncontext method)": [[2, "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]], "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)": [[18, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all_with_rank", false]], "except_all() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.except_all", false]], "execute (in module datafusion.expr)": [[4, "datafusion.expr.Execute", false]], "execute() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.execute", false]], "execute_stream() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.execute_stream", false]], "execute_stream_partitioned() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.execute_stream_partitioned", false]], "execution_plan() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[3, "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)": [[3, "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.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.format_html", false]], "formattermanager (class in datafusion.html_formatter)": [[6, "datafusion.html_formatter.FormatterManager", false]], "frame_bound (datafusion.expr.windowframebound attribute)": [[4, "datafusion.expr.WindowFrameBound.frame_bound", false]], "from_arrow() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_arrow", false]], "from_arrow_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_arrow_table", false]], "from_pandas() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pandas", false]], "from_polars() (datafusion.context.sessioncontext method)": [[2, "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_pydict() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pydict", false]], "from_pylist() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.from_pylist", false]], "from_str() (datafusion.dataframe.compression class method)": [[3, "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.html_formatter.defaultstyleprovider method)": [[6, "datafusion.html_formatter.DefaultStyleProvider.get_cell_style", false]], "get_cell_style() (datafusion.html_formatter.styleprovider method)": [[6, "datafusion.html_formatter.StyleProvider.get_cell_style", false]], "get_default_level() (datafusion.dataframe.compression method)": [[3, "datafusion.dataframe.Compression.get_default_level", false]], "get_formatter() (datafusion.html_formatter.formattermanager class method)": [[6, "datafusion.html_formatter.FormatterManager.get_formatter", false]], "get_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_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.html_formatter.defaultstyleprovider method)": [[6, "datafusion.html_formatter.DefaultStyleProvider.get_header_style", false]], "get_header_style() (datafusion.html_formatter.styleprovider method)": [[6, "datafusion.html_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)": [[18, "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)": [[2, "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)": [[3, "datafusion.dataframe.Compression.GZIP", false]], "head() (datafusion.dataframe.dataframe method)": [[3, "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)": [[18, "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)": [[18, "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)": [[3, "datafusion.dataframe.DataFrame.intersect", false]], "into_view() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.into_view", false]], "is_causal() (datafusion.user_defined.windowevaluator method)": [[18, "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_styles_loaded() (datafusion.html_formatter.dataframehtmlformatter class method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.is_styles_loaded", 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)": [[3, "datafusion.dataframe.DataFrame.join", false]], "join_on() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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]], "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)": [[3, "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)": [[3, "datafusion.dataframe.Compression.LZ4", false]], "lz4_raw (datafusion.dataframe.compression attribute)": [[3, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_cell_length", false]], "max_height (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_height", false]], "max_memory_bytes (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_memory_bytes", false]], "max_width (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.max_width", 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)": [[18, "datafusion.user_defined.WindowEvaluator.memoize", false]], "merge() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.merge", false]], "merge() (datafusion.user_defined.accumulator method)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.min_rows_display", false]], "module": [[0, "module-datafusion.catalog", false], [1, "module-datafusion.col", false], [2, "module-datafusion.context", false], [3, "module-datafusion.dataframe", 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.udf", false], [17, "module-datafusion.unparser", false], [18, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[17, "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.database method)": [[0, "datafusion.catalog.Database.names", false]], "names() (datafusion.database method)": [[7, "datafusion.Database.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)": [[3, "datafusion.dataframe.DataFrame.optimized_logical_plan", false]], "options_internal (datafusion.context.sqloptions attribute)": [[2, "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]], "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)": [[17, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[17, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "datafusion.context.SessionContext.register_avro", false]], "register_csv() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_csv", false]], "register_dataset() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_dataset", false]], "register_formatter() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.register_formatter", false]], "register_json() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_json", false]], "register_listing_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_listing_table", false]], "register_object_store() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_object_store", false]], "register_parquet() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_parquet", false]], "register_record_batches() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_record_batches", false]], "register_table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_table", false]], "register_table_provider() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_table_provider", false]], "register_udaf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udaf", false]], "register_udf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udf", false]], "register_udtf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udtf", false]], "register_udwf() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.register_udwf", false]], "register_view() (datafusion.context.sessioncontext method)": [[2, "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)": [[3, "datafusion.dataframe.DataFrame.repartition", false]], "repartition_by_hash() (datafusion.dataframe.dataframe method)": [[3, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.repr_rows", false]], "reset_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter.reset_formatter", false]], "reset_styles_loaded_state() (in module datafusion.html_formatter)": [[6, "datafusion.html_formatter.reset_styles_loaded_state", 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)": [[2, "datafusion.context.RuntimeConfig", false]], "runtimeenvbuilder (class in datafusion)": [[7, "datafusion.RuntimeEnvBuilder", false]], "runtimeenvbuilder (class in datafusion.context)": [[2, "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)": [[18, "datafusion.user_defined.ScalarUDF", false]], "scalarvariable (in module datafusion.expr)": [[4, "datafusion.expr.ScalarVariable", false]], "schema (datafusion.catalog.table property)": [[0, "datafusion.catalog.Table.schema", false]], "schema (datafusion.table property)": [[7, "datafusion.Table.schema", false]], "schema() (datafusion.dataframe.dataframe method)": [[3, "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]], "select() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.select", false]], "select_columns() (datafusion.dataframe.dataframe method)": [[3, "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)": [[2, "datafusion.context.SessionContext.session_id", false]], "sessionconfig (class in datafusion)": [[7, "datafusion.SessionConfig", false]], "sessionconfig (class in datafusion.context)": [[2, "datafusion.context.SessionConfig", false]], "sessioncontext (class in datafusion.context)": [[2, "datafusion.context.SessionContext", false]], "set() (datafusion.context.sessionconfig method)": [[2, "datafusion.context.SessionConfig.set", false]], "set() (datafusion.sessionconfig method)": [[7, "datafusion.SessionConfig.set", false]], "set_custom_cell_builder() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.set_custom_cell_builder", false]], "set_custom_header_builder() (datafusion.html_formatter.dataframehtmlformatter method)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.set_custom_header_builder", false]], "set_formatter() (datafusion.html_formatter.formattermanager class method)": [[6, "datafusion.html_formatter.FormatterManager.set_formatter", false]], "set_formatter() (in module datafusion.html_formatter)": [[6, "datafusion.html_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)": [[3, "datafusion.dataframe.DataFrame.show", false]], "show_truncation_message (datafusion.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_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]], "snappy (datafusion.dataframe.compression attribute)": [[3, "datafusion.dataframe.Compression.SNAPPY", false]], "sort (in module datafusion.expr)": [[4, "datafusion.expr.Sort", false]], "sort() (datafusion.dataframe.dataframe method)": [[3, "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)": [[2, "datafusion.context.SessionContext.sql", false]], "sql_with_options() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.sql_with_options", false]], "sqlite() (datafusion.unparser.dialect static method)": [[17, "datafusion.unparser.Dialect.sqlite", false]], "sqloptions (class in datafusion)": [[7, "datafusion.SQLOptions", false]], "sqloptions (class in datafusion.context)": [[2, "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)": [[18, "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)": [[18, "datafusion.user_defined.Accumulator.state", 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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.style_provider", false]], "styleprovider (class in datafusion.html_formatter)": [[6, "datafusion.html_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)": [[18, "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.database method)": [[0, "datafusion.catalog.Database.table", false]], "table() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.table", false]], "table() (datafusion.database method)": [[7, "datafusion.Database.table", false]], "table_exist() (datafusion.context.sessioncontext method)": [[2, "datafusion.context.SessionContext.table_exist", false]], "tablefunction (class in datafusion)": [[7, "datafusion.TableFunction", false]], "tablefunction (class in datafusion.user_defined)": [[18, "datafusion.user_defined.TableFunction", false]], "tableproviderexportable (class in datafusion.context)": [[2, "datafusion.context.TableProviderExportable", false]], "tablescan (in module datafusion.expr)": [[4, "datafusion.expr.TableScan", false]], "tail() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.to_pandas", false]], "to_polars() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "datafusion.dataframe.DataFrame.to_pydict", false]], "to_pylist() (datafusion.dataframe.dataframe method)": [[3, "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)": [[3, "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)": [[18, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[7, "datafusion.udf", false]], "udf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udf", false]], "udf() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion)": [[7, "datafusion.udtf", false]], "udtf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion)": [[7, "datafusion.udwf", false]], "udwf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.WindowUDF.udwf", false]], "udwf() (datafusion.windowudf static method)": [[7, "datafusion.WindowUDF.udwf", false]], "uncompressed (datafusion.dataframe.compression attribute)": [[3, "datafusion.dataframe.Compression.UNCOMPRESSED", false]], "union (in module datafusion.expr)": [[4, "datafusion.expr.Union", false]], "union() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.union", false]], "union_distinct() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.union_distinct", false]], "unnest (in module datafusion.expr)": [[4, "datafusion.expr.Unnest", false]], "unnest_columns() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.unnest_columns", false]], "unnestexpr (in module datafusion.expr)": [[4, "datafusion.expr.UnnestExpr", false]], "unparser (class in datafusion.unparser)": [[17, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[17, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.update", false]], "update() (datafusion.user_defined.accumulator method)": [[18, "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.html_formatter.dataframehtmlformatter attribute)": [[6, "datafusion.html_formatter.DataFrameHtmlFormatter.use_shared_styles", false]], "uses_window_frame() (datafusion.user_defined.windowevaluator method)": [[18, "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)": [[18, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.WindowUDF", false]], "with_allow_ddl() (datafusion.context.sqloptions method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[3, "datafusion.dataframe.DataFrame.with_column", false]], "with_column_renamed() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.with_column_renamed", false]], "with_columns() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.with_columns", false]], "with_create_default_catalog_and_schema() (datafusion.context.sessionconfig method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[17, "datafusion.unparser.Unparser.with_pretty", false]], "with_repartition_aggregations() (datafusion.context.sessionconfig method)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "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)": [[2, "datafusion.context.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "with_unbounded_memory_pool() (datafusion.runtimeenvbuilder method)": [[7, "datafusion.RuntimeEnvBuilder.with_unbounded_memory_pool", false]], "write_csv() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_csv", false]], "write_json() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_json", false]], "write_parquet() (datafusion.dataframe.dataframe method)": [[3, "datafusion.dataframe.DataFrame.write_parquet", false]], "zstd (datafusion.dataframe.compression attribute)": [[3, "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, "", "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"], [1, 0, 0, "-", "col"], [7, 4, 1, "", "column"], [7, 6, 1, "", "configure_formatter"], [2, 0, 0, "-", "context"], [3, 0, 0, "-", "dataframe"], [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"], [16, 0, 0, "-", "udf"], [7, 4, 1, "", "udtf"], [7, 4, 1, "", "udwf"], [17, 0, 0, "-", "unparser"], [18, 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, 3, 1, "", "_udaf"], [7, 2, 1, "", "udaf"]], "datafusion.Catalog": [[7, 3, 1, "", "catalog"], [7, 2, 1, "", "database"], [7, 2, 1, "", "names"]], "datafusion.Database": [[7, 3, 1, "", "db"], [7, 2, 1, "", "names"], [7, 2, 1, "", "table"]], "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, "", "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.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, 3, 1, "", "_udf"], [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, 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, "", "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, "", "_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, "", "udwf"]], "datafusion.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "Database"], [0, 1, 1, "", "Table"]], "datafusion.catalog.Catalog": [[0, 3, 1, "", "catalog"], [0, 2, 1, "", "database"], [0, 2, 1, "", "names"]], "datafusion.catalog.Database": [[0, 3, 1, "", "db"], [0, 2, 1, "", "names"], [0, 2, 1, "", "table"]], "datafusion.catalog.Table": [[0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"], [0, 3, 1, "", "table"]], "datafusion.col": [[1, 4, 1, "", "col"], [1, 4, 1, "", "column"]], "datafusion.context": [[2, 1, 1, "", "ArrowArrayExportable"], [2, 1, 1, "", "ArrowStreamExportable"], [2, 1, 1, "", "RuntimeConfig"], [2, 1, 1, "", "RuntimeEnvBuilder"], [2, 1, 1, "", "SQLOptions"], [2, 1, 1, "", "SessionConfig"], [2, 1, 1, "", "SessionContext"], [2, 1, 1, "", "TableProviderExportable"]], "datafusion.context.ArrowArrayExportable": [[2, 2, 1, "", "__arrow_c_array__"]], "datafusion.context.ArrowStreamExportable": [[2, 2, 1, "", "__arrow_c_stream__"]], "datafusion.context.RuntimeEnvBuilder": [[2, 3, 1, "", "config_internal"], [2, 2, 1, "", "with_disk_manager_disabled"], [2, 2, 1, "", "with_disk_manager_os"], [2, 2, 1, "", "with_disk_manager_specified"], [2, 2, 1, "", "with_fair_spill_pool"], [2, 2, 1, "", "with_greedy_memory_pool"], [2, 2, 1, "", "with_temp_file_path"], [2, 2, 1, "", "with_unbounded_memory_pool"]], "datafusion.context.SQLOptions": [[2, 3, 1, "", "options_internal"], [2, 2, 1, "", "with_allow_ddl"], [2, 2, 1, "", "with_allow_dml"], [2, 2, 1, "", "with_allow_statements"]], "datafusion.context.SessionConfig": [[2, 3, 1, "", "config_internal"], [2, 2, 1, "", "set"], [2, 2, 1, "", "with_batch_size"], [2, 2, 1, "", "with_create_default_catalog_and_schema"], [2, 2, 1, "", "with_default_catalog_and_schema"], [2, 2, 1, "", "with_information_schema"], [2, 2, 1, "", "with_parquet_pruning"], [2, 2, 1, "", "with_repartition_aggregations"], [2, 2, 1, "", "with_repartition_file_min_size"], [2, 2, 1, "", "with_repartition_file_scans"], [2, 2, 1, "", "with_repartition_joins"], [2, 2, 1, "", "with_repartition_sorts"], [2, 2, 1, "", "with_repartition_windows"], [2, 2, 1, "", "with_target_partitions"]], "datafusion.context.SessionContext": [[2, 2, 1, "", "catalog"], [2, 2, 1, "", "create_dataframe"], [2, 2, 1, "", "create_dataframe_from_logical_plan"], [2, 3, 1, "", "ctx"], [2, 2, 1, "", "deregister_table"], [2, 2, 1, "", "empty_table"], [2, 2, 1, "", "enable_url_table"], [2, 2, 1, "", "execute"], [2, 2, 1, "", "from_arrow"], [2, 2, 1, "", "from_arrow_table"], [2, 2, 1, "", "from_pandas"], [2, 2, 1, "", "from_polars"], [2, 2, 1, "", "from_pydict"], [2, 2, 1, "", "from_pylist"], [2, 2, 1, "", "global_ctx"], [2, 2, 1, "", "read_avro"], [2, 2, 1, "", "read_csv"], [2, 2, 1, "", "read_json"], [2, 2, 1, "", "read_parquet"], [2, 2, 1, "", "read_table"], [2, 2, 1, "", "register_avro"], [2, 2, 1, "", "register_csv"], [2, 2, 1, "", "register_dataset"], [2, 2, 1, "", "register_json"], [2, 2, 1, "", "register_listing_table"], [2, 2, 1, "", "register_object_store"], [2, 2, 1, "", "register_parquet"], [2, 2, 1, "", "register_record_batches"], [2, 2, 1, "", "register_table"], [2, 2, 1, "", "register_table_provider"], [2, 2, 1, "", "register_udaf"], [2, 2, 1, "", "register_udf"], [2, 2, 1, "", "register_udtf"], [2, 2, 1, "", "register_udwf"], [2, 2, 1, "", "register_view"], [2, 2, 1, "", "session_id"], [2, 2, 1, "", "sql"], [2, 2, 1, "", "sql_with_options"], [2, 2, 1, "", "table"], [2, 2, 1, "", "table_exist"]], "datafusion.context.TableProviderExportable": [[2, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[3, 1, 1, "", "Compression"], [3, 1, 1, "", "DataFrame"]], "datafusion.dataframe.Compression": [[3, 3, 1, "", "BROTLI"], [3, 3, 1, "", "GZIP"], [3, 3, 1, "", "LZ4"], [3, 3, 1, "", "LZ4_RAW"], [3, 3, 1, "", "SNAPPY"], [3, 3, 1, "", "UNCOMPRESSED"], [3, 3, 1, "", "ZSTD"], [3, 2, 1, "", "from_str"], [3, 2, 1, "", "get_default_level"]], "datafusion.dataframe.DataFrame": [[3, 2, 1, "", "__arrow_c_stream__"], [3, 2, 1, "", "__getitem__"], [3, 2, 1, "", "__repr__"], [3, 2, 1, "", "_repr_html_"], [3, 2, 1, "", "aggregate"], [3, 2, 1, "", "cache"], [3, 2, 1, "", "cast"], [3, 2, 1, "", "collect"], [3, 2, 1, "", "collect_partitioned"], [3, 2, 1, "", "count"], [3, 2, 1, "", "describe"], [3, 3, 1, "", "df"], [3, 2, 1, "", "distinct"], [3, 2, 1, "", "drop"], [3, 2, 1, "", "except_all"], [3, 2, 1, "", "execute_stream"], [3, 2, 1, "", "execute_stream_partitioned"], [3, 2, 1, "", "execution_plan"], [3, 2, 1, "", "explain"], [3, 2, 1, "", "fill_null"], [3, 2, 1, "", "filter"], [3, 2, 1, "", "head"], [3, 2, 1, "", "intersect"], [3, 2, 1, "", "into_view"], [3, 2, 1, "", "join"], [3, 2, 1, "", "join_on"], [3, 2, 1, "", "limit"], [3, 2, 1, "", "logical_plan"], [3, 2, 1, "", "optimized_logical_plan"], [3, 2, 1, "", "repartition"], [3, 2, 1, "", "repartition_by_hash"], [3, 2, 1, "", "schema"], [3, 2, 1, "", "select"], [3, 2, 1, "", "select_columns"], [3, 2, 1, "", "show"], [3, 2, 1, "", "sort"], [3, 2, 1, "", "tail"], [3, 2, 1, "", "to_arrow_table"], [3, 2, 1, "", "to_pandas"], [3, 2, 1, "", "to_polars"], [3, 2, 1, "", "to_pydict"], [3, 2, 1, "", "to_pylist"], [3, 2, 1, "", "transform"], [3, 2, 1, "", "union"], [3, 2, 1, "", "union_distinct"], [3, 2, 1, "", "unnest_columns"], [3, 2, 1, "", "with_column"], [3, 2, 1, "", "with_column_renamed"], [3, 2, 1, "", "with_columns"], [3, 2, 1, "", "write_csv"], [3, 2, 1, "", "write_json"], [3, 2, 1, "", "write_parquet"]], "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, "", "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, "", "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.html_formatter": [[6, 1, 1, "", "CellFormatter"], [6, 1, 1, "", "DataFrameHtmlFormatter"], [6, 1, 1, "", "DefaultStyleProvider"], [6, 1, 1, "", "FormatterManager"], [6, 1, 1, "", "StyleProvider"], [6, 6, 1, "", "_refresh_formatter_reference"], [6, 6, 1, "", "_validate_bool"], [6, 6, 1, "", "_validate_positive_int"], [6, 6, 1, "", "configure_formatter"], [6, 6, 1, "", "get_formatter"], [6, 6, 1, "", "reset_formatter"], [6, 6, 1, "", "reset_styles_loaded_state"], [6, 6, 1, "", "set_formatter"]], "datafusion.html_formatter.CellFormatter": [[6, 2, 1, "", "__call__"]], "datafusion.html_formatter.DataFrameHtmlFormatter": [[6, 2, 1, "", "_build_expandable_cell"], [6, 2, 1, "", "_build_html_footer"], [6, 2, 1, "", "_build_html_header"], [6, 2, 1, "", "_build_regular_cell"], [6, 2, 1, "", "_build_table_body"], [6, 2, 1, "", "_build_table_container_start"], [6, 2, 1, "", "_build_table_header"], [6, 3, 1, "", "_custom_cell_builder"], [6, 3, 1, "", "_custom_header_builder"], [6, 2, 1, "", "_format_cell_value"], [6, 2, 1, "", "_get_cell_value"], [6, 2, 1, "", "_get_default_css"], [6, 2, 1, "", "_get_javascript"], [6, 3, 1, "", "_styles_loaded"], [6, 3, 1, "", "_type_formatters"], [6, 3, 1, "", "custom_css"], [6, 3, 1, "", "enable_cell_expansion"], [6, 2, 1, "", "format_html"], [6, 2, 1, "", "is_styles_loaded"], [6, 3, 1, "", "max_cell_length"], [6, 3, 1, "", "max_height"], [6, 3, 1, "", "max_memory_bytes"], [6, 3, 1, "", "max_width"], [6, 3, 1, "", "min_rows_display"], [6, 2, 1, "", "register_formatter"], [6, 3, 1, "", "repr_rows"], [6, 2, 1, "", "set_custom_cell_builder"], [6, 2, 1, "", "set_custom_header_builder"], [6, 3, 1, "", "show_truncation_message"], [6, 3, 1, "", "style_provider"], [6, 3, 1, "", "use_shared_styles"]], "datafusion.html_formatter.DefaultStyleProvider": [[6, 2, 1, "", "get_cell_style"], [6, 2, 1, "", "get_header_style"]], "datafusion.html_formatter.FormatterManager": [[6, 3, 1, "", "_default_formatter"], [6, 2, 1, "", "get_formatter"], [6, 2, 1, "", "set_formatter"]], "datafusion.html_formatter.StyleProvider": [[6, 2, 1, "", "get_cell_style"], [6, 2, 1, "", "get_header_style"]], "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": [[17, 1, 1, "", "Dialect"], [17, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[17, 2, 1, "", "default"], [17, 3, 1, "", "dialect"], [17, 2, 1, "", "duckdb"], [17, 2, 1, "", "mysql"], [17, 2, 1, "", "postgres"], [17, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[17, 2, 1, "", "plan_to_sql"], [17, 3, 1, "", "unparser"], [17, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[18, 1, 1, "", "Accumulator"], [18, 1, 1, "", "AggregateUDF"], [18, 1, 1, "", "ScalarUDF"], [18, 1, 1, "", "TableFunction"], [18, 1, 1, "", "Volatility"], [18, 1, 1, "", "WindowEvaluator"], [18, 1, 1, "", "WindowUDF"], [18, 4, 1, "", "_R"], [18, 4, 1, "", "udaf"], [18, 4, 1, "", "udf"], [18, 4, 1, "", "udtf"], [18, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "merge"], [18, 2, 1, "", "state"], [18, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[18, 2, 1, "", "__call__"], [18, 3, 1, "", "_udaf"], [18, 2, 1, "", "udaf"]], "datafusion.user_defined.ScalarUDF": [[18, 2, 1, "", "__call__"], [18, 3, 1, "", "_udf"], [18, 2, 1, "", "udf"]], "datafusion.user_defined.TableFunction": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_table_udf"], [18, 2, 1, "", "_create_table_udf_decorator"], [18, 3, 1, "", "_udtf"], [18, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[18, 3, 1, "", "Immutable"], [18, 3, 1, "", "Stable"], [18, 3, 1, "", "Volatile"], [18, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "evaluate_all"], [18, 2, 1, "", "evaluate_all_with_rank"], [18, 2, 1, "", "get_range"], [18, 2, 1, "", "include_rank"], [18, 2, 1, "", "is_causal"], [18, 2, 1, "", "memoize"], [18, 2, 1, "", "supports_bounded_execution"], [18, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "_create_window_udf"], [18, 2, 1, "", "_create_window_udf_decorator"], [18, 2, 1, "", "_get_default_name"], [18, 2, 1, "", "_normalize_input_types"], [18, 3, 1, "", "_udwf"], [18, 2, 1, "", "udwf"]]}, "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": {"": [2, 3, 4, 5, 6, 7, 18, 20, 21, 26, 27, 29, 31, 32, 33, 34, 36], "0": [3, 4, 5, 7, 18, 23, 24, 25, 26, 27, 30, 31, 33, 35, 36, 37, 44, 45], "007bff": 36, "01": [23, 27, 30], "01t00": 27, "0301050905471": 25, "04023": 5, "05": [27, 30], "06": [27, 30], "08": 27, "09": [23, 27], "1": [3, 4, 5, 7, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "10": [4, 5, 6, 7, 18, 22, 23, 24, 26, 27, 30, 31, 32, 33, 35, 36, 37, 45], "100": [5, 6, 22, 23, 24, 33, 35, 36, 37], "1000": [2, 6, 7, 11, 25, 36], "10000000": 34, "1024": [2, 6, 7, 36], "103": [22, 35, 37], "104": [22, 35, 37], "105": [22, 24, 35, 37], "107": 24, "109": [22, 35, 37, 45], "11": [22, 23, 24, 26, 27, 31, 33, 35, 37], "110": 24, "111": [22, 35, 37], "112": 24, "115": [22, 24, 35, 37], "12": [21, 22, 23, 24, 26, 27, 31, 33, 35, 37], "120": [5, 22, 24, 35, 37], "121": 24, "122": [22, 35, 37], "123": [22, 35, 37], "12371": 5, "125": [5, 24, 27, 45], "128": [4, 5, 7], "13": [22, 24, 26, 27, 31, 33, 35, 37], "130": [22, 35, 37], "135": [22, 35, 37], "136": 24, "14": [22, 23, 24, 26, 27, 30, 31, 35, 37], "140": 24, "145": [22, 24, 35, 37], "149": 45, "15": [22, 23, 24, 26, 27, 30, 31, 33, 35, 37], "150": [22, 33, 35, 37], "158": 45, "159": [22, 35, 37, 45], "16": [23, 24, 26, 27, 31], "160": 45, "161": 45, "162": 45, "163": 45, "165": [27, 45], "17": [23, 24, 26, 27, 31, 33], "18": [23, 24, 26, 27, 31, 33], "186": 25, "19": [24, 26, 27, 45], "190": 45, "1902": 5, "1921": 27, "195": [22, 35, 37], "1970": 27, "1px": 36, "2": [3, 4, 5, 6, 7, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "20": [3, 5, 6, 7, 18, 22, 24, 26, 27, 32, 33, 35, 36, 37, 45], "200": 45, "2021": 23, "2025": 27, "205": [22, 35, 37], "2097152": [6, 36], "21": [23, 24, 26, 27, 33], "22": [3, 26, 35], "223": 45, "224": [4, 5, 7], "229": 45, "23": [23, 26, 33, 45], "23076923076923": 24, "2345": 5, "24": [23, 26], "25": [5, 6, 22, 24, 26, 27, 33, 35, 36, 37], "256": [4, 5, 7], "25806451612904": 24, "26": [26, 33], "27": 26, "28": [23, 26, 33], "28571428571429": 24, "28t18": 27, "29": 26, "2mb": [6, 36], "3": [3, 5, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "30": [22, 24, 26, 32, 33, 35, 37], "300": [6, 36], "309": [22, 27, 35, 37], "31": 26, "314": [22, 27, 35, 37], "316": 25, "318": [22, 27, 35, 37], "32": 26, "33": [23, 26], "333333333333332": 33, "333333333333336": 24, "34": [26, 27], "343210340z": 27, "35": [22, 23, 24, 26, 30, 33, 35, 37], "36": [23, 26], "37": [26, 27], "38": [26, 27], "384": [4, 5, 7], "39": [22, 26, 35, 37, 45], "395": [22, 35, 37], "3rd": 5, "4": [3, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 45], "40": [5, 21, 22, 24, 26, 32, 35, 37], "405": [22, 27, 35, 37], "41": 26, "42": [24, 26, 33, 35], "42857142857143": 33, "43": [22, 26, 33, 35, 37, 44], "44": [22, 26, 35, 37], "45": [22, 24, 26, 27, 33, 35, 37], "4579": 27, "46": 24, "47": [24, 37], "4732": 27, "48": [22, 24, 35, 37], "49": [22, 35, 37], "495": [22, 35, 37], "4mb": 36, "5": [3, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 45], "50": [5, 6, 7, 22, 24, 32, 35, 36, 37], "500": [6, 7], "51": [23, 24], "512": [4, 5, 7], "5129": 27, "513": 25, "52": [22, 24, 35, 37], "525": [22, 27, 35, 37], "53": 24, "530": [22, 35, 37], "534": [22, 27, 35, 37], "54": [24, 26, 27], "55": [22, 24, 33, 35, 37], "56": 24, "568": 25, "579": 25, "58": [22, 24, 35, 37], "5811388300841898": 25, "59": [22, 35, 37], "6": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "60": [5, 22, 24, 33, 35, 37], "62": [22, 35, 37], "625": [22, 27, 35, 37], "63": [22, 24, 35, 37], "630": [22, 35, 37], "634": [22, 27, 35, 37], "64": [21, 22, 33, 35, 37], "65": [22, 24, 26, 30, 33, 35, 37], "66": [23, 24], "666666666666668": 33, "66666666666667": 24, "666667": 5, "67": [24, 26], "698": 25, "7": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "70": [22, 24, 33, 35, 37], "71": [24, 26], "72": 24, "73": 23, "732": 27, "75": [5, 22, 24, 35, 37], "76": 33, "77777777777777": 24, "78": [22, 23, 35, 37], "785714285714285": 24, "78571428571429": 24, "79": [22, 23, 35, 37], "8": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38], "80": [5, 22, 24, 33, 35, 37], "804": 25, "81": 23, "82": [22, 35, 37], "83": [22, 24, 35, 37], "833333333333336": 24, "84": [22, 33, 35, 37], "85": [22, 24, 35, 37], "855": 27, "86": 24, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "88888888888889": 24, "8px": 36, "9": [5, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "90": [5, 22, 24, 33, 35, 37], "91": 24, "92": 23, "94": [23, 30], "95": [23, 24, 33, 45], "96": [23, 24], "972": 27, "98": [24, 45], "A": [2, 3, 4, 5, 7, 8, 13, 15, 18, 23, 25, 29, 33, 36, 44], "AND": [3, 4, 5, 7, 18], "As": [5, 7, 18, 20, 26, 30, 35], "At": [5, 20], "BY": 18, "Be": 3, "By": [3, 20, 21, 24], "For": [2, 3, 5, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 36, 37], "INTO": [2, 7], "If": [2, 3, 4, 5, 6, 7, 8, 11, 18, 20, 21, 24, 27, 29, 31, 33, 37, 44], "In": [18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 45], "It": [2, 3, 4, 5, 6, 7, 18, 20, 22, 23, 24, 26, 29, 36, 38, 43], "Its": 22, "No": 3, "Not": [4, 7], "OR": [4, 5, 7], "On": [3, 20, 35], "One": [3, 4, 20, 24, 33], "Or": 36, "That": [4, 7, 38], "The": [2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36], "Then": 31, "There": [5, 27, 31], "These": [5, 7, 14, 18, 24, 26, 31, 34, 36], "To": [3, 5, 20, 21, 26, 27, 30, 31, 33, 35, 37, 38, 44], "Will": [3, 36], "With": [4, 7, 37, 38], "__add__": [4, 7], "__aiter__": [7, 14], "__and__": [4, 7], "__anext__": [7, 14], "__arrow_c_array__": [2, 38], "__arrow_c_stream__": [2, 3, 38], "__call__": [6, 7, 18], "__datafusion_table_function__": 31, "__datafusion_table_provider__": [2, 20, 44], "__eq__": [4, 7], "__ge__": [4, 7], "__getitem__": [3, 4, 7], "__gt__": [4, 7], "__init__": [7, 18, 31], "__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__": [3, 4, 7, 13, 18, 36], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__str__": 18, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 37, "_aggreg": 5, "_build_expandable_cel": 6, "_build_html_foot": 6, "_build_html_head": 6, "_build_regular_cel": 6, "_build_table_bodi": 6, "_build_table_container_start": 6, "_build_table_head": 6, "_create_table_udf": [7, 18], "_create_table_udf_decor": [7, 18], "_create_window_udf": [7, 18], "_create_window_udf_decor": [7, 18], "_custom_cell_build": 6, "_custom_header_build": 6, "_default_formatt": 6, "_format_cell_valu": 6, "_get_cell_valu": 6, "_get_default_css": 6, "_get_default_nam": [7, 18], "_get_javascript": 6, "_intern": [0, 3, 4, 7, 13, 14, 15, 17], "_io_custom_table_provid": 31, "_normalize_input_typ": [7, 18], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 18], "_raw_plan": [7, 13], "_refresh_formatter_refer": 6, "_repr_html_": [3, 6, 36], "_styles_load": 6, "_sum": [7, 18, 31], "_to_pyarrow_typ": [4, 7], "_type_formatt": 6, "_udaf": [7, 18], "_udf": [7, 18], "_udtf": [7, 18], "_udwf": [7, 18], "_validate_bool": 6, "_validate_positive_int": 6, "_window_fram": 4, "_window_funct": 5, "a0": 26, "a_siz": 26, "ab": [4, 5, 7], "abc": 8, "abi": 20, "abi3": 21, "abi_st": 20, "abil": 35, "abilti": 35, "abl": [7, 13], "about": [15, 17, 20, 22, 33, 34], "abov": [5, 20, 24, 33], "absolut": [4, 5, 7], "abstract": [7, 8, 18, 26, 31], "accept": [2, 4, 7, 38], "access": [6, 7, 11, 20, 26, 35], "access_key_id": 35, "account": 35, "accum": [7, 18], "accumul": [7, 18, 31], "achiev": 22, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 20, "across": [6, 18, 20, 26, 36], "act": [7, 13], "activ": [20, 21], "actual": [3, 36], "ad": 3, "adapt": 20, "add": [2, 3, 4, 5, 6, 20, 21], "add_3": 3, "addit": [3, 4, 5, 6, 7, 15, 17, 18, 20, 21, 31, 35, 36], "addition": [20, 23], "adhoc": 21, "adopt": 20, "advanc": [35, 36], "advantag": [20, 21, 22], "affect": [18, 24, 36], "after": [3, 4, 5, 7, 18, 31, 36], "ag": [26, 36], "against": [2, 4, 5, 18, 20, 22, 32, 36], "age_col": 26, "age_in_year": 26, "agg": 3, "aggreg": [2, 3, 4, 5, 7, 18, 23, 28, 36], "aggregatefunct": 4, "aggregateudf": [2, 7, 18], "aim": 37, "albert": 26, "algorithm": [3, 5], "alia": [2, 3, 4, 5, 7, 23, 24, 26, 27, 30, 31, 33, 38], "alias": 21, "alic": 29, "align": 36, "all": [0, 2, 3, 4, 5, 6, 7, 18, 20, 21, 23, 24, 27, 29, 30, 31, 33, 35, 36], "alloc": 3, "allow": [2, 6, 7, 18, 20, 21, 22, 24, 26, 27, 31, 36], "alpha": [31, 35], "alreadi": [5, 20], "also": [2, 3, 6, 7, 18, 20, 21, 22, 24, 26, 27, 31, 33, 36, 37, 45], "altern": [30, 40, 43], "alternate_a": 3, "alwai": [18, 36], "amazons3": [12, 35], "amount": [3, 18], "an": [2, 3, 4, 5, 6, 7, 11, 13, 15, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 33, 35, 37, 38, 39, 40, 43], "analyt": 33, "analyz": [3, 4, 21], "ani": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 20, 24, 29, 31, 33, 35, 38], "anoth": [3, 5, 7, 11, 20], "anti": [3, 28], "apach": [2, 4, 5, 7, 20, 21, 22, 38], "apart": 22, "api": [2, 7, 13, 20, 21, 22, 27, 33, 34, 36, 45], "appear": [4, 5, 7, 20, 36], "append": [5, 31], "appli": [3, 6, 36], "applic": 20, "approach": [5, 24, 26], "appropri": [18, 21, 35], "approx_distinct": [5, 24], "approx_median": [5, 24], "approx_percentile_cont": [5, 24], "approx_percentile_cont_with_weight": [5, 24], "approxim": [5, 24], "ar": [2, 3, 4, 5, 6, 7, 11, 13, 14, 18, 20, 21, 23, 24, 26, 28, 30, 31, 33, 35, 36, 37, 38], "arbitrari": [3, 5], "arc": [4, 5, 7, 20, 31, 44], "area": 20, "arg": [2, 3, 5, 7, 15, 18, 21], "argument": [3, 4, 5, 7, 18, 24, 31], "around": [5, 21], "arrai": [2, 3, 4, 5, 6, 7, 18, 24, 28, 31, 35, 38], "array1": 5, "array2": 5, "array_agg": [5, 24], "array_append": [5, 21], "array_cat": [5, 26], "array_concat": [5, 26], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 26], "array_empti": [4, 5, 7, 26], "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, 26], "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": [2, 3, 4, 5, 6, 7, 21, 22, 25, 35, 36, 37, 41], "arrow_cast": [4, 5, 7, 27], "arrow_datafusion_python_root": 21, "arrow_typeof": [4, 5, 7], "arrowarrayexport": 2, "arrowstreamexport": 2, "arxiv": 5, "as_pi": [7, 18, 31], "ascend": [4, 5, 7, 24, 33], "ascii": [4, 5, 7], "asin": [4, 5, 7], "asinh": [4, 5, 7], "assembl": 2, "assign": [4, 5, 7], "assist": 21, "associ": [0, 2, 4, 5, 7, 20], "assum": [3, 5, 21, 35], "assumpt": 22, "async": [7, 14], "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [22, 35, 37], "attach": [4, 5, 7], "attack": [22, 24, 27, 33, 35, 37, 45], "attempt": [2, 3, 7, 18, 20, 21], "auto": 19, "autoapi": 19, "automat": [2, 7, 36], "avail": [3, 6, 24, 28, 31, 34, 44], "availbl": 33, "averag": [5, 18, 33], "avg": [5, 18, 24, 33], "avoid": [2, 7, 11], "avro": [2, 7, 11, 35, 41], "awar": [3, 30], "aws_access_key_id": 35, "aws_secret_access_kei": 35, "b": [3, 5, 25, 26, 31, 32, 35, 38], "back": [4, 20, 22, 31, 36, 38], "background": 36, "balanc": 36, "bar": 34, "base": [2, 3, 4, 5, 6, 7, 9, 10, 11, 18, 19, 26, 29, 31], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [7, 18, 31], "basic": [23, 28, 30, 31], "basic_typ": 27, "batch": [2, 3, 6, 7, 13, 14, 18, 25, 31, 32, 35, 36, 38], "batch_arrai": 31, "batch_siz": [2, 7], "becaus": [4, 7, 31], "becca": 26, "beedril": [22, 33, 35, 37], "beedrillmega": [22, 33, 35, 37], "been": [6, 20], "befor": [5, 6, 21, 26, 31, 36], "beforehand": [2, 7], "begin": [2, 4, 5, 7, 18], "beginnig": 5, "being": 3, "below": [23, 24, 35], "benefit": 36, "best": [2, 7, 20], "beta": 35, "better": 3, "between": [2, 4, 5, 6, 7, 18, 20, 22, 23, 29, 31, 33], "betwen": 33, "bia": [7, 18], "bias_10": [7, 18], "biased_numb": [7, 18], "biasednumb": [7, 18], "bin": [5, 21], "binari": [4, 5, 7, 13, 20], "binaryexpr": [4, 7], "bind": [7, 22, 37], "bit": [4, 5, 7], "bit_and": [5, 24], "bit_length": [4, 5, 7], "bit_or": [5, 24], "bit_xor": [5, 24], "bitwis": [5, 26], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [22, 35, 37], "blastoisemega": [22, 35, 37], "blob": [4, 7], "blog": 21, "blue": 26, "bob": 29, "bodi": 6, "bool": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18], "bool_": 31, "bool_and": [5, 24], "bool_or": [5, 24], "boolean": [4, 5, 6, 7, 28], "bootstrap": 21, "border": 36, "both": [3, 4, 5, 7, 18, 20, 21, 26, 29, 31], "bound": [4, 7, 18, 31, 33, 44], "boundari": [18, 20, 33], "bow": 33, "box": 20, "bracket": 26, "break": 20, "bronz": 5, "brotli": 3, "btrim": [4, 5, 7], "bucket_nam": 35, "bug": [22, 24, 33, 35, 37], "build": [4, 5, 6, 7, 20, 22, 23, 24, 33, 36], "build_flag": 21, "build_tabl": [8, 9, 10], "builder": [4, 5, 6, 24, 33], "built": [18, 20, 24, 26, 27, 31], "bulb": 27, "bulbafleur": 27, "bulbasaur": [22, 27, 33, 35, 37], "bulk": 20, "butterfre": [22, 33, 35, 37], "button": 6, "byte": [2, 4, 5, 6, 7, 13, 15], "c": [2, 3, 18, 20, 21, 22, 25, 35, 38], "cach": [3, 6], "calcul": [3, 5, 18, 31], "call": [0, 2, 3, 4, 5, 6, 7, 13, 14, 15, 17, 18, 20, 23, 24, 26, 31, 36, 38], "callabl": [3, 6, 7, 18], "calll": 26, "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 20, 21, 23, 24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "can_retir": 26, "cannot": 5, "canon": 20, "canonical_nam": [4, 7], "capit": [4, 5, 7, 30], "capsul": 20, "cardin": [4, 5, 7, 26], "carefulli": 20, "cargo": 21, "carlo": 26, "case": [3, 4, 5, 7, 18, 20, 24, 27, 30, 31, 33, 35], "case_build": 4, "casebuild": [4, 5], "cast": [3, 4, 5, 7, 28], "castabl": [4, 7], "catalog": [2, 7, 17, 19], "categori": [3, 27], "caterpi": [22, 33, 35, 37], "caus": [2, 7, 21, 33, 38], "cbrt": [4, 5, 7], "cdatainterfac": 2, "ceil": [4, 5, 7], "cell": [6, 36], "cellformatt": 6, "certain": 18, "certainli": 21, "chain": 3, "challeng": 20, "chang": [6, 18, 21, 26, 36], "chansei": 24, "char": 27, "char_length": [4, 5, 7, 27], "charact": [4, 5, 6, 7, 36], "character_length": [4, 5, 7], "charizard": [22, 27, 33, 35, 37], "charizardmega": [22, 27, 33, 35, 37], "charli": 29, "charmand": [22, 27, 33, 35, 37], "charmeleon": [22, 27, 33, 35, 37], "check": [5, 6, 26, 27], "checksum": [4, 5, 7], "child": 36, "children": [7, 13], "chr": [4, 5, 7], "chrono": 5, "ci": [20, 21], "citycab": 29, "class": [1, 31, 36], "classmethod": [2, 3, 6], "classvar": [4, 7], "claus": [18, 33], "clean": 21, "clefabl": 33, "clefairi": [24, 33], "click": 6, "clone": [21, 31, 44], "close": 33, "co": [4, 5, 7], "coalesc": [5, 27], "code": [4, 5, 6, 7, 20, 27], "codebas": 21, "coeffici": 5, "coerc": 5, "col": [3, 4, 5, 6, 7, 18, 19, 23, 24, 26, 27, 30, 31, 32, 33, 36, 38, 45], "col1": 18, "col_attack": 24, "col_diff": 31, "col_idx": 6, "col_spe": 24, "col_type_1": 24, "col_type_2": 24, "collaps": [6, 36], "collect": [3, 22, 23, 25, 32, 36, 38, 45], "collect_partit": 3, "color": [26, 36], "column": [1, 2, 3, 4, 5, 6, 7, 11, 18, 23, 24, 25, 27, 28, 29, 31, 33, 45], "column_a": 4, "column_nam": [4, 7], "com": [4, 5, 7, 21], "combin": [3, 5, 26, 29, 30, 31], "come": [35, 42], "command": [2, 7, 21], "common": [4, 5, 7, 8, 9, 10, 24, 27, 29, 33, 38], "commun": [20, 21], "compar": [5, 33], "comparison": [4, 7, 24], "compat": [20, 26], "compil": [20, 26], "complet": [4, 5, 7, 8, 20, 21, 31, 36, 44], "complex": [3, 22, 27], "complic": 3, "compon": 5, "compos": [5, 36], "composit": 6, "comprehens": 36, "compress": [2, 3, 7, 11], "compression_level": 3, "comput": [3, 4, 5, 7, 18, 20, 26, 31], "concat": 5, "concat_w": 5, "concaten": [5, 26], "concatenated_arrai": 26, "concept": [2, 3, 4, 7, 26], "concis": 21, "concurr": [2, 7], "condit": 28, "config": [2, 7, 21, 34], "config_intern": [2, 7], "config_opt": [2, 7], "configur": [2, 6, 7, 21, 36], "configure_formatt": [6, 7, 36], "conflict": [2, 7, 11], "conjunct": 3, "connect": [2, 23], "consecut": 5, "consid": 5, "consider": 36, "consist": [5, 36], "consol": 3, "construct": [4, 7, 18, 31], "constructor": [0, 3, 4, 7, 13, 14, 15, 17, 18], "consum": [8, 15, 38], "contain": [3, 5, 6, 7, 13, 18, 19, 20, 21, 24, 26, 29, 31], "content": [21, 28], "context": [5, 6, 7, 11, 13, 15, 19, 31, 32, 34, 36, 38, 45], "continu": [5, 20], "contribut": 21, "control": [2, 7, 24, 33], "conveni": [7, 18, 35], "convent": 20, "convers": [20, 21, 23], "convert": [2, 3, 4, 5, 7, 13, 14, 15, 17, 18, 20, 23, 25, 26, 27, 31, 32, 45], "copi": [20, 21, 22, 31, 38], "copyto": 4, "core": [3, 4, 7, 20], "corr": [5, 24], "correctli": [3, 18], "correl": 5, "correspond": [5, 29], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": 22, "costli": 18, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [3, 4, 7, 20], "count": [3, 5, 24, 25], "count_star": 5, "counterpart": [5, 20], "coupl": [20, 33], "covar": 5, "covar_pop": [5, 24], "covar_samp": [5, 24], "covari": 5, "cover": [23, 27, 34], "cpython": 21, "cr": 31, "crate": 20, "creat": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 19, 20, 21, 23, 24, 26, 32, 34, 38, 45], "create_datafram": [2, 31, 35], "create_dataframe_from_logical_plan": 2, "createcatalog": 4, "createcatalogschema": 4, "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "credenti": 35, "criteria": [5, 33], "css": [6, 36], "cstream": 20, "cstring": [20, 44], "csv": [2, 3, 7, 11, 20, 22, 24, 27, 33, 35, 36, 37, 41, 45], "ctx": [2, 5, 7, 13, 15, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "cube": [4, 5, 7], "cubon": 24, "cume_dist": [5, 18, 33], "cumul": 5, "curr_valu": 31, "current": [3, 4, 5, 6, 7, 13, 18, 20, 27, 31, 33, 36], "current_d": 5, "current_tim": 5, "custom": [2, 6, 7, 8, 13, 20, 29, 31, 41], "custom_css": [6, 36], "custom_formatt": 6, "custom_html": 36, "customer_id": 29, "d": [3, 18, 38], "dai": [5, 27], "dant": 26, "dark": [24, 36], "data": [0, 2, 3, 4, 5, 6, 7, 11, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 37, 38, 39, 42, 44], "data_typ": 5, "databas": [0, 7, 26], "dataflow": [7, 13], "datafram": [2, 4, 5, 6, 7, 11, 13, 14, 18, 19, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 37, 38, 45], "dataframehtmlformatt": 6, "datafrm": 3, "datafus": [19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "datafusion_df": 35, "datafusion_sql": 17, "datafusion_table_funct": 31, "datafusion_table_provid": [20, 44], "dataset": [2, 27, 33, 35, 37], "datasourc": 8, "datastructur": [4, 7], "datatyp": [3, 4, 7, 18], "datatypemap": [4, 7], "date": [5, 27], "date32": 5, "date_bin": 5, "date_part": [5, 27], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "db": [0, 7], "ddd": 36, "ddl": [2, 7], "dealloc": 4, "debug": 6, "decid": [18, 20], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 18], "def": [3, 7, 18, 22, 31, 35, 36, 37], "default": [2, 3, 4, 5, 6, 7, 10, 11, 17, 18, 20, 21, 31, 33, 34, 36], "default_valu": 5, "defaultstyleprovid": 6, "defens": [22, 27, 35, 37, 45], "defin": [2, 4, 7, 16, 18, 20, 21, 27, 28, 33], "definit": [2, 4, 7, 18, 20, 23, 31], "degre": [4, 5, 7], "delet": [2, 7], "delimit": [2, 5, 7, 11], "delta": 20, "delta_t": 35, "deltalak": 35, "deltat": 35, "demonstr": [2, 31, 33, 37, 38], "dens": 5, "dense_rank": [5, 18, 33], "depend": [5, 20, 24, 31, 33], "deprec": [3, 5, 16, 33], "deregister_t": 2, "descend": 5, "describ": [3, 5, 20, 24, 25, 31, 35], "describet": 4, "descript": [5, 7, 18], "deseri": 15, "deserialize_byt": 15, "design": [20, 28], "desir": 5, "detafram": 2, "detail": [3, 4, 5, 7, 18, 21, 23, 25], "determin": [3, 4, 5, 7, 31], "dev": 21, "develop": 20, "deviat": 5, "df": [2, 3, 4, 5, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 45], "df_filter": 32, "df_view": 32, "dfschema": 7, "dialect": 17, "dict": [2, 3, 4, 5, 6, 7], "dictionari": [2, 3, 5, 26, 32, 35], "differ": [3, 4, 5, 7, 13, 18, 20, 27, 31, 35, 36], "difficult": 20, "digest": 5, "dimens": [4, 5, 7], "dimension": 3, "directli": [4, 5, 6, 15, 35, 36, 38], "directori": [2, 7, 21], "disabl": [2, 7], "discard": 3, "discuss": 20, "disk": [2, 7, 9, 10], "displai": [6, 7, 13, 23, 25, 32, 37], "display_graphviz": [7, 13], "display_ind": [7, 13], "display_indent_schema": [7, 13], "display_nam": [4, 7], "distanc": 5, "distinct": [3, 4, 5, 7], "distinctli": 20, "distinguish": 20, "distribut": 5, "div": 36, "divid": 5, "divis": [4, 5, 7], "divisor": 5, "dml": [2, 7], "dmlstatement": 4, "do": [2, 7, 18, 20, 21, 23, 24, 31, 33, 35, 44], "doc": [2, 5, 17], "docstr": 21, "document": [2, 3, 4, 5, 7, 19, 20, 21, 23, 34, 37], "doe": [3, 5, 6, 18, 20, 21, 33, 35], "doesn": 18, "dominant_typ": 27, "done": [3, 24, 31], "dot": [7, 13], "doubl": [30, 38], "double_func": [7, 18], "double_it": [7, 18], "double_udf": [7, 18], "down": [20, 33, 35], "downcast": 20, "download": [23, 30, 37], "dragon": [22, 24, 27, 33, 35, 37], "dragonair": 33, "dratini": 33, "drop": [2, 3, 7], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [3, 36], "duckdb": 17, "due": [2, 7, 11, 21], "duplic": [3, 4, 5, 7, 29, 36], "dure": [7, 18, 21], "dynamic_lookup": 21, "e": [3, 4, 5, 7, 18, 31, 44], "each": [3, 4, 5, 7, 18, 20, 21, 24, 27, 33], "earli": 20, "easi": [20, 42], "easier": [20, 27, 36, 37], "easili": [4, 7, 20], "east": 35, "effect": [30, 37], "effort": 20, "either": [2, 3, 4, 7, 18, 20, 24], "electr": [24, 33], "element": [3, 4, 5, 6, 7, 26], "ellipsi": [3, 7, 18], "els": 31, "else_expr": 4, "employe": 26, "empti": [2, 4, 5, 7, 13, 24, 26], "empty_t": 2, "emptyrel": 4, "enabl": [2, 7, 20, 36], "enable_cell_expans": [6, 7, 36], "enable_url_t": 2, "encod": [5, 15], "encourag": 21, "end": [0, 3, 4, 5, 7, 13, 14, 17, 18, 33], "end_bound": [4, 7], "ends_with": 5, "engin": [2, 7, 22, 23], "enough": 18, "ensur": [6, 8], "entir": [18, 24, 31, 33], "entri": [3, 5, 24, 33], "enum": [3, 4, 7, 18], "enumer": 18, "enviorn": 21, "environ": [21, 22, 36], "equal": [3, 4, 5, 7], "equival": [5, 18, 20, 24, 33], "error": [2, 4, 6, 7, 21], "especi": 21, "essenti": [7, 14, 25], "etc": [2, 4, 6, 7, 9, 10, 18], "eval_rang": 18, "evalu": [3, 4, 5, 7, 18, 23, 24, 26, 31, 33], "evaluate_al": [7, 18, 31], "evaluate_all_with_rank": [18, 31], "even": [2, 7, 20, 29, 36], "everi": [5, 7, 18], "everyth": [9, 10], "ex": [4, 7, 30], "exact": 20, "exactli": [3, 33], "examin": [4, 7], "exampl": [2, 3, 4, 5, 6, 7, 13, 18, 20, 23, 24, 26, 27, 29, 31, 32, 33, 35, 37, 44], "excel": 20, "except": [3, 4, 5, 7, 26], "except_al": 3, "exclud": [3, 29], "execut": [2, 3, 4, 7, 18, 21, 22, 23, 34, 36, 38], "execute_stream": [3, 7, 14], "execute_stream_partit": 3, "execution_plan": 3, "executionplan": [2, 3, 7, 13], "exeggcut": 24, "exist": [2, 3, 4, 5, 6, 7, 20], "exp": [4, 5, 7], "exp_smooth": 31, "expand": [3, 6, 36], "expect": [4, 5, 7, 18, 20, 26, 31, 33], "expens": 3, "experi": 21, "explain": [3, 4], "explan": [3, 23], "explicit": 34, "explicitli": [7, 18], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 31, "export": [2, 3, 20, 21, 41], "expos": [2, 20, 31, 35, 44], "expr": [2, 3, 5, 7, 11, 18, 19, 31, 33], "expr1": 5, "expr2": 5, "express": [3, 4, 5, 7, 18, 24, 27, 28, 31, 33], "exprfuncbuild": [4, 7], "extend": [5, 8, 20], "extens": [2, 4, 6, 7, 11], "extract": [4, 5, 6, 7, 27], "extraenv": 21, "f": [4, 23, 24, 26, 27, 33, 35], "f2f2f2": 36, "face": 20, "fact": [20, 31], "factori": [4, 5, 7, 18], "fail": [3, 21, 27], "fair": [2, 7], "fairi": [24, 33], "fals": [3, 4, 5, 6, 7, 18, 20, 21, 22, 26, 27, 30, 31, 34, 35, 36, 37, 44], "familiar": [21, 36], "far": 3, "faster": [5, 18], "featur": [5, 20, 21, 35, 38], "fetch": 21, "few": [20, 21, 23, 36], "ffi": 35, "ffi_": 20, "ffi_provid": 20, "ffi_tablefunct": 31, "ffi_tableprovid": [2, 20, 44], "field": [3, 5, 6, 27], "fight": [24, 33], "file": [2, 3, 7, 9, 10, 11, 15, 20, 21, 22, 23, 30, 37, 39, 40, 42, 43], "file_compression_typ": [2, 7, 11], "file_extens": [2, 7, 11], "file_partition_col": [2, 7, 11], "file_sort_ord": [2, 7, 11], "filenam": 21, "filetyp": 4, "fill": [3, 4, 5, 7, 27, 33], "fill_nan": [4, 7], "fill_nul": [3, 4, 7, 28], "filter": [3, 4, 5, 7, 13, 23, 26, 32, 33, 35, 36], "final": [23, 31], "find": [5, 20, 21, 23, 24, 33], "find_in_set": 5, "finish": [4, 24], "fire": [22, 24, 27, 35, 37], "first": [2, 3, 4, 5, 7, 20, 21, 23, 24, 26, 33, 36, 37], "first_1": 24, "first_2": 24, "first_arrai": 5, "first_valu": [5, 18, 24], "fix": 18, "flag": [5, 17, 18, 21], "flatten": [4, 5, 7], "fleur": 27, "float": [4, 5, 7, 18, 31, 36], "float64": [7, 18, 27, 31], "floor": [4, 5, 7], "flow": [7, 13], "flower": 27, "fly": [22, 24, 33, 35, 37], "fn": [31, 44], "focus": 20, "folder": [20, 31, 44], "follow": [2, 3, 4, 5, 7, 18, 20, 21, 23, 24, 26, 27, 29, 31, 33, 35, 37], "foo": 34, "footer": 6, "fora": [4, 7], "forc": 6, "foreign": 20, "foreign_provid": 20, "foreigntableprovid": 20, "form": [3, 5, 7, 13, 24], "format": [2, 3, 4, 5, 6, 7, 13, 23, 35, 39, 42], "format_argu": 5, "format_html": [6, 36], "formatt": [5, 6, 7], "formatted_valu": 6, "formatter_class": 36, "formattermanag": 6, "formatting_context": 36, "forth": 38, "found": [5, 21, 33, 44], "four": 31, "frame": [4, 5, 7, 18, 25, 31], "frame_bound": 4, "framework": 21, "free": [2, 7], "frequent": [20, 21], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "from_arrai": [31, 35], "from_arrow": [2, 35, 38], "from_arrow_t": 2, "from_panda": 2, "from_polar": [2, 35], "from_proto": [7, 13], "from_pydict": [2, 25, 26, 29, 31, 32, 35, 38], "from_pylist": [2, 29, 35], "from_str": 3, "from_substrait_plan": 15, "from_unixtim": [4, 5, 7], "from_val": 5, "fuction": 18, "full": [3, 5, 28, 45], "fulli": 21, "func": [2, 3, 7, 18, 31], "function": [2, 3, 4, 12, 14, 16, 18, 19, 20, 23, 25, 28, 35, 43], "function_to_impl": [18, 31], "further": 20, "futher": 5, "futur": [18, 33], "g": [5, 18], "gamma": 35, "gcd": 5, "gener": [4, 7, 13, 14, 15, 18, 19, 20, 21, 22, 35, 37], "geodud": 33, "get": [3, 6, 7, 13, 18, 21, 26, 35, 36], "get_cell_styl": 6, "get_default_level": 3, "get_formatt": [6, 36], "get_frame_unit": [4, 7], "get_header_styl": 6, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 18, "get_table_styl": 36, "get_upper_bound": [4, 7], "get_value_styl": 36, "getenv": 35, "ghost": 24, "gil": 22, "git": 21, "github": [4, 5, 7, 21], "give": [5, 24, 30, 37], "given": [0, 2, 4, 5, 6, 7, 18, 31], "glanc": 20, "global": [2, 6, 7, 11, 36], "global_ctx": 2, "go": [20, 25, 27], "goe": 20, "gold": 5, "good": [20, 21], "googlecloud": [12, 35], "graph": [7, 13], "graphic": [7, 13], "graphviz": [7, 13], "grass": [22, 24, 27, 33, 35, 37], "great": 21, "greater": [4, 5, 7], "greatest": 5, "greatli": 31, "greedi": [2, 7], "green": 26, "grimer": 33, "ground": 24, "group": [2, 3, 4, 5, 7, 11, 18, 23, 24, 25, 33], "group_bi": [3, 24], "groupingset": 4, "guarante": 20, "guid": [2, 28, 34, 37], "gzip": 3, "ha": [2, 3, 5, 6, 7, 18, 20, 26, 30, 35], "handl": [6, 14, 24, 28, 33], "happen": [21, 36, 38], "has_head": [2, 7, 11], "has_mor": [6, 36], "hash": [3, 4, 5, 7], "haskel": 25, "have": [2, 3, 5, 6, 7, 11, 15, 18, 20, 21, 22, 24, 29, 31, 33, 44], "head": 3, "header": [2, 3, 6, 7, 11], "healthi": 21, "heavy_red_unit": 26, "height": [6, 36], "help": [2, 6, 7, 11, 21, 26, 27, 36], "helper": [7, 18], "henc": 18, "here": [5, 20, 27, 30, 31, 33, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "high": [4, 7], "higher": [3, 4, 7], "highli": 31, "highlight": 37, "hint": [2, 21], "homebrew": 21, "host": 2, "how": [2, 3, 4, 5, 7, 18, 20, 24, 25, 28, 29, 31, 33, 34, 36, 37], "howev": [18, 31], "hp": [22, 35, 37], "html": [2, 5, 6, 7, 17], "html_formatt": [7, 19, 36], "http": [2, 4, 5, 7, 12, 13, 15, 17, 35], "hyperbol": [4, 5, 7], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 31, 33, 35, 36, 37, 38, 39, 40, 42, 43], "ic": 24, "id": [2, 6, 21, 29], "ideal": 20, "ident": 35, "identifi": [2, 4, 7, 20, 30], "idx": [18, 31], "ignor": [5, 21, 24, 33], "ignore_nul": [24, 33], "ilik": 4, "immut": [7, 18, 31], "impl": [31, 44], "implement": [2, 3, 6, 18, 21, 31, 35, 36, 38, 44], "import": [2, 4, 6, 7, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [2, 7, 18, 31, 36], "in_list": [5, 27], "includ": [2, 3, 4, 6, 7, 20, 23, 24, 27, 29, 36], "include_rank": [18, 31], "inclus": [2, 4, 5, 7], "incorpor": 31, "increas": [2, 6, 7, 24], "increment": [18, 20, 31], "indent": [7, 13], "independ": [5, 33], "index": [4, 5, 6, 7, 17, 18, 26], "indic": [4, 5, 6, 7, 26], "individu": [26, 33], "infer": [2, 7, 11], "inform": [2, 3, 4, 7, 8, 15, 17, 20, 31], "information_schema": [2, 7], "init": 21, "initcap": [4, 5, 7], "initi": [4, 5, 6, 7], "inlin": 18, "inlist": 4, "inner": [3, 28], "input": [2, 3, 4, 5, 7, 11, 13, 18, 19, 26, 31], "input_item": [8, 9, 10], "input_typ": [7, 18], "inputsourc": 8, "insert": [2, 7], "instanc": [2, 5, 6, 7, 18, 23], "instanti": [7, 18], "instead": [4, 5, 7, 20], "insubqueri": 4, "int": [2, 3, 4, 5, 6, 7, 11, 13, 18, 31], "int32": [7, 18, 27], "int64": [7, 18, 25, 27, 31], "integ": [4, 5, 6, 7, 26], "integr": [20, 37, 44], "intend": [6, 20], "interact": [6, 20, 26], "intercept": 5, "interchang": 42, "interest": 26, "interfac": [2, 5, 20, 22, 23, 31, 33, 35, 36, 38, 44], "intermedi": [7, 18], "intern": 31, "intersect": [3, 5], "interv": 5, "into_view": 3, "intro": 21, "introduc": [21, 23], "intuit": 20, "invalid": [6, 7], "invers": [4, 5, 7], "invoc": 18, "io": [2, 7, 15, 19], "is_caus": 18, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 26, "is_follow": 4, "is_not_nul": [4, 7, 24], "is_nul": [4, 7, 31], "is_null_arr": 31, "is_preced": 4, "is_styles_load": 6, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [5, 6, 21, 33], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "iter": [3, 7, 14], "iterat": 3, "its": [3, 5, 7, 13, 18, 20, 22, 33], "itself": 26, "ivi": 27, "ivyfleur": 27, "ivysaur": [22, 27, 33, 35, 37], "java": 25, "javascript": [6, 36, 42], "jigglypuff": 33, "join": [2, 3, 4, 7, 13, 28], "join_kei": [3, 29], "join_on": 3, "joinconstraint": 4, "jointyp": 4, "json": [2, 3, 7, 11, 35, 41], "jupyt": [6, 36, 37], "jupyterlab": 37, "just": 36, "jynx": 24, "kakuna": [22, 33, 35, 37], "keep": [21, 32], "kei": [2, 3, 4, 6, 7, 20, 23, 26, 29], "kept": 3, "kind": [0, 7, 20, 21], "know": [2, 7], "known": 26, "kwarg": [6, 7, 8, 9, 10], "kwd": [3, 18], "l179": [4, 7], "lab": 37, "label": 3, "lack": 22, "lag": [5, 18, 33], "lambda": [7, 18], "languag": [2, 7, 13, 20], "larg": [3, 27], "large_trip_dist": 30, "last": [4, 5, 7, 33], "last_valu": [5, 24, 33], "last_with_nul": 33, "last_wo_nul": 33, "later": [35, 37, 44], "latest": [5, 17, 20], "latter": 2, "lazi": 23, "lcm": 5, "lead": [5, 18, 20, 31, 33, 35], "leaf": [7, 13], "leak": 22, "learn": [20, 25, 33], "least": [5, 18, 24, 29, 31, 36], "leav": [7, 13], "left": [3, 5, 27, 28, 36], "left_on": [3, 29], "leftmost": 5, "legendari": [22, 35, 37], "len": [18, 27], "length": [4, 5, 6, 7, 18], "less": [4, 5, 7], "lesson": 20, "let": [20, 31, 34, 44], "letter": [4, 5, 7, 30], "level": [3, 5, 20], "levenshtein": 5, "leverag": 20, "lib": 21, "lib_dir": 21, "lib_nam": 21, "librari": [7, 8, 20, 22, 36, 37, 38, 44], "lightweight": 42, "like": [2, 4, 5, 6, 7, 8, 20, 21, 22, 27, 36], "limit": [3, 4, 5, 21, 23, 25, 27], "line": [2, 3, 7, 11, 13, 20], "linear": [5, 24], "link": [21, 33], "lint": 21, "linter": 21, "list": [0, 2, 3, 4, 5, 6, 7, 11, 13, 18, 24, 31, 32, 33, 35], "list_append": [5, 21], "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": 2, "lit": [3, 4, 5, 7, 21, 23, 24, 26, 30, 33, 36, 38], "liter": [3, 4, 7, 27, 28, 30, 31, 32], "ll": [27, 29, 33], "ln": [4, 5, 7], "load": 6, "local": [2, 20, 21], "localfilesystem": [12, 35], "locat": [2, 9, 19], "locationinputplugin": [9, 10], "lock": 22, "log": [5, 27], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [2, 3, 4, 7, 13, 15, 17, 23, 24, 30, 36], "logical_plan": [3, 15], "logicalplan": [2, 3, 4, 7, 13, 15, 17], "lonely_trip": 30, "long": [6, 20], "long_tim": 26, "longer": 5, "look": [21, 34], "low": [4, 7, 24], "low_passenger_count": 30, "lower": [4, 5, 7, 18, 27, 30], "lowercas": [3, 4, 5, 7], "lowest": [20, 24], "lpad": 5, "ltrim": [4, 5, 7], "lz4": 3, "lz4_raw": 3, "lzo": 3, "m": 21, "mac": 21, "machin": 21, "machop": 33, "made": 30, "magikarp": 24, "magnemit": 33, "mai": [2, 3, 5, 7, 11, 18, 20, 31, 35, 37, 38], "main": [2, 23], "maintain": [2, 3, 20, 23], "major": [21, 22], "make": [5, 20, 21, 22, 27, 36], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [2, 6, 7, 21], "mani": [20, 24, 31, 36], "manipul": [2, 7, 27, 36], "mankei": 33, "manner": 20, "manual": 21, "map": 3, "map_err": 44, "match": [3, 4, 5, 27, 29], "math": 24, "mathemat": [28, 30], "maturin": 21, "max": [5, 24, 25], "max_cell_length": [6, 7, 36], "max_height": [6, 7, 36], "max_memory_byt": [6, 36], "max_row": 36, "max_width": [6, 7, 36], "maximum": [2, 5, 6, 7, 11, 36], "md5": [4, 5, 7], "mean": [5, 20, 21, 25], "meaning": [5, 30], "meant": [7, 13], "medal": 5, "median": [5, 24, 25], "member": 21, "memoiz": 18, "memori": [2, 3, 6, 7, 13, 18, 22], "mention": 26, "merg": [7, 18, 29, 31], "messag": [6, 36], "metadata": [2, 4, 5, 7, 11], "metapod": [22, 24, 33, 35, 37], "method": [2, 3, 5, 6, 7, 18, 23, 25, 27, 29, 31, 32, 36], "metric": 3, "metrorid": 29, "microsecond": 5, "microsoftazur": [12, 35], "might": [6, 18, 24], "millisecond": 5, "min": [5, 24, 25], "min_rows_displai": [6, 36], "minimum": [2, 5, 6, 7, 36], "miss": [3, 28], "model": 3, "modifi": [3, 23], "modify_df": 3, "modul": [16, 33], "modulo": [4, 7], "moment": [3, 20], "month": [5, 27], "more": [2, 3, 4, 6, 7, 15, 20, 21, 23, 24, 27, 31, 34], "most": [18, 20, 26, 33, 37], "mostli": 21, "much": [18, 21, 36], "multi": 22, "multipl": [2, 3, 4, 5, 6, 7, 18, 24, 27, 29, 31, 33, 35, 36], "must": [2, 3, 4, 5, 7, 18, 24, 26, 30, 31, 33, 38, 44], "my": 36, "my_capsul": 20, "my_delta_t": 35, "my_provid": 20, "my_tabl": [32, 36, 44], "my_udaf": 31, "myaccumul": 31, "myformatt": 36, "mysql": 17, "mystyleprovid": 36, "mytablefunct": 31, "mytableprovid": [20, 44], "myusernam": 21, "n": [3, 5], "name": [0, 2, 3, 4, 5, 6, 7, 11, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 36, 37, 44], "name_pair": 5, "named_expr": 3, "named_struct": [5, 21], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 20, "nativ": 20, "natur": [4, 5, 7], "nearest": [4, 5, 7], "necessari": 20, "need": [2, 3, 4, 6, 7, 11, 18, 20, 21, 31, 33, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 27], "new": [2, 3, 4, 5, 6, 7, 17, 18, 20, 21, 26, 28, 31, 44, 45], "new_bound": [20, 44], "new_err": 44, "new_nam": 3, "next": [5, 6, 7, 14], "node": [7, 13], "non": [3, 4, 5, 24, 33], "none": [2, 3, 4, 5, 6, 7, 11, 15, 18, 20, 31, 33, 35, 36], "normal": 24, "not_red_unit": 26, "notat": [26, 42], "note": [2, 3, 4, 7, 23, 26, 38], "notebook": [6, 36, 37], "now": [5, 18, 27, 32], "nr": 25, "nth": 36, "nth_valu": [5, 18, 24], "ntile": [5, 33], "null": [3, 4, 5, 7, 25, 27, 29, 31, 38], "null_count": 25, "null_first": 5, "null_treat": [4, 5, 7, 24, 33], "nullabl": 3, "nullif": [5, 27], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 24, 33], "num": [3, 5], "num_centroid": 5, "num_el": 26, "num_row": [7, 18, 31], "number": [2, 3, 4, 5, 6, 7, 11, 13, 18, 21, 26, 27, 31, 33, 36], "numebr": 5, "numer": [3, 4, 5, 7], "nvl": 5, "o": 35, "object": [2, 3, 4, 6, 7, 12, 20, 26, 31, 34, 38, 42], "object_stor": [7, 19, 35], "objectstor": 2, "obtain": [8, 22], "obviou": 20, "occur": [7, 18, 38], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 33, "offend": 21, "offer": [27, 36, 45], "offici": 20, "offset": [3, 4], "often": 33, "old": 3, "old_nam": 3, "older": 35, "olymp": 5, "omit": 29, "on_expr": 3, "onc": [5, 6, 8, 18, 31, 36, 44], "one": [3, 4, 5, 7, 18, 20, 24, 29, 31, 33, 35], "onli": [2, 3, 4, 5, 6, 7, 11, 18, 20, 24, 27, 29, 31, 33, 36], "onlin": [2, 3, 4, 5, 7, 20, 34], "op": [3, 4, 7], "open": 6, "oper": [2, 3, 4, 5, 7, 13, 14, 18, 20, 22, 24, 26, 30, 31, 33, 35, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 21, "optim": [3, 18, 20], "optimized_logical_plan": 3, "option": [2, 3, 4, 5, 6, 7, 11, 18, 21, 23, 24, 27, 34, 35, 37], "options_intern": [2, 7], "order": [2, 3, 4, 5, 7, 8, 11, 18, 20, 26], "order_bi": [4, 5, 7, 24, 33], "org": [2, 5, 7, 13], "origin": [3, 5, 31], "other": [2, 3, 4, 5, 6, 7, 18, 20, 21, 22, 23, 26, 28, 31, 36], "otherwis": [4, 5, 6, 7], "our": [20, 21, 24, 37], "out": [3, 5, 20, 24, 25, 26, 27, 29, 30, 33, 37, 38, 45], "output": [3, 4, 6, 7, 13, 18, 21, 24, 26, 31, 32, 36], "over": [3, 4, 7, 18, 20, 22, 24, 33, 36], "overhead": 18, "overlai": 5, "overlap": 5, "overrid": 31, "overridden": 24, "own": [8, 31], "pa": [2, 4, 7, 14, 18, 31, 35, 38], "packag": [5, 20, 21], "pad": [5, 36], "page": [19, 20, 31], "pair": 5, "panda": [2, 3, 23, 25, 35, 36, 45], "pandas_df": 35, "para": 33, "parallel": [2, 7], "param_nam": 6, "paramet": [2, 3, 4, 5, 6, 7, 11, 15, 18, 21, 26, 28, 29, 36], "parasect": 33, "parquet": [2, 3, 7, 11, 20, 22, 23, 30, 34, 35, 41], "parquet_prun": [2, 7, 11], "part": [5, 27], "particular": 5, "partit": [2, 3, 4, 5, 7, 11, 13, 18, 24], "partition_bi": [4, 5, 7, 33], "partition_count": [7, 13], "pass": [3, 7, 18, 20, 21, 25, 26, 31, 34, 35], "passenger_count": 30, "path": [2, 3, 7, 11, 15, 21, 35, 36], "path_to_t": 35, "pathlib": [2, 3, 7, 11, 15], "pattern": [5, 20], "pc": [7, 18], "pcre": 5, "pd": 35, "peopl": 5, "per": [3, 6, 18, 33, 36], "percent": 5, "percent_rank": [5, 18, 33], "percentag": 5, "percentil": 5, "perform": [2, 3, 4, 5, 7, 18, 20, 21, 23, 24, 27, 31, 33, 35], "period": 20, "person": 21, "physic": [3, 7, 13, 23], "pi": 5, "pick": 5, "pinsir": 33, "pip": [22, 37], "pixel": [6, 36], "pl": 35, "place": [5, 21, 37], "placehold": 4, "plain": 36, "plan": [2, 3, 4, 7, 15, 17, 18, 19, 22, 23, 36], "plan_intern": 15, "plan_to_sql": 17, "planner": [7, 13], "pleas": 30, "plu": 5, "plugin": [8, 9, 10], "point": [4, 5, 6, 7, 21], "pointer_width": 21, "poison": [22, 24, 33, 35, 37], "pokemon": [22, 24, 27, 33, 35, 37, 45], "polar": [2, 3, 35], "polars_df": 35, "pool": [2, 7], "popul": 5, "popular": [27, 35], "portion": 20, "posit": [5, 6, 24], "possibl": [3, 4, 7, 18, 20, 27, 31, 33], "post": 21, "postgr": 17, "postgresql": 17, "potenti": [3, 7, 13], "pow": [5, 27], "power": [5, 27, 31, 33, 36], "pr": 21, "practic": 20, "prece": 5, "preced": [4, 7, 18], "preceed": 33, "precis": 5, "predic": [2, 3, 7, 11], "prefer": 21, "prefix": [5, 20], "prepar": 4, "prepend": 5, "presenc": 27, "present": 29, "preserve_nul": 3, "pretti": 17, "prevent": [21, 36], "previou": [5, 31, 33], "previous": 2, "primari": [9, 26], "primarili": 6, "print": [3, 7, 13, 32, 34, 36], "printabl": [7, 13, 18], "prior": [3, 35], "probabl": 24, "process": [18, 24, 33], "produc": [5, 7, 13, 15, 18, 20, 33], "product": 5, "program": 20, "programmat": [7, 13], "project": [3, 4, 7, 13, 20, 21, 36, 38], "properti": [0, 4, 7, 13], "proto_byt": 15, "protobuf": [7, 13], "protocol": [2, 6], "provid": [0, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 17, 18, 20, 23, 24, 27, 31, 33, 37, 41], "prune": [2, 7, 11], "psychic": 24, "public": [0, 7], "pull": 21, "pure": 21, "push": [21, 35], "pushdown_filt": 34, "put": 30, "py": [2, 3, 7, 15, 20, 31, 44], "pyarrow": [0, 2, 3, 4, 7, 11, 14, 18, 20, 25, 31, 35, 38, 45], "pycapsul": [2, 3, 20, 31, 35, 38, 44], "pycapsuleinterfac": 2, "pymethod": [31, 44], "pyo3": [20, 21, 31], "pyo3_build_config": 21, "pyo3_config_fil": 21, "pyo3_print_config": 21, "pyobject": [4, 7], "pypi": 37, "pyproject": 21, "pyresult": [31, 44], "pyruntimeerror": 44, "pyspark": 22, "pytabl": 20, "pytest": 21, "python": [2, 4, 7, 18, 25, 26, 31, 35, 37, 38, 44], "python3": 21, "python_valu": [4, 7], "pythontyp": [4, 7], "queri": [2, 7, 13, 15, 18, 20, 22, 23, 27, 32, 36], "quick": 25, "quit": 43, "quot": 30, "r": [3, 4, 5, 7, 17, 20, 21], "radian": [4, 5, 7], "rais": [3, 5, 6, 7], "random": [5, 18, 25, 26], "rang": [2, 3, 4, 5, 7, 18, 25, 26, 27, 31, 33, 34], "rank": [5, 18, 31, 33], "ranks_in_partit": 18, "rather": [5, 15], "ratio": 5, "raw": [4, 6], "raw_sort": 4, "rawexpr": [4, 7], "rb": [7, 14], "re": 20, "read": [2, 7, 9, 10, 11, 15, 20, 34, 35, 37, 39, 40, 42, 43, 45], "read_avro": [2, 7, 11, 39], "read_csv": [2, 7, 11, 22, 23, 24, 33, 35, 37, 40], "read_json": [2, 7, 11, 42], "read_parquet": [2, 7, 11, 23, 30, 43], "read_tabl": 2, "reader": [2, 7, 11, 38], "realiti": 24, "reason": 21, "rebuild": 21, "receiv": [5, 18, 20], "recent": [33, 35], "recommend": [3, 20, 21, 31], "record": [2, 3, 6, 7, 13, 14, 23, 30, 31, 35, 38, 39], "record_batch": [2, 3, 7, 19], "record_batch_stream": [7, 14], "recordbatch": [2, 3, 6, 7, 14, 31, 35], "recordbatchstream": [2, 3, 7, 14], "recursivequeri": 4, "red": [26, 36], "red_or_green_unit": 26, "red_unit": 26, "reduc": [21, 31, 36], "ref": [5, 31], "refer": [3, 5, 6, 20, 23, 27, 45], "referenc": [2, 23], "reflect": 6, "refresh": 6, "regardless": 18, "regener": 21, "regex": 5, "regexp_count": 5, "regexp_lik": 5, "regexp_match": [5, 27], "regexp_replac": [5, 27], "region": 35, "regist": [2, 6, 7, 8, 11, 20, 23, 28, 31, 35, 36, 44, 45], "register_avro": 2, "register_csv": [2, 27, 36, 40, 45], "register_dataset": [2, 35], "register_formatt": 6, "register_json": 2, "register_listing_t": 2, "register_object_stor": [2, 35], "register_parquet": [2, 35, 43], "register_record_batch": 2, "register_t": [2, 3], "register_table_provid": [2, 35, 44], "register_udaf": 2, "register_udf": 2, "register_udtf": [2, 31], "register_udwf": 2, "register_view": [2, 32], "regr_avgi": [5, 24], "regr_avgx": [5, 24], "regr_count": [5, 24], "regr_intercept": [5, 24], "regr_r2": [5, 24], "regr_slop": [5, 24], "regr_sxi": 5, "regr_sxx": [5, 24], "regr_syi": [5, 24], "regress": [5, 24], "regular": [5, 6, 27], "rel": [5, 33], "relat": [6, 7, 13, 29], "releas": [20, 33], "relev": 21, "reli": 21, "reload": 6, "remain": [4, 5, 7, 27], "remot": [9, 10], "remov": [2, 3, 4, 5, 7, 24], "renam": 3, "renamed_ag": 26, "render": 6, "repartit": [2, 3, 4, 7], "repartition_by_hash": 3, "repeat": [5, 26], "repeated_arrai": 26, "replac": [3, 5, 27], "repo": 21, "report": [3, 21], "repositori": [20, 31, 35], "repr": 6, "repr_row": [6, 36], "repres": [2, 3, 4, 5, 7, 11, 13, 14, 15, 23, 26, 31, 36], "represent": [2, 3, 4, 5, 6, 7, 11, 13, 18], "request": [3, 21], "requested_schema": [2, 3], "requir": [3, 4, 18, 20, 27, 35], "reserv": [2, 7], "reset": [6, 36], "reset_formatt": [6, 36], "reset_styles_loaded_st": 6, "resolv": [21, 33], "resourc": 20, "respect": [3, 5, 24, 35], "respect_nul": [5, 24, 33], "result": [2, 3, 5, 7, 13, 14, 18, 22, 23, 24, 26, 29, 30, 31, 32, 33, 36], "result_dict": 32, "retriev": [2, 4, 7, 29], "return": [0, 2, 3, 6, 8, 9, 10, 11, 13, 15, 18, 26, 29, 31, 36, 38], "return_typ": [7, 18], "reus": 20, "reusabl": 4, "revers": [4, 5, 7], "review": [20, 21], "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": 33, "rich": 6, "richer": 36, "right": [3, 5, 29], "right_on": [3, 29], "ritchi": 33, "robin": 3, "rock": 24, "roll": 33, "root": [4, 5, 7, 13], "roption": 20, "round": [3, 5, 23], "rout": 20, "row": [2, 3, 4, 5, 6, 7, 11, 18, 23, 24, 25, 26, 29, 31, 32, 33, 36, 45], "row_count": 6, "row_idx": 6, "row_numb": [5, 18, 33], "rpad": 5, "rresult": 20, "rstring": 20, "rtrim": [4, 5, 7], "rubi": 25, "run": [2, 3, 7, 11, 22, 32, 37], "runnabl": 21, "runtim": [2, 7, 18, 34], "runtimeconfig": 2, "runtimeenvbuild": [2, 7, 34], "rust": [5, 20, 22, 31, 34, 35, 36, 44], "rustc": 20, "rustflag": 21, "rustonomicon": 20, "rvec": 20, "s3": 35, "safe": 20, "safeti": 22, "same": [3, 5, 7, 18, 20, 23, 31], "sampl": [5, 25, 32], "saur": 27, "save": 18, "scalar": [4, 7, 18, 26, 28], "scalarsubqueri": 4, "scalarudf": [2, 7, 18], "scalarvalu": 18, "scalarvari": 4, "scan": [2, 7, 13], "schema": [0, 2, 3, 4, 6, 7, 11, 13, 25, 36], "schema_infer_max_record": [2, 7, 11], "schema_nam": [4, 7], "scheme": 3, "scienc": 27, "score": 5, "script": 6, "search": 5, "second": [5, 23, 24, 26], "second_arrai": 5, "secret_access_kei": 35, "section": [20, 23, 25, 28, 29, 33, 35], "see": [2, 3, 4, 5, 7, 14, 15, 17, 18, 20, 21, 23, 24, 26, 31, 33], "seen": [18, 24], "select": [2, 3, 4, 5, 7, 11, 18, 23, 26, 27, 28, 31, 32, 33, 36, 38, 45], "select_column": 3, "self": [7, 14, 18, 31, 36, 44], "semi": [3, 28], "sensit": 3, "separ": 5, "seper": 5, "sequenc": 3, "serd": 15, "seri": 26, "serial": [15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 20, "session": [2, 6, 7, 31, 34, 36, 37], "session_id": 2, "sessionconfig": [2, 7, 34], "sessioncontext": [2, 3, 5, 7, 8, 13, 15, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "sessioncontextintern": 2, "set": [0, 2, 4, 5, 6, 7, 17, 18, 20, 21, 23, 28, 31, 34, 36], "set_custom_cell_build": 6, "set_custom_header_build": 6, "set_formatt": 6, "setvari": 4, "sever": 30, "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 20, "share": [6, 20, 21, 23, 26, 38], "shift_offet": 5, "shift_offset": 5, "shot": 18, "should": [2, 4, 5, 7, 8, 11, 13, 15, 21, 24, 29, 31, 33], "show": [3, 6, 20, 22, 23, 25, 26, 29, 31, 33, 35, 36, 37, 44], "show_truncation_messag": [6, 36], "shown": 6, "side": [4, 5, 7, 20], "sign": [4, 5, 7], "signific": 35, "significantli": 5, "signum": [4, 5, 7], "silver": 5, "similar": [5, 20, 23, 26, 33, 36], "similarto": 4, "simpl": [5, 21, 30, 42, 43], "simplest": [18, 31], "simpli": [3, 7, 18, 20, 21], "simplifi": 33, "sin": [4, 5, 7], "sinc": [3, 24, 31, 35], "sine": [4, 5, 7], "singl": [2, 3, 4, 5, 7, 13, 18, 24, 26, 31, 33], "sinh": [4, 5, 7], "size": [2, 3, 5, 7, 26, 36], "skip": [2, 3, 7, 11, 18], "skip_metadata": [2, 7, 11], "slice": 5, "slightli": 31, "slope": 5, "slow": 3, "slower": 3, "slowest": 31, "slowpok": 33, "small": 35, "smallest": [18, 24], "smooth_a": 31, "snappi": 3, "snorlax": 33, "so": [2, 3, 7, 20, 21, 30, 31, 33, 38, 44], "softwar": [7, 13, 20], "solid": 36, "some": [5, 18, 20, 21, 24, 27, 31, 33, 37, 44], "sometim": [2, 7, 20, 35], "soon": [5, 35], "sort": [2, 3, 4, 5, 7, 11, 24, 33], "sortexpr": [2, 3, 4, 5, 7], "sound": 20, "sourc": [2, 5, 7, 8, 9, 10, 11, 20, 21, 23, 36, 37, 38, 44], "sp": [22, 35, 37], "space": [4, 5, 7], "sparingli": 31, "special": [6, 18], "specif": [3, 4, 6, 7, 13, 25, 26, 27, 33, 36], "specifi": [2, 3, 4, 5, 7, 26, 27, 29, 31, 33], "speed": [3, 22, 24, 33, 35, 37], "sphinx": 19, "spill": [2, 7], "spillabl": [2, 7], "split": [5, 31], "split_part": 5, "sql": [2, 7, 13, 15, 17, 18, 22, 23, 26, 30, 32, 36], "sql_with_opt": 2, "sqlite": 17, "sqloption": [2, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 27, "squirtl": [22, 27, 33, 35, 37], "src": [4, 7, 21], "stabl": [18, 20, 31], "standard": [5, 20], "start": [4, 5, 7, 18, 26, 30, 33, 37], "start_ag": 26, "start_bound": [4, 7], "started_young": 26, "starts_with": 5, "state": [2, 6, 7, 18, 23, 31], "state_typ": [7, 18], "statement": [2, 4, 5, 7, 23, 45], "static": [4, 7, 13, 15, 17, 18], "statist": [3, 24, 25], "std": 25, "stddev": [5, 24], "stddev_pop": [5, 24], "stddev_samp": 5, "steel": 24, "step": [5, 20], "still": [31, 35], "stop": 5, "storag": 35, "store": [2, 4, 7, 12], "str": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18], "str_lit": 27, "straightforward": [39, 40], "stream": [2, 3, 7, 14, 20], "strftime": 5, "stride": 5, "string": [3, 4, 5, 6, 7, 13, 17, 18, 20, 21, 24, 25, 26, 28], "string1": 5, "string2": 5, "string_agg": [5, 24], "string_list": 5, "string_liter": [4, 7, 27], "string_view": [4, 7, 38], "strong": 22, "strpo": 5, "struct": [2, 4, 5, 7, 20, 28, 38], "structarrai": 38, "structur": [7, 13, 20], "style": [6, 20, 26], "style_provid": [6, 36], "styleprovid": [6, 36], "sub": [4, 7], "subfield": [4, 5, 7], "submit": 21, "submodul": 21, "subqueri": 4, "subqueryalia": 4, "subset": [3, 27, 30], "substr": 5, "substr_index": 5, "substrait": [7, 19], "subtract": [4, 7], "suffici": [2, 7], "suffix": 5, "suggest": 35, "sum": [5, 7, 18, 24, 31], "sum_bias_10": [7, 18], "summar": [3, 7, 18], "summari": [3, 24, 25], "support": [3, 4, 5, 6, 7, 13, 15, 17, 20, 29, 31, 35, 36], "supports_bounded_execut": [18, 31], "suppos": [5, 20, 24], "suppress_build_script_link_lin": 21, "sure": 21, "switch": 6, "symbol": 3, "sync": 21, "synchon": 20, "syntax": 5, "system": [2, 7, 20, 21], "t": [5, 18, 30], "t1": 18, "tabl": [0, 2, 3, 6, 7, 8, 9, 10, 11, 13, 18, 20, 23, 25, 27, 28, 29, 36, 37, 38, 40, 41, 43], "table_exist": 2, "table_id": 6, "table_nam": [8, 9, 10], "table_partition_col": [2, 7, 11], "table_provid": 2, "table_uuid": [6, 36], "tablefunct": [2, 7, 18], "tableprovid": [20, 44], "tableproviderexport": 2, "tablescan": 4, "tag": 6, "tail": 3, "take": [3, 6, 18, 20, 21, 24, 26, 31, 33], "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [2, 7], "target_partit": [2, 7], "task": [27, 38], "taxi": 23, "td": 36, "technic": 22, "tempor": 28, "temporari": [2, 7, 36], "temporarili": 36, "term": 33, "termin": 36, "terminologi": 20, "test": [5, 21], "text": [2, 5, 36], "textual": 27, "th": [5, 36], "than": [3, 4, 5, 7, 24, 31, 36], "thei": [8, 18, 20, 26, 31], "them": [5, 20, 21, 23, 25], "theme": 36, "then_expr": 4, "therefor": 3, "thi": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 44], "third": 23, "thoroughli": 20, "those": [3, 4, 7, 22, 24, 31, 35], "though": 31, "thread": 22, "three": [31, 33, 35], "through": [6, 20, 22, 28, 35, 36, 37], "thu": 18, "thusli": 20, "ticket": 21, "tie": 5, "tight": 20, "tile": 5, "time": [5, 18, 20, 21, 24, 26, 27, 31, 38], "time64": 5, "timestamp": [4, 5, 7, 27], "tip_amount": [23, 30], "tip_perc": 23, "tips_plus_tol": 30, "tlc": [23, 30], "tmp": [2, 7], "to_arrow_t": 3, "to_hex": [4, 5, 7], "to_panda": [3, 25, 27, 45], "to_polar": 3, "to_proto": [7, 13], "to_pyarrow": [7, 14], "to_pyarrow_dataset": 35, "to_pydict": [3, 32], "to_pylist": 3, "to_str": 44, "to_substrait_plan": 15, "to_timestamp": [5, 27], "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": [3, 5, 24], "tolls_amount": 30, "toml": 21, "top": 25, "topic": 35, "total": [3, 4, 5, 7, 22, 23, 26, 27, 35, 37], "total_amount": 23, "total_as_float": 27, "total_as_int": 27, "toward": 5, "tr": 36, "tracker": 5, "tradit": 21, "trait": [18, 20], "transact": [2, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 20, "transform": [3, 7, 13, 23], "translat": [5, 20], "treat": [4, 33], "treatment": [4, 7], "tree": [7, 13, 26], "trigger": 3, "trim": [4, 5, 7], "trip": [23, 30, 35], "trip_dist": [23, 30], "trivial": [3, 21], "tru": 3, "true": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 18, 21, 24, 26, 27, 30, 31, 33, 34, 36], "trunc": 5, "truncat": [5, 6, 24, 27, 30, 33, 36], "try": [2, 7, 11, 20], "trycast": 4, "tupl": [2, 3, 5, 7, 11, 18], "turn": [3, 4, 7, 20], "tutori": 37, "two": [3, 4, 5, 7, 13, 20, 24, 26, 29, 31, 33, 34], "type": [2, 3, 4, 5, 6, 7, 11, 18, 20, 21, 22, 24, 26, 27, 30, 31, 33, 35, 37], "type_class": 6, "typeerror": 6, "typic": [0, 4, 7, 14, 17, 18, 23], "typing_extens": [7, 14], "u": [20, 24, 26, 35], "udaf": [2, 7, 18, 22, 31], "udaf1": [7, 18], "udaf2": [7, 18], "udaf3": [7, 18], "udf": [2, 7, 18, 19, 22, 31], "udf4": [7, 18], "udtf": [7, 18], "udwf": [2, 7, 18], "udwf1": [7, 18], "udwf2": [7, 18], "udwf3": [7, 18], "ui": 6, "ultim": 21, "unari": [7, 13], "unbound": [2, 4, 7, 18, 33], "unchang": [3, 27], "uncompress": 3, "undefin": 21, "under": [2, 20], "underli": [4, 7, 20], "unfortun": 20, "unicod": [4, 5, 7], "union": [3, 4, 5], "union_distinct": 3, "uniqu": [2, 5, 6, 18, 24], "unit": [4, 7, 33], "unixtim": 5, "unknown": 4, "unlik": [4, 7, 33], "unmatch": 29, "unnest": [3, 4], "unnest_column": 3, "unnestexpr": 4, "unoptim": 3, "unpars": [7, 19], "unsaf": 20, "unspil": [2, 7], "until": 23, "unwrap": 44, "up": [7, 13, 18, 23, 26, 33], "updat": [2, 3, 7, 18, 31], "upon": [5, 20, 31], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 20, "urbango": 29, "url": 2, "us": [2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 42, 43, 44], "usag": [2, 3, 4, 5, 7, 18, 24, 33], "use_shared_styl": [6, 7, 36], "user": [0, 2, 3, 4, 5, 7, 8, 13, 14, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 35, 37], "user_defin": [2, 7, 19, 31], "uses_window_fram": [18, 31], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [6, 20, 33], "uuid": 5, "uv": 21, "v": 21, "v4": 5, "valid": [2, 4, 6, 7, 8, 9, 10, 18], "valu": [2, 3, 4, 5, 6, 7, 13, 18, 24, 26, 28, 29, 30, 31, 33, 36], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [3, 6, 7], "values_a": 31, "values_b": 31, "var": 5, "var_pop": [5, 24], "var_samp": [5, 24], "var_sampl": 5, "variabl": [2, 5, 7, 21, 26], "varianc": 5, "variant": [4, 7, 13, 29], "variant_nam": [4, 7], "varieti": [26, 31, 35], "variou": 37, "vastli": 21, "vec": 20, "vendorid": 30, "venomoth": 33, "venonat": 33, "venu": 27, "venufleur": 27, "venufleurmega": 27, "venusaur": [22, 27, 33, 35, 37], "venusaurmega": [22, 27, 33, 35, 37], "venv": 21, "verbos": 3, "veri": [39, 40], "verifi": 37, "verion": 35, "version": [20, 21, 35], "via": [2, 15, 20, 21, 22, 26, 29, 31, 35, 37, 44, 45], "view": [2, 25, 27, 28, 37], "view1": 32, "viewtabl": 3, "vink": 33, "virtual": [2, 7, 21], "visual": [7, 13, 23, 36], "volatil": [7, 18, 31], "voltorb": [24, 33], "vulpix": 24, "wa": [2, 7], "wai": [20, 21, 24, 35, 37], "wait": 20, "want": [20, 21, 24, 27, 31, 33, 44], "wartortl": [22, 35, 37], "water": [22, 24, 27, 35, 37], "we": [3, 20, 21, 23, 24, 26, 27, 29, 30, 31, 33, 34, 37, 38], "weedl": [22, 33, 35, 37], "weight": [5, 26], "welcom": [21, 37], "well": [2, 7, 20, 21], "were": [20, 26], "what": [20, 23], "whatev": 18, "when": [2, 4, 5, 6, 7, 11, 18, 20, 21, 22, 24, 26, 29, 31, 33, 34, 36, 42], "when_expr": 4, "whenev": 21, "where": [3, 4, 5, 7, 13, 24, 26, 27, 31, 32, 33], "wherea": 26, "wherev": 20, "whether": [2, 4, 5, 6, 7, 11, 18, 26], "which": [2, 3, 4, 5, 7, 18, 20, 21, 22, 24, 26, 30, 31, 33, 35, 38], "while": [18, 29], "white": 36, "who": 20, "whole": 24, "wide": [26, 34, 35], "width": [6, 36], "window": [2, 4, 5, 7, 18, 24, 28], "window_fram": [4, 5, 7, 33], "windowevalu": [7, 18, 31], "windowexpr": 4, "windowfram": [4, 5, 7, 33], "windowframebound": [4, 7], "windowudf": [2, 7, 18], "wish": [20, 31], "with_allow_ddl": [2, 7], "with_allow_dml": [2, 7], "with_allow_stat": [2, 7], "with_batch_s": [2, 7], "with_column": 3, "with_column_renam": 3, "with_create_default_catalog_and_schema": [2, 7, 34], "with_default_catalog_and_schema": [2, 7, 34], "with_disk_manager_dis": [2, 7], "with_disk_manager_o": [2, 7, 34], "with_disk_manager_specifi": [2, 7], "with_fair_spill_pool": [2, 7, 34], "with_greedy_memory_pool": [2, 7], "with_head": 3, "with_information_schema": [2, 7, 34], "with_parquet_prun": [2, 7, 34], "with_pretti": 17, "with_repartition_aggreg": [2, 7, 34], "with_repartition_file_min_s": [2, 7], "with_repartition_file_scan": [2, 7], "with_repartition_join": [2, 7, 34], "with_repartition_sort": [2, 7], "with_repartition_window": [2, 7, 34], "with_target_partit": [2, 7, 34], "with_temp_file_path": [2, 7], "with_unbounded_memory_pool": [2, 7], "within": [5, 9, 18, 24, 26], "within_limit": 3, "without": [4, 5, 7, 20, 21, 24, 27, 29, 30, 31], "won": 30, "word": [4, 5, 7], "work": [2, 5, 7, 23, 27, 30, 36, 37], "workflow": 21, "would": [4, 5, 8, 18, 20], "wrap": [2, 3, 20], "wrapper": [2, 7, 14, 21], "write": [3, 8, 15, 20, 31], "write_csv": 3, "write_json": 3, "write_parquet": 3, "written": [20, 22], "x": [5, 7, 18, 22, 27, 33, 35, 37, 45], "xor": 5, "y": [5, 18, 22, 27, 33, 35, 37], "year": 5, "years_in_posit": 26, "yellow": [23, 35], "yellow_tripdata_2021": [23, 30], "yet": 3, "yield": 5, "you": [2, 5, 7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "your": [7, 18, 20, 21, 24, 25, 30, 31, 36, 44], "yourself": 20, "z": [2, 7, 18], "zero": [3, 5, 22, 38], "zstandard": 3, "zstd": 3, "zubat": 24, "\u03c0": 5}, "titles": ["datafusion.catalog", "datafusion.col", "datafusion.context", "datafusion.dataframe", "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.udf", "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", "Introduction", "Arrow", "Avro", "CSV", "IO", "JSON", "Parquet", "Custom Table Provider", "SQL"], "titleterms": {"The": 20, "aggreg": [24, 31, 33], "altern": 20, "anti": 29, "api": 19, "approach": 20, "arrai": 26, "arrow": [20, 38], "attribut": [1, 4, 7, 12, 18], "avail": 33, "avro": 39, "base": 8, "basic": [25, 36], "boolean": 26, "build": 21, "cast": 27, "catalog": 0, "class": [0, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18], "code": 21, "col": 1, "column": [26, 30], "commit": 21, "common": 28, "concept": 23, "condit": 27, "configur": 34, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18], "context": [2, 23], "contextu": 36, "control": 36, "creat": [35, 36], "csv": 40, "custom": [35, 36, 44], "data": 35, "datafram": [3, 23, 35, 36], "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 38], "defin": 31, "delta": 35, "depend": 21, "detail": 20, "develop": 21, "displai": 36, "distinct": 24, "exampl": 22, "export": 38, "expr": 4, "express": [23, 26], "extens": 20, "ffi": 20, "file": 35, "fill_nul": 27, "filter": 24, "format": 36, "formatt": 36, "frame": 33, "from": [20, 38], "full": 29, "function": [5, 6, 7, 11, 24, 26, 27, 31, 33], "guidelin": 21, "handl": 27, "hook": 21, "how": 21, "html": 36, "html_formatt": 6, "iceberg": 35, "implement": 20, "import": 38, "improv": 21, "inner": 29, "input": [8, 9, 10], "inspir": 20, "instal": [21, 22, 37], "introduct": [21, 37], "io": [11, 41], "issu": 20, "join": 29, "json": 42, "lake": 35, "left": 29, "librari": 35, "liter": 26, "local": 35, "locat": 10, "manag": 36, "mathemat": 27, "memori": [35, 36], "miss": 27, "modul": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18], "null": [24, 33], "object": 35, "object_stor": 12, "oper": [25, 28], "optim": 36, "option": 31, "order": [24, 33], "other": [27, 35], "overview": 36, "packag": [7, 9], "paramet": [24, 33], "parquet": 43, "partit": 33, "perform": 36, "plan": 13, "pre": 21, "primari": 20, "provid": [35, 36, 44], "python": [20, 21, 22], "record_batch": 14, "refer": 19, "regist": 32, "render": 36, "return": [4, 5, 7], "run": 21, "rust": 21, "scalar": 31, "select": 30, "semi": 29, "separ": 21, "session": 23, "set": [24, 33], "share": 36, "sourc": 35, "speed": 21, "sql": 45, "statu": 20, "store": 35, "string": 27, "struct": 26, "style": 36, "submodul": [7, 9], "substrait": 15, "tabl": [31, 35, 44], "tempor": 27, "treatment": [24, 33], "udf": 16, "udwf": 31, "unpars": 17, "updat": 21, "usag": 36, "user": 31, "user_defin": 18, "valu": 27, "view": 32, "window": [31, 33], "work": 20}}) \ 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]], "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"]], "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"]], "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, 34, 36, 37, 44, 45], "007bff": 36, "01": [22, 26, 29], "01t00": 26, "04023": 5, "05": [26, 29], "06": [26, 29], "07": 26, "08": 26, "09": [22, 26], "1": [2, 4, 5, 7, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 45], "10": [3, 4, 5, 7, 17, 21, 22, 23, 25, 26, 29, 30, 31, 32, 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, 24, 34, 37], "107": 23, "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], "12t11": 26, "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], "160": 45, "161": 45, "162": 45, "163": 45, "165": [26, 45], "168": 24, "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, "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], "333": 24, "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, "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, "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, "473788797z": 26, "48": [21, 23, 34, 37], "484": 24, "49": [21, 26, 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], "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], "554": 24, "56": 23, "57": 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], "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], "798": 24, "799": 24, "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, "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, "98": [23, 45], "9965568684803": 24, "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, 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": 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, 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, 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], "achiev": 21, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 19, "across": [3, 17, 19, 25, 36], "act": [7, 13], "activ": [19, 20], "actual": [2, 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, 34, 35], "addition": [19, 22], "adhoc": 20, "adopt": 19, "advanc": [2, 7, 34, 35, 36], "advantag": [19, 20, 21], "affect": [17, 23, 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, 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, 34, 35, 36], "alloc": 2, "allow": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 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, 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, "approach": [5, 23, 25, 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, 34, 35, 36, 37, 38], "arbitrari": [2, 5], "arc": [4, 5, 7, 19, 30, 44], "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], "attack": [21, 23, 26, 32, 34, 37, 45], "attempt": [1, 2, 7, 17, 19, 20], "auto": 18, "autoapi": 18, "automat": [1, 7, 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, 34], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 17, 30], "basic": [22, 27, 29, 30, 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], "best": [1, 2, 7, 19], "beta": 34, "better": [2, 7, 36], "between": [1, 4, 5, 7, 17, 19, 21, 22, 28, 30, 32], "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], "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], "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, 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], "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, "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, 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, 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, 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], "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], "compil": [19, 25], "complet": [4, 5, 7, 8, 19, 20, 30, 34, 35, 36, 44], "complex": [2, 21, 26], "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], "concis": 20, "concurr": [1, 7], "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], "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], "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, 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, 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, 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, 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], "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, 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, 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, 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, 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, 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, "div": 36, "divid": 5, "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], "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, 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], "end_bound": [4, 7], "ends_with": 5, "engin": [1, 7, 21, 22], "enough": 17, "ensur": [3, 8], "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, 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, 35], "evaluate_al": [7, 17, 30], "evaluate_all_with_rank": [17, 30], "even": [1, 7, 19, 28, 36], "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], "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], "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, 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, 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, "func": [1, 2, 7, 17, 30], "function": [1, 2, 4, 12, 14, 17, 18, 19, 22, 24, 27, 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, "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], "happen": [20, 38], "has_head": [1, 7, 11], "has_mor": [2, 3, 36], "hash": [2, 4, 5, 7], "haskel": 24, "have": [1, 2, 5, 7, 11, 15, 17, 19, 20, 21, 23, 28, 30, 32, 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, 36], "helper": [7, 17], "henc": 17, "here": [2, 5, 7, 19, 26, 29, 30, 32, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 34, "high": [4, 7], "higher": [2, 4, 7], "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, 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, 34], "idl": [2, 7], "idx": [17, 30], "ignor": [5, 7, 17, 20, 23, 32], "ignore_nul": [23, 32], "ilik": 4, "immut": [7, 17, 30], "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, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [1, 7, 17, 30, 34, 36], "in_list": [5, 26], "includ": [1, 2, 3, 4, 7, 19, 22, 23, 26, 28, 36], "include_rank": [17, 30], "inclus": [1, 4, 5, 7], "incorpor": 30, "increas": [1, 2, 3, 7, 23], "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, 35], "information_schema": [1, 7], "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], "instanc": [1, 3, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19], "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, "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], "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, 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, 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, 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, "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, 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, "local": [1, 19, 20], "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, 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], "mani": [19, 23, 30, 35, 36], "manipul": [1, 7, 26, 35], "mankei": 32, "manner": 19, "manual": 20, "map": 2, "map_err": 44, "match": [2, 4, 5, 26, 28], "materi": 35, "math": 23, "mathemat": [27, 29, 35], "maturin": 20, "max": [5, 23, 24], "max_cell_length": [3, 7, 36], "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], "medal": 5, "median": [5, 23, 24], "member": 20, "memoiz": 17, "memori": [0, 1, 2, 3, 7, 13, 17, 21], "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], "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, 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": 34, "necessari": [19, 34], "need": [0, 1, 2, 3, 4, 7, 11, 17, 19, 20, 30, 32, 34, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "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], "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, 36], "numebr": 5, "numer": [2, 4, 5, 7], "nvl": 5, "o": [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, "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, 34, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 20, "optim": [2, 17, 19], "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, 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], "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, "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23], "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], "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, 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, "prece": 5, "preced": [4, 7, 17], "preceed": 32, "precis": 5, "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], "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], "produc": [5, 7, 13, 15, 17, 19, 32], "product": [5, 35], "program": 19, "programmat": [7, 13], "project": [2, 4, 7, 13, 19, 20, 35, 38], "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, 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, 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, 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, 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], "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, 33, 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, 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, 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], "remov": [0, 1, 2, 4, 5, 7, 23], "renam": 2, "renamed_ag": 25, "render": 3, "repartit": [1, 2, 4, 7], "repartition_by_hash": 2, "repeat": [5, 25], "repeated_arrai": 25, "replac": [2, 5, 7, 26], "repo": 20, "report": [2, 20], "repositori": [19, 30, 34], "repr": 3, "repr_row": [3, 36], "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 22, 25, 30, 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, 34], "reserv": [1, 7], "reset": [3, 36], "reset_formatt": [3, 36], "resolv": [20, 32], "resourc": 19, "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, 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, 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, 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, "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, 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, 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, 34, 35, 36, 37, 44], "show_truncation_messag": [3, 36], "shown": 3, "side": [4, 5, 7, 19], "sign": [4, 5, 7], "signific": 34, "significantli": 5, "signum": [4, 5, 7], "silver": 5, "similar": [5, 19, 22, 25, 32], "similarto": 4, "simpl": [5, 20, 29, 42, 43], "simplest": [17, 30], "simpli": [2, 7, 17, 19, 20, 34, 36], "simplifi": 32, "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, 34], "sinh": [4, 5, 7], "size": [1, 2, 5, 7, 25, 36], "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, "slowest": 30, "slowpok": 32, "small": 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, 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, 35, 36], "specifi": [1, 2, 4, 5, 7, 25, 26, 28, 30, 32], "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], "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": 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], "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, "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], "suffix": 5, "suggest": 34, "sum": [5, 7, 17, 23, 30, 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, "system": [1, 2, 7, 19, 20], "t": [5, 17, 29], "t1": 17, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 17, 19, 22, 24, 26, 27, 28, 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], "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7], "target_partit": [1, 7], "task": [26, 38], "taxi": 22, "td": 36, "technic": 21, "techniqu": 34, "tempor": 27, "temporari": [1, 7, 36], "temporarili": 36, "temporary_column": 35, "term": 32, "terminologi": 19, "test": [5, 20, 34], "text": [1, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 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, 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, 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], "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, 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], "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, 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, 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], "uuid": 5, "uv": 20, "v": 20, "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, "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, "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], "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], "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], "white": 36, "who": 19, "whole": 23, "wide": [25, 33, 34, 35], "width": [3, 36], "window": [1, 4, 5, 7, 17, 23, 27], "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, 35, 36, 37], "workflow": 20, "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, 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], "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], "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, "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, "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": 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, "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, "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/basics.html b/user-guide/basics.html index 3596aa2c1..c0247bdb3 100644 --- a/user-guide/basics.html +++ b/user-guide/basics.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -509,7 +516,7 @@

    DataFrameSessionContext, such as read_csv, and can then be modified by calling the transformation methods, such as filter(), select(), aggregate(), and limit() to build up a query definition.

    -

    For more details on working with DataFrames, including visualization options and conversion to other formats, see DataFrames.

    +

    For more details on working with DataFrames, including visualization options and conversion to other formats, see DataFrames.

    Expressions

    diff --git a/user-guide/common-operations/aggregations.html b/user-guide/common-operations/aggregations.html index f35abc6c5..ca33f66bf 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -603,16 +610,16 @@

    Distinct +----------+--------------------------------------------------+ | Type 1 | Type 2 List | +----------+--------------------------------------------------+ -| Bug | [, Grass, Flying, Poison] | -| Poison | [, Ground, Flying] | -| Electric | [Flying, Steel, ] | +| Bug | [Poison, Grass, Flying, ] | +| Poison | [Ground, , Flying] | +| Electric | [, Flying, Steel] | | Fairy | [] | -| Normal | [Flying, Fairy, ] | +| Normal | [Flying, , Fairy] | | Ice | [Flying, Psychic] | -| Grass | [Psychic, , Poison] | -| Fire | [Flying, , Dragon] | -| Water | [Ice, Flying, , Fighting, Dark, Psychic, Poison] | -| Ground | [, Rock] | +| Grass | [Poison, Psychic, ] | +| Fire | [Dragon, Flying, ] | +| Water | [Poison, , Ice, Psychic, Dark, Fighting, Flying] | +| Ground | [Rock, ] | +----------+--------------------------------------------------+ Data truncated. @@ -627,15 +634,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Poison, Grass, Flying] | -| Poison | [Ground, Flying] | +| Bug | [Grass, Flying, Poison] | +| Poison | [Flying, Ground] | | Electric | [Flying, Steel] | -| Normal | [Flying, Fairy] | -| Ice | [Flying, Psychic] | -| Grass | [Psychic, Poison] | +| Normal | [Fairy, Flying] | +| Ice | [Psychic, Flying] | +| Grass | [Poison, Psychic] | | Fire | [Flying, Dragon] | -| Water | [Dark, Poison, Psychic, Flying, Ice, Fighting] | -| Rock | [Flying, Water, Ground] | +| Water | [Flying, Ice, Psychic, Poison, Fighting, Dark] | +| Rock | [Ground, Water, Flying] | | Ghost | [Poison] | +----------+------------------------------------------------+ Data truncated. @@ -646,15 +653,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Grass, Flying, Poison] | +| Bug | [Flying, Poison, Grass] | | Poison | [Ground, Flying] | -| Electric | [Steel, Flying] | +| Electric | [Flying, Steel] | | Fairy | | | Normal | [Fairy, Flying] | -| Ice | [Psychic, Flying] | -| Grass | [Psychic, Poison] | +| Ice | [Flying, Psychic] | +| Grass | [Poison, Psychic] | | Fire | [Dragon, Flying] | -| Water | [Ice, Flying, Poison, Dark, Psychic, Fighting] | +| Water | [Fighting, Flying, Dark, Ice, Psychic, Poison] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index 3657b7419..14b992d36 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -439,11 +446,11 @@

    Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 316 | A | -| 2 | ruby | 698 | A | -| 3 | java | 568 | B | -| 4 | haskell | 804 | C | -| 5 | go | 513 | B | +| 1 | python | 105 | A | +| 2 | ruby | 554 | A | +| 3 | java | 798 | B | +| 4 | haskell | 168 | C | +| 5 | go | 799 | B | +-----+---------+--------+--------+ @@ -454,8 +461,8 @@

    Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 316 | A | -| 2 | ruby | 698 | A | +| 1 | python | 105 | A | +| 2 | ruby | 554 | A | +-----+--------+--------+--------+ @@ -473,11 +480,11 @@

    Basic Operations
    In [8]: df.to_pandas()
     Out[8]: 
        nrs    names  random groups
    -0    1   python     316      A
    -1    2     ruby     698      A
    -2    3     java     568      B
    -3    4  haskell     804      C
    -4    5       go     513      B
    +0    1   python     105      A
    +1    2     ruby     554      A
    +2    3     java     798      B
    +3    4  haskell     168      C
    +4    5       go     799      B
     

    describe() shows a quick statistic summary of your data:

    @@ -489,11 +496,11 @@

    Basic Operations+------------+--------------------+-------+-------------------+--------+ | count | 5.0 | 5 | 5.0 | 5 | | null_count | 0.0 | 0 | 0.0 | 0 | -| mean | 3.0 | null | 579.8 | null | -| std | 1.5811388300841898 | null | 186.0301050905471 | null | -| min | 1.0 | go | 316.0 | A | -| max | 5.0 | ruby | 804.0 | C | -| median | 3.0 | null | 568.0 | null | +| mean | 3.0 | null | 484.8 | null | +| std | 1.5811388300841898 | null | 333.9965568684803 | null | +| min | 1.0 | go | 105.0 | A | +| max | 5.0 | ruby | 799.0 | C | +| median | 3.0 | null | 554.0 | null | +------------+--------------------+-------+-------------------+--------+ diff --git a/user-guide/common-operations/expressions.html b/user-guide/common-operations/expressions.html index 291245092..d9c4d3512 100644 --- a/user-guide/common-operations/expressions.html +++ b/user-guide/common-operations/expressions.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index 61123ed4d..c3863d4ae 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -549,16 +556,16 @@

    Temporal +--------------------------------+ | now() | +--------------------------------+ -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | -| 2025-05-28T18:37:38.343210340Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +| 2025-07-12T11:49:57.473788797Z | +--------------------------------+ Data truncated. diff --git a/user-guide/common-operations/index.html b/user-guide/common-operations/index.html index af2c61f84..aa8a5bfbf 100644 --- a/user-guide/common-operations/index.html +++ b/user-guide/common-operations/index.html @@ -35,7 +35,7 @@ - + @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -482,11 +489,11 @@

    Common Operations +

    previous

    -

    DataFrames

    +

    HTML Rendering in Jupyter

    diff --git a/user-guide/common-operations/joins.html b/user-guide/common-operations/joins.html index 3dc655715..56ae4eaaa 100644 --- a/user-guide/common-operations/joins.html +++ b/user-guide/common-operations/joins.html @@ -117,17 +117,29 @@ Data Sources

  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/common-operations/select-and-filter.html b/user-guide/common-operations/select-and-filter.html index 29f8d8a15..180cd0c9f 100644 --- a/user-guide/common-operations/select-and-filter.html +++ b/user-guide/common-operations/select-and-filter.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/common-operations/udf-and-udfa.html b/user-guide/common-operations/udf-and-udfa.html index a5edf506f..45ac30e2d 100644 --- a/user-guide/common-operations/udf-and-udfa.html +++ b/user-guide/common-operations/udf-and-udfa.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/common-operations/views.html b/user-guide/common-operations/views.html index be6a9584f..118a2ea93 100644 --- a/user-guide/common-operations/views.html +++ b/user-guide/common-operations/views.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/common-operations/windows.html b/user-guide/common-operations/windows.html index dcd5e5058..4ac5a0952 100644 --- a/user-guide/common-operations/windows.html +++ b/user-guide/common-operations/windows.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/configuration.html b/user-guide/configuration.html index 5cd45975a..f62b79b39 100644 --- a/user-guide/configuration.html +++ b/user-guide/configuration.html @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html index f1be5894f..a2a08fc28 100644 --- a/user-guide/data-sources.html +++ b/user-guide/data-sources.html @@ -34,7 +34,7 @@ - + @@ -117,17 +117,29 @@ Data Sources
  • -
  • - +
  • + DataFrames + + +
  • Common Operations - -
  • -
  • - - datafusion.col - -
  • datafusion.context @@ -295,6 +302,11 @@ datafusion.dataframe
  • +
  • + + datafusion.dataframe_formatter + +
  • datafusion.expr @@ -314,8 +326,8 @@ datafusion.input - -
  • -
  • - - datafusion.udf - -
  • datafusion.unparser @@ -400,40 +407,59 @@
  • +
  • + + + + SessionContext._convert_file_sort_order() + + + +
  • @@ -1734,6 +1743,15 @@

    Module Contents +
    +static _convert_file_sort_order(file_sort_order: collections.abc.Sequence[collections.abc.Sequence[datafusion.expr.SortKey]] | None) list[list[datafusion._internal.expr.SortExpr]] | None
    +

    Convert nested SortKey sequences into raw sort expressions.

    +

    Each SortKey can be a column name string, an Expr, or a +SortExpr and will be converted using +datafusion.expr.sort_list_to_raw_sort_list().

    +
    +
    static _convert_table_partition_cols(table_partition_cols: list[tuple[str, str | pyarrow.DataType]]) list[tuple[str, pyarrow.DataType]]
    @@ -1991,7 +2009,7 @@

    Module Contents
    -read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) datafusion.dataframe.DataFrame
    +read_parquet(path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: collections.abc.Sequence[collections.abc.Sequence[datafusion.expr.SortKey]] | None = None) datafusion.dataframe.DataFrame

    Read a Parquet source into a Dataframe.

    Parameters:
    @@ -2008,7 +2026,9 @@

    Module Contentsstr), an expression +(Expr), or a SortExpr.

  • Returns:
    @@ -2116,7 +2136,7 @@

    Module Contents
    -register_listing_table(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.parquet', schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.Expr | datafusion.expr.SortExpr]] | None = None) None
    +register_listing_table(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_extension: str = '.parquet', schema: pyarrow.Schema | None = None, file_sort_order: collections.abc.Sequence[collections.abc.Sequence[datafusion.expr.SortKey]] | None = None) None

    Register multiple files as a single table.

    Registers a Table that can assemble multiple files from locations in an ObjectStore @@ -2129,7 +2149,9 @@

    Module Contentsstr), an expression +(Expr), or a SortExpr.

    @@ -2152,7 +2174,7 @@

    Module Contents
    -register_parquet(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None) None
    +register_parquet(name: str, path: str | pathlib.Path, table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, parquet_pruning: bool = True, file_extension: str = '.parquet', skip_metadata: bool = True, schema: pyarrow.Schema | None = None, file_sort_order: collections.abc.Sequence[collections.abc.Sequence[datafusion.expr.SortKey]] | None = None) None

    Register a Parquet file as a table.

    The registered table can be referenced from SQL statement executed against this context.

    @@ -2170,7 +2192,9 @@

    Module Contentsstr), an expression +(Expr), or a SortExpr.

    diff --git a/autoapi/datafusion/dataframe/index.html b/autoapi/datafusion/dataframe/index.html index 965fe819c..3c61a0aae 100644 --- a/autoapi/datafusion/dataframe/index.html +++ b/autoapi/datafusion/dataframe/index.html @@ -1015,42 +1015,6 @@ +

    For example:

    +
    lead(col("b"), order_by="ts")
    +
    +
    @@ -4799,7 +4834,7 @@

    Returns:
    -datafusion.functions.nth_value(expression: datafusion.expr.Expr, n: int, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) datafusion.expr.Expr
    +datafusion.functions.nth_value(expression: datafusion.expr.Expr, n: int, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) datafusion.expr.Expr

    Returns the n-th value in a group of values.

    This aggregate function will return the n-th value in the partition.

    If using the builder functions described in ref:_aggregation this function ignores @@ -4810,16 +4845,21 @@

    Returns:

    expression – Argument to perform bitwise calculation on

  • n – Index of value to return. Starts at 1.

  • filter – If provided, only compute against rows for which the filter is True

  • -
  • order_by – Set the ordering of the expression to evaluate

  • +
  • order_by – Set the ordering of the expression to evaluate. Accepts +column names or expressions.

  • null_treatment – Assign whether to respect or ignore null values.

  • +

    For example:

    +
    df.select(nth_value(col("a"), 2, order_by="ts"))
    +
    +
    -datafusion.functions.ntile(groups: int, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None) datafusion.expr.Expr
    +datafusion.functions.ntile(groups: int, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) datafusion.expr.Expr

    Create a n-tile window function.

    This window function orders the window frame into a give number of groups based on the ordering criteria. It then returns which group the current row is assigned to. @@ -4842,10 +4882,15 @@

    Returns:
    • groups – Number of groups for the n-tile to be divided into.

    • partition_by – Expressions to partition the window frame on.

    • -
    • order_by – Set ordering within the window frame.

    • +
    • order_by – Set ordering within the window frame. Accepts +column names or expressions.

    +

    For example:

    +
    ntile(3, order_by="points")
    +
    +
    @@ -4883,7 +4928,7 @@

    Returns:
    -datafusion.functions.percent_rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None) datafusion.expr.Expr
    +datafusion.functions.percent_rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) datafusion.expr.Expr

    Create a percent_rank window function.

    This window function is similar to rank() except that the returned values are the percentage from 0.0 to 1.0 from first to last. Here is an example of a @@ -4903,10 +4948,15 @@

    Returns:Parameters:
    • partition_by – Expressions to partition the window frame on.

    • -
    • order_by – Set ordering within the window frame.

    • +
    • order_by – Set ordering within the window frame. Accepts +column names or expressions.

    +

    For example:

    +
    percent_rank(order_by="points")
    +
    +
    @@ -4948,11 +4998,11 @@

    Returns:
    -datafusion.functions.rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None) datafusion.expr.Expr
    +datafusion.functions.rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) datafusion.expr.Expr

    Create a rank window function.

    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.

    @@ -4971,10 +5021,15 @@

    Returns:Parameters:
    • partition_by – Expressions to partition the window frame on.

    • -
    • order_by – Set ordering within the window frame.

    • +
    • order_by – Set ordering within the window frame. Accepts +column names or expressions.

    +

    For example:

    +
    rank(order_by="points")
    +
    +
    @@ -5217,7 +5272,7 @@

    Returns:
    -datafusion.functions.row_number(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None) datafusion.expr.Expr
    +datafusion.functions.row_number(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) datafusion.expr.Expr

    Create a row number window function.

    Returns the row number of the window function.

    Here is an example of the row_number on a simple DataFrame:

    @@ -5235,10 +5290,15 @@

    Returns:Parameters:
    • partition_by – Expressions to partition the window frame on.

    • -
    • order_by – Set ordering within the window frame.

    • +
    • order_by – Set ordering within the window frame. Accepts +column names or expressions.

    +

    For example:

    +
    row_number(order_by="points")
    +
    +
    @@ -5358,10 +5418,10 @@

    Returns:
    -datafusion.functions.string_agg(expression: datafusion.expr.Expr, delimiter: str, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None) datafusion.expr.Expr
    +datafusion.functions.string_agg(expression: datafusion.expr.Expr, delimiter: str, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) datafusion.expr.Expr

    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 the options distinct and null_treatment.

    @@ -5371,10 +5431,15 @@

    Returns:

    expression – Argument to perform bitwise calculation on

  • delimiter – Text to place between each value of expression

  • filter – If provided, only compute against rows for which the filter is True

  • -
  • order_by – Set the ordering of the expression to evaluate

  • +
  • order_by – Set the ordering of the expression to evaluate. Accepts +column names or expressions.

  • +

    For example:

    +
    df.select(string_agg(col("a"), ",", order_by="b"))
    +
    +
    @@ -5573,7 +5638,7 @@

    Returns:
    -datafusion.functions.window(name: str, args: list[datafusion.expr.Expr], partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.Expr | datafusion.expr.SortExpr] | datafusion.expr.Expr | datafusion.expr.SortExpr | None = None, window_frame: datafusion.expr.WindowFrame | None = None, ctx: datafusion.context.SessionContext | None = None) datafusion.expr.Expr
    +datafusion.functions.window(name: str, args: list[datafusion.expr.Expr], partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None, window_frame: datafusion.expr.WindowFrame | None = None, filter: datafusion.expr.Expr | None = None, distinct: bool = False, ctx: datafusion.context.SessionContext | None = None) datafusion.expr.Expr

    Creates a new Window function expression.

    This interface will soon be deprecated. Instead of using this interface, users should call the window functions directly. For example, to perform a @@ -5581,6 +5646,10 @@

    Returns:
    df.select(functions.lag(col("a")).partition_by(col("b")).build())
     
    +

    The order_by parameter accepts column names or expressions, e.g.:

    +
    window("lag", [col("a")], order_by="ts")
    +
    +

    diff --git a/autoapi/datafusion/index.html b/autoapi/datafusion/index.html index 390ae840d..a6b550708 100644 --- a/autoapi/datafusion/index.html +++ b/autoapi/datafusion/index.html @@ -1929,42 +1929,6 @@
    -
  • allow_single_file_parallelism (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • allow_single_file_parallelism (datafusion.dataframe.ParquetWriterOptions attribute)
  • AmazonS3 (in module datafusion.object_store) @@ -1113,38 +1115,38 @@

    B

  • bit_xor() (in module datafusion.functions)
  • -
  • bloom_filter_enabled (datafusion.dataframe.ParquetColumnOptions attribute), [1] +
  • bloom_filter_enabled (datafusion.dataframe.ParquetColumnOptions attribute)
  • -
  • bloom_filter_fpp (datafusion.dataframe.ParquetColumnOptions attribute), [1] +
  • bloom_filter_fpp (datafusion.dataframe.ParquetColumnOptions attribute)
  • -
  • column_index_truncate_length (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • column_index_truncate_length (datafusion.dataframe.ParquetWriterOptions attribute)
  • @@ -1311,22 +1313,18 @@

    C

  • (datafusion.expr.Expr method)
  • -
  • column_specific_options (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • column_specific_options (datafusion.dataframe.ParquetWriterOptions attribute)
  • Compression (class in datafusion.dataframe)
  • -
  • compression (datafusion.dataframe.ParquetColumnOptions attribute), [1] +
  • compression (datafusion.dataframe.ParquetColumnOptions attribute)
  • concat() (in module datafusion.functions) @@ -1401,10 +1399,10 @@

    C

  • CreateCatalogSchema (in module datafusion.expr)
  • -
  • created_by (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • created_by (datafusion.dataframe.ParquetWriterOptions attribute)
  • CreateExternalTable (in module datafusion.expr) @@ -1435,16 +1433,16 @@

    C

    D

    diff --git a/objects.inv b/objects.inv index e1fa1a7374b9965764d9053e9351ef3d5796b99d..827143a5eafab807d6c5bf70080ef7a6496196d2 100644 GIT binary patch delta 8521 zcmV-PA-3L~M2bU@ihsDZ$KU-ayjIVv)lS;!I;(HFI8#qEiEAe_r+wjqNJzp21Q-C6 zrF{B>3rSJ3B!a}=^1RGABKZ4*#DyEc#zsL5S=5?Iab0cyQOcs`^!hK?q&AXN?9WAa z`Oi!gbTeC-lK&|ryZN8%o2y-d+3P&7%bF7-m1E_cXnp;|0DtNGM%qzNq^FjB`u}eX1(W4;|WqyosI#2PFPNs_?YkBKX&8}&U|ip2j~sG1gR4MXd)l~iL2S1_10i3Px$Z(5pM zq@r}rSTchN07P=p8zKM@so9uQ^F(QCPUg(OG>EzFh08=nPJ|RJC*03IB*Rp}gzXlS zyN#Ua)RvUbRWgDyo{Crz1ykCNL~=KM1%y+n1b@lvQh-1}Dqpfq0ALd2GPTYXbg3v! zeUx_22jIN|nG_Jl1l?5W1eI>VE^IrLijmaLVZpfTcLfNh<^b8T-AgKj+jpD%ja+ak zlXK!`C~Ltsh9x%wCYZ@dYVBh>6VgBwl_Nn=(kma+->FKRTAhJ>(YWoXAVyLR2c*~Y zEPuGC6CjUg8+mfq)ljl0W>%Ty5WnJ-$V{z^TrPk3OFH9KGU6$@8|47DeOdgNNN{~j zW)vl+q{%~DX^mH)#voN;?cjN;Jt5c0<+NM0O3qESwYQ4QIqRf;t`sR45ve_eqW1mh z1AzSa_jJf#{}&)9KmL%~ zEo-(Eb#f6U&xZj_hiRESwV}VIBW#Tq%M8YzNT1*XnBOxpThUEAWKHbgF!_54(4llI zHVKTns*=Bw%?p9(*`Dlm`IIeG66%9ox=GI@N2MMEVDWa32I8dDCnmcT9f4&_MSrT* zntg|*rn)JeW+wan_0bUiPkkN}Rc$m3E8XGgfR@~$-4pe#rsl1m?fq0agIP~*c*kI~ zIhVFT!W33U1(|bNBsHI5l|@w{D~MtZuaL{KQdGBF6=2~7%iSMDZSe|$id+`f^nfS3 z4GC`IC)bd<|4lg)38>cZ!DeM9M*?10q%NIBCbc-~Q}{}~0K>VHPT zj<=uORd|_ZVawm;ym3TM4DHQ+ps4AJ=4`=oJ2vhr8?ca@45CFd+X2gV*KPe>(#-il zcqd>xx+s}Jl+x@wMH4~k3r}kJH;4H=kp1pHxg;B3=1V2(%0B~&1}p0_n}64f1y!~R zE1FAXYces`EYw-$Hio#l&Js_%?VNiL>$@L?&{FkRR%OARs6RgsEQ0^R>}#O+qrNmk zl|ZV7p}aFUvzlsvJ@^Xz#$|T0RncS2`V9gqW3!$A==9M;kN4QM(A38bB)6r)7f1$} zJ-<(bZVWUOBct&7bVNv=nt!MDjt|z3U?sg3>o+yy1)aW==NZY`U1GtO*2=RbBf=yo zTs~)hakXIjYgQ6rzwXNYqw8fSzTXIy6i=!ceq*L0JjQ}Bhj$J!m6RNu?|ie0ZPsjX zMUgPHtlFVm%0lT0d@bhIur93q1M(1$|Nf9Vu-zeM&9DWgJ@vT$$$!IGxhO!Mb`M#C zBYk89x8|PE5+8HIiAsrQ&=CNF8T47HbLBl&U8F@Z*rA|880?5m-X>zg4BcD*ftg-{ zeG2H;YM-pB0eaNX3id57y?b#35?+J$78SV&b8?}UPYufixM ztL)gT8T^B>ZAZ}g&wr36^hf(GK@sua)shMLs`X4o=LGRVewPf9?i>v8=wS&LmT!n! zx=PxLB+x%Q3wv^p>+c5m#s!Z5D7jygI@rMaY7?XcRS1+_50l0*?OUGw1@fHtweS<5 zY30>Y0PLJY9!Ndd@tQA~e|uSyfiVEKUoSflPxG%kkf;l@fPX9TS&N&Nx8Hmx^uBc? znN)Xr41kjE(_CNXU0mD-hLo=O5bAxCGd~1`gL)SsNa&%H&*T~tpebXZjsVa%^jR>q z#j~2G+q|@-PT?FCqDScQUBziFn7cJF?@yB@I>7bFb@8--sfu7D%^k7L z+%!%95&XtWjEm?uo*xzZ zZafzKz2I^)oY!)%tPgJR zy?WUVKSA@~bd%6^rJ|&)r)qBOO_q!AeXE+-eE3Ta-0KQvfLzxx_H%S2fHcADGqm& zbjCU0B}5B)O3;W=UF8 zUCzKnN4cQEsz$k_fk{TWsDY_PxvYVyMY^yh>5X=2o1)eZyn#P8{-4ovNs|Ta@BX}& zP`hmn$b4ite8DiE*FUj{qZQ9AcGWeJA2~faS*7`qx`Z*od%%P;KljK(M3XM84vw_h zAb(j@{-2|l4yFqEV9nSXBDfkVjxFR51HJ_!a6+i;{T?N-9Yh@CRtRXp3*cw|G z9RXW|$E+Jo)mU;lx1Cngub@cS-m=KZdN_u2nnJGExB|axDR32zK(x$aT6=;Xc;+@_$lQPtJd*xyiJV>H=!`jkXcm4=01KccId1 zMmiU3z%hq@L#SLt#9Tz>=>jTiM)AyB9sZfI0#D)_$7F|d5PDJ9P=s)s{1`u|Xbtc4 zg1E?kg1^7Szu$*JOi1m|Vw`bW=@JgRt#nCeZ}%f~o_SG6@iE-ln}<)IKioykR)0*F z`02lQ_oxCN{`)sT8=zuZ6EK0e;QLlye(<7Zp}KjhYC z&6&s_sdx6Tm_4TxsS`Z5rYl7s-9B9+Zv9{~-{W0sG>LYFkzxtt#Ev%b z;KQcCWVYm-=Gge%63wu0)pV&^pnp9_+ZWm9?5iuDj?QhLjaHSS!Zb~WM;_KTnXhDp z#ipB_R>pZ1;VJm_k6v(Fe3eVIyP)Xo`DcYM#lb-a)I5I0+9xI`MQoxExG4F%Lp~%qe;R zdMPLCLCTLhoeo0yV&4P6Q~3b&vA;(Er}x3=!ky>`n4hFm{s8hZ?SJGy2;rA8OwvvW z1kj&wY9N&An3DuYY3_%1igIz=-7>=2ZFke`E#>@uUp29IbS|2iY{wT)E}aRf=lgO z7TZ5YPMpgwVZwj$$$yCT6Vyz-bhXKAZR`lo)t8X3keS%e1Xg~+YxzUuD5MB)Xia!c zU#_s6=jk6MA6?iPtzR}Hzmqj_j%n2kwrF>T#4eeB$@3 zv0Nw{T?P0hgntr7fBA=kvu?1k*N>yuyl46FM{X!KLIUPRu06>3DI4j($#=MCweL2NSYG&Bl9jIt7p*-nqiFDa#y$80StxuPh zL=~i)YH+2rxaE2^H@@EM|G!A~nHfS3lL z$RiFXisMw<&k}&+y|sF$*#hEr2Q)%JZ#N;Ve|It%1Qf2@+~>V%77rnqcP=!>} z2>K3xZGU!|rm@~p=OLSed==j{8~%YF^IdN{O(Ln}kL}?a05l~l;HKt~aBafTpvu6a zU@F?}|J^@ipZ{}zo83Mn_Rzq;QC;`bJ2s_7NTri-b z7cB{>Kd%LtxpN`{gbIXr zT7StZo0I%20(POK04=Mgh06sTROgHV(wG2+0ahSG1SkwHYxCXoI}DE*=;k-KUy~Ay zmJ=a`52__1PVyRoRRt5aD+lb%Vq%!a!{!PQMu%fD#lu!aLDw0_B)LB!1RAX1SW&@m zM&f|0HK5f5YBc2%t~M9c9rX?OppAzrY=23Bn_sYom;DQpr69)<3)>S&#Ry!N6+)i^ ze$=C5sg5B=ICI70xbva_d|)mmVD4OS{aUb%JLMjX$^4Hw&8^UZvAKwFm$+D&gJrlzkfi| zUID_M06zj8bRB2t%ZoV z?ZMGdMG8g)T>qu0i$?;OKe`E#Ib=oMN|Qz+8$d(Kk=-mG91yh22+_S^2UdDTUcLGo zDDKCQM-N7P(U|JtFr}DFn%o^SCOZz9ijs)8awX4 zC`4<6Yqt#vX!o|?wPpJPfFA0zJ5Y;+&sUyPt$&dP1;twXDCafI7=NyZy$ze3!FYFC zhCN~*+OyZe(2s3g*i_;cW|#990a6%W{5fM#9GIQ|zq%y~fEM{*n|R_HZo;5PdjL1crvGMuGLd%^gS`2#1?N+7ErMk0RqkrqqHNje+-z(b-(q zFySQ*@qTs_2ai_UJb(U8n`O9a;*qmZp4}Tk$hCj*aT|nmZF@Z|aoEC@zweY1(L25n~+6A#{&HwYEmPP`z_HfrEYJ0OD3ft5r9FE=8 zC2jYeozLM>@@Zt_NDa+gfkWE?1}Lij{F;D7ehVu#p+$8oTx1#2_QJ)v)Q4cQJAh;O)i+1oS4S z6;`%4#%)=`fv<>0180PDM7TgIOP@0AX2pQJ^EN0}asJ*cKEjiCzOL|Wf!AI2H&Wx! zyZzJ{c-<`*;eXMw-n^oCALXjnE6j3rc*KHLw3KU#$;Rt@8@|AzSCpW=^~x<;qrx%Y zdk{c-@$D&}@NCT))@yH9_u$D!X2FLR2VV=Ej@_MwO|-!w@8W!bvfFSUuuud`sP!EO zg&Ksp3Cnzi0fm41HF*1Skwyr-;jtgU1ez=r26cmgm4A|>yk5se$ZqR(4+%Yp=>m(^ z;9tr%!V4&~3G@QW+>iGHjXn(f0?P-lxw#~qYIwUTm+%FLGLspo*^`C`D}>TQ$R_+M zP7@sm7Fi1%s6X}^p1ekay4fHcuqGuuxh|=n%!dbuW%;5B>5su~qq#t`!&y}DgNAV8 z6oLN)dw;M$Iue77m1CR?)4Xvmg{5}kzhJRKQx{?yeDbnjOA6nhQI^f9z$h^)3hmd% z!NHpf9*MH7w-?h46l@b^Ok|Bm7c5$7vkL+Oir$4MgT+etvFfv6WsvY?4nAbJm4PD| z5WVPXpx8Em87#DoV+Kj(WC@SNYGFJFpI_mW6o2r{g@I>c%q4KTwid$5PT9)1{$f zIDfi$G>V@~AS1ZBcrcomi>ISFxo~)*Tp}Pt=wD#yD|luT2pAMvAq?O!R`N^o)%If; zJ6=2)V-3WEG3H%LvH?eiNY0>03O|d3vq7wcx9VL)#lm&iHT+OS5U~dTo{O+I7Zhn$ zI1^cZdmT8m=A3~KN)bxxFrqmqyB9?Qlz+RXio(2L3r zixq_|5vWUw00pm4iZ1D<%21qe8a8hNJ|dt?V)7Ld8)*b==_(`Z9Uw9$4s8ChBsI@PEZe zm<3Q6vjDr3KA@@Lzz<+*bM6N)wK@I+l-ivF0!tMLNN_VmSDYCX$Iteh5KyLzB#GlY zr%h4NH4YWS=ei+dI9)e~vLM94vE&MV3j)qeldk6$j6)4>061)fRT2%~JtAx;#n||{ zJFf?r>YOKSZwB9Z`|PY_xq@$R2Y(WrGh7Kl1oA^@n#<;dJ75hgM_J>-D|3W}8w|@8 zWj9548WbqBX5fPXgq>VS`?#=nakX6dg^Q;Zyx06w7yCM$>VC@>QkBlXUk!!(+)q6m z^OK3HHbYRKD3Ue%AafrC{?7gDp4ZDTia8V6_ZdExJDb;x7nx}f-#8ccb$_~ui@++Hw7P8 zByH;0VrkP)ZXCx1M=OmlDj3;m#TKJ22a8Ka6p@@MN{WoEV>Y<#6HlOWy#^xvu4DYl zqEHo4-|Cn>ZD(nm#SqTj-hZBBHWeY~?&PaX8>t3+(0Zsrrpmc$ zzx4rFhpK0y(xW>@uEc$LLBoEih#T?@f2qLa1l^d+$zAs0F8ORu>oQ6z9Jd71y227J zVS}@}UBcn+r%O6>N43`_9Xb&BD0>hZzSG_BogH?r1jZ>vSbw79fxQ?{usQV~@ZfhU z!ko!K6&Wd^Y+>iXW!XYqXO3Btk5m;DH0Pc;E2yR}s#LRe7C6Iwd^X=2sxd@RpWu@D zce{3>s!m;y#rb)qbN43PY7*{!ntrda2CW`mFl^Hee+1f;vv;;|nh+sp8s9PS0MWLN z1*!SqS9cP6mw)MjPIMBz&c7COjC_|{{f%RQE2+&=4L9H^Y@20fC?xqyuQ~%&x)vF} zvhH&Q`=UF3zbOLNy^inCNURh!W($#jdpWZWk%{Ik)pMOkFKt8z(n~#io#%B~b7JIR znVt}dq|d0^L`x#7W1@~VV3+73+FamC>Z-s}S=ugVX@B8g-o3{t_8#7j7IVV+@MsZ0 zC~ht~U8uEThI)}yp)g;%%}J$ej$RQu(+pGOc2h~!xjrD)yPc4&7`q#sFMLR2OL2iy zSsrbLCkm%&b!^mj)mOo5R6Ui(vPWo8I}!ZWw9{&y2TcIA868pCZ$sKAz-vICo#gv= z_8#pNKcw0TG#|!B+e_lW-bFq+c+V5}PSN%2&l28U?2MVYIvQt`Z z4983A`Aw!>a2;&rCG~-PmKS-gOys;S=*1q+xqlFoT9b>EVM$9FF?kLlrR&OBIy#%X zhzGRDXzPo033YqX?SyteW(!41#7D*%lyq!VTdJ>uXGir^8iS@O86+d>oF1+P)l+tz zRx|0J3G50u%Y@q)YXvCn zJb!yQzoa*XIlQ(xjfw&_DAcC}YCAROKD*i!|KMa!`Sr~Y*Y2j9Wz7ou=UkSh6gSS- znuINzy}NYFdcFJY>PRMX`zM#npzoy$nLDAOw4Q(6d-~?;Q4uK&-IzF$e%j|E;p#CF z|EDtumd7Za zBfBK8PwvjVI%h1D`oLrUD$4hAK!4+e zv*z^)r_ifmr=|hHV=hqF$9$}=2HgS%l#ciiTp#gIxQhA+4{06$YG0qQ13Jx<>>lIw z{oVBgT~I|uPOsdz&fDj*{o*ectWP+aAdv32)_J<0Q79 zGVt$uzg)R52-RL@gt5}QtF={bcYi-!EveYOvX0pP+UCOkdF2I83O~!c)!EDavx4af zyt9S+-WRI~xzS$k?sG}sKK|o#X7M+#x;Z#$UbZIB)&0*M4&U`o8(q$@*O^XH?wvj_niw{D1iAqr0=+ zx^m{`CP{aHd&_*Ql~1753oHXHD?>?Wd2QAMW0K`TXhO`ll~< z?`}PHm=sccdA#l4#+mr4&wt()Qhd1k_^-#SUa?tQgyp*5Se{)Buj;K7E-taYiXN|= zfJO{*_J%lTZ}mC6VPYYp)poZ8tvBx9*PprsSFwFuwBljExYsM5y|c5iqqTPNfxOcD z&PYFd*RvjTICWbq+{Ng(=MLwKe-@uQ==|*dJkQqDxrN>kQQRyTH-AlU8l&^<&i2`O zT?*SrxU0j@Ru>D8u>U8~(*2u)>KB*%UE>-VS$u0opWUa3hRw8Es=sYenEwyYI7v|LW5>H4JIPko*<-EOoG=yNK!{Ukfn;5tMB(uc4U z(-5aq^{fr|;|ZWO3xA97_J^Qd$^ic7=U+b9(rfRwrp(WEwRJ<{6Nb_WfdM=4zy|WW zCQpEx%T537{=9l_L7lm|wXcF*^~{DkeP?T6dCO}5(z){5A8g)zx_WL1oxZa(lY)74 z)C@X(ci&FxjH7eb-f7ektMG*J*SpX8pdTmND~)0F?+^ZtU_#mWBZJ+?|D^TTvlRZc z`}wB3Z_j#YpssRf{YH8W{H&Sw@q5jDulcqMj(gwFxKT{M)B02R$IXuOtQY%#aEKU0 DR_2`F delta 8669 zcmV<3AtK(2L!CsBihnk?$KU-ayw;poYZ52vbmlD=r{kV9@x)2H&b)9zBqX6B0R{kN zDWCq}LQ<40iXgGK+?Uo7!QUSwF5Cb%HZr2gqEbxo%X0g#LS$7=FP~kKN()l5zh~{` zzcZfE&1|KM{BJ(l)&E>xUF;IfUZ-hQR5{T?T2`79r7oWjpnv)qGrA^uMKpC8qk1K> z7+OK)5(uR$~^UUwQ{JOOll2d6K~7$>1a{B^<8G$ilLS){@OD z^X_7B3n_}E+@_>dw%)_!vB}~z)LZjsE|!xEv%VkT#W$pMm!rvVyTxHa} zai%ntiAq{0Lmd=P7aY1Gsb|RR5<{JL%bCs0U)w%ju9V$n#7?<(O)``Vd*L@N(fS0ccLGy ztv}JErud^ls+t3lw5({x)-bd-TTw-~m!%kz{djJPl;R=L+tS;oagRvmDl$_f6%dG3 zEF)(mI)5Kh8q+Le1r$hW##0RfqeZE=Af%k~rCx!cIM}-?MVZV=`V9tZgJ&!5FJuA>nT(cNecVA~hjt4MO&JVJT*VkoT*}L?tcytjBO169IG**F+6`ZR>Ta#AMDl9O3wq7>IE-%qxI6^Dbchu zD>6#(I$ThdG-V5xnqhNW^G0dC2-2F^sf5(-)XqcEte$8YmG_qcczfNnmwzQqtOtg3 zK{jKXg6Yv}ug0h;_JdB;`6)yvx*vZ2k8v{Y6-GQ&NWU|+-+vy`;S^-!s=!i;s&r2> z`Wyc&OokOzk<6>bf=W}bB~67i)thKzrmCd08&&Mw>*${Q`uPa?<_pnzWY_u0(LKa< zNN=RRu`=;aPTf_5Q92<#QGfi``}*ZLnaIBUI;7WdCF5(zw2JvtsEADL-0uYA@cN*; z`0Q%+8=K|H#!iPZ>$Z}pZ%h}ub8?+N#Od(v+h!a4xSnM9eYi470JG;dlhBQZhGJwC zKA)Bd$&>Rq&*;y_++YR0;p;aQ%QHHCyU`<(vC8;@Ese=(N{0KHT7S5F&fE%c#?-f@ zAl!WWrTs_S<4%0P0V*->ULpM2U`BY11z{F%y>?0=a&W$NAj`H%y$csbLervbMwl_H zxjp!b&yD?^8KVf~A@2Y4A$GjIL(J*{6ij>SaNU#pA$*pBJnbH`07ts;4c0Lrq9xv^ zBquT^=t4^Xh`7*Y#eYudcUV;x7iwXLf{L@SBi4DFi1B0nx9$Toy#%`y(67}#Sy2u2 zsJ<2K+u>kXKhKe5bU~_IH&GPa&fnMtj3a7il3{!yWI>##3qy@!&j|GDk>$25AvsAh;-`(fk*f2%zv56@ zlY3luH^4W}bKFPC{ucNgzf5F__OQH;n0kHXcnSpqm6X1bFmFWdsiO(9`w7mV{I-&QCugj#m(_sLVbeCrP zGUtb5cUi=A#eauT=RlpfAs`&o`7uF44?U44*BB3t83VNhfWD#2f~hTzRX5%GrA2iL zr>GD;LWgfFPGcd*Ij?n~+*-o9T_JN$KS`vQUWZ&|4-1&82sYB(5u40S<8*_`od~X3 zCmRm3Stkq(6LFu!H0ILGk& zEq79^+3-5ZWbPR%WGi(xq4V&eOMDl$5~QF#4xs~Xz}7o^_ol)6;2Phlm+kNqH2-xs z30+reI!fJ`A-@ttDo$eo?;ZEC=#{V)5)a(Ebq1K$lO@jdBxj%}bi;<@;zViy*VmAV z%8@jLu77>}MCMp_*u>^oYUo7gSZ?UVX8_kP+)oKey$dij?QT2qUP+qxm8Uwi$)cHy z9gowE&(Nvyr%x6z{`3iFudUbFYa2uEW>X5OLz>HDjS+C`_vQRA)5M3a8*WD9^t?wD z*3%r)JCEbNWg(yE!2U&erd|c}T)X7$>TFr3gMWO;+6O0S5q~r_*r6?gJi%okMs2#o z8?5TE101YgutQw5>_`W>Xua_cbJ3FH9O$CuCOOoFs|GvRO+ij^xSOOi&H*o4qCl4j zchDQ5G{WU;A{DhiAMFx06+O~LEJ`NYWh_eliDbvSltsynbTNz4n(A@}COXOm4OTVC zC4UV}GRQ>@OfAS|4NNW2g)K^Nv`gC*wPxTA{HbyO44zAxEMR_jhsyZrweBfLIojKr zg)V|d@&jiJC#%%oHJdOb;18Hk;-&&~9|ffi#e*ZQH%JDK`{(GH{Ha1Nz%#Z6_nv<; z#};x2h~e>F^$OZ>3Lt^}uDqv^G5Ux?)_)K=k=Pnr8_ED%BM(`|nX0kO#oTmSb-#il zVS39fA?x9|&v6Q=TH^}*sRYMWs7DRBBDn3l{eB=9c&&0c)qMs<)M{3Xgf1&a3nAC( zS|xY!(U<3{dSd=3O?9HQkY`ZCZ?v`0e#jSmy)%_oJ<>T_0}eST975$RBKj;U4}WJ+ zSu=`f-YWmkgk^XV-*Zg1KRclljtxZ!x5^H<0g z(23Lu4ph^Xf{%NjE)h1JKbi0FHZ__=v*1Uu1X5x~8+hwh1e0JQij z=V*6c(c1SRYkJdF44t9jgU|bn5C}L3bSiyC30nC&mobI-jW7ZtXkufkfOSa0WG4a* z-^Tk!fsa^=pQ>T!VhZ+yX306!I<7irkVxj+WJQJ#xSlE%=7BevPB9HXPfz@QBZa22 z5@@|f$cb=M*_tr4FOBI;M}N2|M5u)MC&UN@IVZ#j1bHSz352*MOcs!YE9u>@h>dIaTQWkoOpG_f{fHm=UP;5zNjYh4;qXu?qoi0&xN%EBA2Irj4l^>loH%2?`psgO==hJn=4&Un0y&k1I?jWfi$$uB4BqyDe)T8`z zl=6tvjC%B5jnbQRHcpT7PXo$hPP?1bMqy9D>v_t5jLHODWBqx$Zd7Ca=XBi>hv)V6 zP|rrGM;@rxmxM*{(XM8bAGUkB3z8t)qmV;5p+x2O` z8mA5Td3yfSRO#`D`+xOiVO*CQ|A~A)t}mT*2w8{V-6(jlkMyF_9H|Ex#sO|8R4Y2 zyJ_~8=K1@sYKUEYTy(5jaE$PH-F9l=-{yw%J??SYndwnko_{5D<0gZxduK{VETST1 z$N3U1gc!5pikTI=Jp1%nk#t$*ME)g8$h!j1MYjEGc#K81fnYm!&==?cqw%>GsK(MGRP>S;6bCs`BgP**-- zi?&Bm?2@UctbeafgH}(Pi#pmigOJQgYRipmEzd=%+e@WYC7Af^T=@_&Fcj>0(Q_KN`EIKQsWp}2s!-8qjC z(3_1v9iTm63<3(*ZSM2l)Qg7@%v+lX3ig|uG6a2xzt_8C<5=&g_2o@LzKZYaKm|aL z`L44KD3Vm<_stm{05mB|;HGAgaBafUpvu6YU@F>;ja&Vh<^<*$Z+4NRV?m~xDF{v* zjDH{+1Ywp~jEy;zWy2mwV|W~vN56yOmJ}El7)NOgQ-k7|KlK0-nZv%s95#1mga^y3 za!?+JeS1QJ;$+()0E|sqCWmJRg%=wGWa%m`N?2xF7Xcr5) zm2jb9i`g<^d63nbsULLsOt@ei@PD`5hBJg6Dc3~cp4w3{o}B|fyy9TNINM9C z0n4}>5E>4;H4q-Qn>QFLNyZ3=>%Szm5kvsjr@hA63BX;MgJ4QNPNvVWcBg9Czg z89skp5_N!n(l(&MLuQ*{4 zF5Z?0(?`Md1|OOzu(6odyom#Sw42}98sN!33V`SOC9E|Av}V1G-^T{D2M!{J8K za+1=OX!eCg!rXaN6apmvq(GYvKGU?4%G8Pfz=m3kxfX%HY0e|h0c6*~t69(v5zS!foi2v%ODOKt>kx@{rF>BJif*E>sus41y zF&OVw3BR@LLvu1a82Y}6z8Xv1!t5pf%0UX_t2>1ZiUYI1{&%~w0MNqzaMKR}{k;dx zlE({E03B2V@2(^PVh@*q0MUojJ78#-YUEk(o7{oa0e|!vHO5)(rYMaBqX|fDgO&oIO%d>qW2)TAIUMv=hYT$S7@k}LVP$f-| zXG2M1Ni2jt%?rrtJtj~}n$iqWpyIBSX>84Jf)}Zws6%bS;m|{E(qf;8^qvBn`9@<#Spo(_q6bdvU z%Ow)nd^-I%0-l``jRY1PjotV&Vvv#As^0{ew;^5-;Ekg{0(z6u5-ZyqZMX2?z*j_} zffJJFh;WWnmM*2=-H8FW$3;-A;{3B-jDsidd_UpY9DlF7>TWE?p||^sG4QHgKEb17 zy?HavNBbz3m0DqztHmQ0tfYllQ%p8q-&^xJ7QLhd?X8z~5f>GX`QE(%+KX?Fs)T2& zoMFB8X0;2RtVQB|N^$TN$LZMZiO=;S2|Rfh_X3pNguj4=B3MF=FEuDsBg{=0<~0Ts z{^{4??SIQg-XQRX$9_N$XtIzP)C~ewh#ckhS}sC%8!vQ7=s}DVShNEFQZ^A!K$&&m z6Hw-U{1a&OVHgxxK6uSd1<9#`x0_M{UvMZhnVyp^EYp+dMY8ws<7Rwd2A(z1?FEh5J@C_Pe*^F|G5~Dm*ZfzVKyeZ+4D9d_# zF}^^-CQ-t8QoBmQqNUQipctU&UAQh-tbiY@J__Ci316n*Lv~Xcas&gS6KxC>+XVE2 zg?~12y&$PMS;8Z+T3DWf&#&Z^Wbn*|hG$~TCFFE%EQFP&@V2N6c823D<%Q{QEVQ^MsnM!*+^bHj*j89a}X*K9L>?%4VKf(9vms_ zI4&=qjpgyOqoX*yI6RKOO9zeNcG1OiB!4)DvrB`<@OA035#KqIr%O%8aCC8K6h9YF zMsRa+U^FimM@MmT$>E7&iGcK>aDk!M@XQAaK9iA`2m?5bmHdKyGyNFGju%J9SOalj zjCq%WY`~E|vN0%M+7LD7zD$0hGI@GKcTF>&=!ZOLQf;qiYG@#7YdCpcADW7RxhHAW)YS z0SaE9Bwf-?nV>k~)a<+tfQW!Dh)!2XY@`veq05A#h5X6ba{<} zRk;e>v5t>0Zk#Jz44+*b|Il>noVHQAQ%mVCA zzJR9s12BN8^*I>8)cQCKP-=TB1}v2$Ai>QLRpv~iIDR(gW`Htnh(;XWIi<6Vu5qXs zKG!uF!|A#{qy!-jjv<%uTM%$&np8D6U>vG<1HfS;tdc1B?h#=-DaOXn-GBKtz*Orz zX?ipG#@l5l1xqD-dpnTGbA~Iy2}gbiMN?6q_y(+jrZ|33WQZOYJ>Z`01+nE$v3xEGa7Y0%q06bYt}FN5h)(@G*pFRu$etVo*Fp~cdq zpWHZ(36548UsN!%(~2!bTMQPL2q+>klayo$S%++J*(dg(Qndym{eP)K{K|q*C6V8& zkUecDX*mlaoVvX^*J~<5%&2YW2sb)7D znpU>H-qqX_o%SJikbf6^TEqmhJu9hs7Xv2?jHjn7^GT7E!{<9=s;qrpP{3{iZTJ-6 z@qD+twUj~&c=qm~mUf-nD49{L-a<)e0hjp?V#!R$0n}nTG|=|4#|3UJT{d8iK7vh_ zl9a18`+>!WYcKuuM5QZQ5NHwDCfOxBTU9|*k=o#h!_NoEV}A_h(~vMz`7|TYNIne- zH;+$n%s3}Y=8d!0Da)gqcGv>xrncvont!}$R8I7&eIkMMM-Md6A;!wtYQJ>>Scj@- zq|&`TpRK@sd0xYOsE8f%41cM>IlJ`_*6g20KILoM_HmX#;brv|oU3@a%YN{|qP@mwO`M0}vp{h=m zk;UnGrBnAt+^Qq)eVBePHwLX5UNCIZ4Sxihl(ToHaDVC$AtxH&G4KGB7{>|mYG(^VhLrPC|9-XuS9Y`nj>~)$}MU@jR2FtWZB#=I% zb`vcLsDF-;I>vxqqKhbfh9{}Y3`=Ecx}2qfe|`5Jqu4umGg?eZo)3=}0ffTlqT_`c z8)m2%i52qmrQ4L0s>;zTLTj2~irj2UAzRl6#Co?AG8JQYgY|{?X-p|Da4O5asqjSN zG_976+OE1Pc#W!~Qd{;24QeNX-_4A+!pno=_BP#oCNVx=f4d{!NeBaFe!$062 zAGIMJD&aMz1Eo|_7p~v_njqE20m;Nh$(M~~i7eiX?-6>CeWgYS`gwjA#^__s5l_Gs zeg~i37Dd%|90+f#BXxf!o%+u+C?z%)5>EU5!}+S;_(2lNVC+BvbwJjq)x>Z-r=Htn z+J6Su!B$>U7szLMmeY_Qzx)NrCvtID?XwjcQAERq*Vnj!JFN)Fp#tM4i&ZwV*o6w$rL7{S%H| z0cQ!f8>8I9lJnbg$NVZ}&1Mk?!9dul;C~M>cUsK@p(&t_F^{P1k1;!~0HvKLpHDC8 zO<@kNZBC=2Ks5^WA%faW&Dqbc(%HXqGN<|F)$>bx)77$K8U1@IibC)!>uXK?md(yx zs$sp}{dRFA6RG(#7fY}2q%x6Op`o;nf7yBZ`sz^;!8P6JFp+NB$0GjfF%kEtHGdg` zWDZh45^ArXlseqk8Y+5pKkQNYUCLt_p_?*Hd6)2!l)ZE@yc2jp;Ml(5%VRr{F9Np+ z59syoD!%O9sC?1qtuP>UlzkDfxpR7H2riHKCtL)5gom__f3+`r?0{CYm)&8!zPr8rOczvA zp3)2Zt#kIdXukN11?v)yCh(-YtuYb#<;_M@u3WeKI59InSkK7T$mqp(Q-6B?ZReK@ z`vsxO$&4^oI(Id;%FXVlizVf|SJo1nUz=Q*KQEj>ukfS18=bw}KPs4xz&lf@?_Hsq zU+b58!Gzyu(yJ)`Zm)YWCazrK*XBR=PP@6}#Es^1d!J4E_WpNwS7rK`qFzrZrC6Kf z@)T!3frb)ZBoko=$sjvrkK5BxOZ$Ewf^7;17*Ds$wUw{7c_4eJ3qYjgN zim&%K-P>};zp0bA`4k^+KmPCiMW@(|Ey7aOZ7h#2`d9TLFYfh|m{3d?2UvzBSTM-u0-* z98TTT3VSj5?b*Zm!hfH|rS>|%+CNXT6}4`mSA=I*3zqA;Hx1EwbZ7Hyc~x-JN7$>w z&sJp%hcN#q!P4EEyy{n*{9WxD8CZO4Mjygot4r<0KGP*r=7DW6#^3GFr*-_aRk%`} z-fQ_uvA##*3%0BzIka5*(zJcj?x!x#nr>Ih1@!65Z8yozG=I4CQGnDTtY;dcKUK%t zus`+yjaiuaw?71JQ+n{fzx?*WlwNbUF=c+O%B>v|_ZUh&0t0s7feqw#P4oTqi~23RZiJzs`Nu2mLtFT&WGC|9o(Fc+18e8EilPz1CmHQuy2M=d1Ru>%aS3Az5UhMw?*~t5CDrNB| diff --git a/searchindex.js b/searchindex.js index 081285ea6..f833720ae 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]], "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"]], "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"]], "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, 34, 36, 37, 44, 45], "007bff": 36, "01": [22, 26, 29], "01t00": 26, "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, 34, 35, 37, 38, 45], "10": [3, 4, 5, 7, 17, 21, 22, 23, 25, 26, 29, 30, 31, 32, 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, "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], "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], "196": 24, "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], "248": 24, "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, "29t01": 26, "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], "35": [21, 22, 23, 25, 29, 32, 34, 37], "36": [22, 25], "36404731764216": 24, "37": 25, "38": 25, "384": [4, 5, 7], "39": [21, 25, 34, 37, 45], "395": [21, 34, 37], "3rd": 5, "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], "408": 24, "41": 25, "417": 24, "42": [23, 25, 32, 34], "42857142857143": 32, "43": [21, 25, 32, 34, 37, 44], "44": [21, 25, 26, 34, 37], "45": [21, 23, 25, 26, 32, 34, 37], "4579": 26, "46": 23, "47": 23, "4732": 26, "48": [21, 23, 26, 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], "502": 24, "51": [22, 23], "512": [4, 5, 7], "5129": 26, "517857695z": 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], "653": 24, "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], "840": 24, "85": [21, 23, 34, 37], "855": 26, "86": 23, "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, "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, 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": 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, 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, 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], "achiev": 21, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 19, "across": [3, 17, 19, 25, 36], "act": [7, 13], "activ": [19, 20], "actual": [2, 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, 34, 35], "addition": [19, 22], "adhoc": 20, "adopt": 19, "advanc": [2, 7, 34, 35, 36], "advantag": [19, 20, 21], "affect": [17, 23, 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, 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, 34, 35, 36], "alloc": 2, "allow": [1, 2, 3, 7, 17, 19, 20, 21, 23, 25, 26, 30, 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, 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, "approach": [5, 23, 25, 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, 34, 35, 36, 37, 38], "arbitrari": [2, 5], "arc": [4, 5, 7, 19, 30, 44], "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], "attack": [21, 23, 26, 32, 34, 37, 45], "attempt": [1, 2, 7, 17, 19, 20], "auto": 18, "autoapi": 18, "automat": [1, 7, 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, 34], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 17, 30], "basic": [22, 27, 29, 30, 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], "best": [1, 2, 7, 19], "beta": 34, "better": [2, 7, 36], "between": [1, 4, 5, 7, 17, 19, 21, 22, 28, 30, 32], "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], "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], "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, 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], "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, "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, 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, 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, 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], "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], "compil": [19, 25], "complet": [4, 5, 7, 8, 19, 20, 30, 34, 35, 36, 44], "complex": [2, 21, 26], "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], "concis": 20, "concurr": [1, 7], "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], "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], "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, 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, 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, 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, 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], "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, 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, 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, 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, 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, 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, "div": 36, "divid": 5, "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], "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, 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], "end_bound": [4, 7], "ends_with": 5, "engin": [1, 7, 21, 22], "enough": 17, "ensur": [3, 8], "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, 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, 35], "evaluate_al": [7, 17, 30], "evaluate_all_with_rank": [17, 30], "even": [1, 7, 19, 28, 36], "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], "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], "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, 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, 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, "func": [1, 2, 7, 17, 30], "function": [1, 2, 4, 12, 14, 17, 18, 19, 22, 24, 27, 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, "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], "happen": [20, 38], "has_head": [1, 7, 11], "has_mor": [2, 3, 36], "hash": [2, 4, 5, 7], "haskel": 24, "have": [1, 2, 5, 7, 11, 15, 17, 19, 20, 21, 23, 28, 30, 32, 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, 36], "helper": [7, 17], "henc": 17, "here": [2, 5, 7, 19, 26, 29, 30, 32, 36, 37, 38, 45], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 34, "high": [4, 7], "higher": [2, 4, 7], "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, 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, 34], "idl": [2, 7], "idx": [17, 30], "ignor": [5, 7, 17, 20, 23, 32], "ignore_nul": [23, 32], "ilik": 4, "immut": [7, 17, 30], "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, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "improv": [1, 7, 17, 30, 34, 36], "in_list": [5, 26], "includ": [1, 2, 3, 4, 7, 19, 22, 23, 26, 28, 36], "include_rank": [17, 30], "inclus": [1, 4, 5, 7], "incorpor": 30, "increas": [1, 2, 3, 7, 23], "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, 35], "information_schema": [1, 7], "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], "instanc": [1, 3, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19], "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, "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], "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, 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, 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, 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, "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, 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, "local": [1, 19, 20], "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, 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], "mani": [19, 23, 30, 35, 36], "manipul": [1, 7, 26, 35], "mankei": 32, "manner": 19, "manual": 20, "map": 2, "map_err": 44, "match": [2, 4, 5, 26, 28], "materi": 35, "math": 23, "mathemat": [27, 29, 35], "maturin": 20, "max": [5, 23, 24], "max_cell_length": [3, 7, 36], "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], "medal": 5, "median": [5, 23, 24], "member": 20, "memoiz": 17, "memori": [0, 1, 2, 3, 7, 13, 17, 21], "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], "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, 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": 34, "necessari": [19, 34], "need": [0, 1, 2, 3, 4, 7, 11, 17, 19, 20, 30, 32, 34, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "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], "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, 36], "numebr": 5, "numer": [2, 4, 5, 7], "nvl": 5, "o": [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, "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, 34, 36, 38], "operand": [4, 7], "operatefunctionarg": 4, "opt": 20, "optim": [2, 17, 19], "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, 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], "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, "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23], "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], "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, 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, "prece": 5, "preced": [4, 7, 17], "preceed": 32, "precis": 5, "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], "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], "produc": [5, 7, 13, 15, 17, 19, 32], "product": [5, 35], "program": 19, "programmat": [7, 13], "project": [2, 4, 7, 13, 19, 20, 35, 38], "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, 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, 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, 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, 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], "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, 33, 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, 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, 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], "remov": [0, 1, 2, 4, 5, 7, 23], "renam": 2, "renamed_ag": 25, "render": 3, "repartit": [1, 2, 4, 7], "repartition_by_hash": 2, "repeat": [5, 25], "repeated_arrai": 25, "replac": [2, 5, 7, 26], "repo": 20, "report": [2, 20], "repositori": [19, 30, 34], "repr": 3, "repr_row": [3, 36], "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 22, 25, 30, 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, 34], "reserv": [1, 7], "reset": [3, 36], "reset_formatt": [3, 36], "resolv": [20, 32], "resourc": 19, "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, 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, 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, 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, "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, 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, 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, 34, 35, 36, 37, 44], "show_truncation_messag": [3, 36], "shown": 3, "side": [4, 5, 7, 19], "sign": [4, 5, 7], "signific": 34, "significantli": 5, "signum": [4, 5, 7], "silver": 5, "similar": [5, 19, 22, 25, 32], "similarto": 4, "simpl": [5, 20, 29, 42, 43], "simplest": [17, 30], "simpli": [2, 7, 17, 19, 20, 34, 36], "simplifi": 32, "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, 34], "sinh": [4, 5, 7], "size": [1, 2, 5, 7, 25, 36], "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, "slowest": 30, "slowpok": 32, "small": 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, 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, 35, 36], "specifi": [1, 2, 4, 5, 7, 25, 26, 28, 30, 32], "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], "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": 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], "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, "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], "suffix": 5, "suggest": 34, "sum": [5, 7, 17, 23, 30, 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, "system": [1, 2, 7, 19, 20], "t": [5, 17, 29], "t1": 17, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 17, 19, 22, 24, 26, 27, 28, 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], "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7], "target_partit": [1, 7], "task": [26, 38], "taxi": 22, "td": 36, "technic": 21, "techniqu": 34, "tempor": 27, "temporari": [1, 7, 36], "temporarili": 36, "temporary_column": 35, "term": 32, "terminologi": 19, "test": [5, 20, 34], "text": [1, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 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, 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, 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], "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, 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], "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, 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, 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], "uuid": 5, "uv": 20, "v": 20, "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, "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, "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], "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], "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], "white": 36, "who": 19, "whole": 23, "wide": [25, 33, 34, 35], "width": [3, 36], "window": [1, 4, 5, 7, 17, 23, 27], "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, 35, 36, 37], "workflow": 20, "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, 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], "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], "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, "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, "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": 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, "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, "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"]], "Apache Iceberg": [[34, "apache-iceberg"]], "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 Names as Function Arguments": [[35, "column-names-as-function-arguments"]], "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"], [4, "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]], "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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", 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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", 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]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", 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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", 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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "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_file_sort_order"], [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, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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, 34, 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], "177": 24, "17t19": 26, "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, 35], "22": [2, 25, 34], "223": 45, "224": [4, 5, 7], "229": 45, "23": [22, 25, 32, 45], "23076923076923": 23, "2345": 5, "24": [22, 25], "245872298z": 26, "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, "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, 26], "33": [22, 25], "333333333333332": 32, "333333333333336": 23, "34": [25, 26], "35": [21, 22, 23, 25, 29, 32, 34, 37], "354": 24, "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, 26, 31, 34, 37], "405": [21, 26, 34, 37], "41": 25, "42": [23, 25, 32, 34], "423": 24, "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, 25], "47": 23, "4732": 26, "48": [21, 23, 34, 37], "49": [21, 25, 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, "668": 24, "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], "795": 24, "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, "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], "9490104226239": 24, "95": [22, 23, 32, 45], "96": [22, 23], "968": 24, "972": 26, "979": 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, 35, 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_file_sort_ord": 1, "_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, 1, 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, 1, 2, 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, 35], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 4, 5, 7, 35, 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], "action": 35, "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, 35, 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, 35, 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, 35, 38], "anoth": [2, 5, 7, 11, 19], "anti": [2, 27], "apach": [1, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 4, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [5, 30, 34], "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], "arithmet": 35, "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": [4, 5, 7], "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, 34, 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, 34, 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, 35], "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": [2, 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, "candid": 4, "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, 35, 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": [1, 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, 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, 35], "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": [4, 5, 36], "consol": [2, 35], "construct": [2, 4, 7, 17, 30, 35], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 38], "contain": [2, 3, 4, 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": [4, 7, 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, 34], "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, "create_namespace_if_not_exist": 34, "create_t": 34, "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, 35, 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": [1, 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, 35], "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], "ensure_expr": 4, "ensure_expr_list": 4, "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, 35], "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, 35, 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, 35], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32, 35], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 22], "explicit": [4, 33, 35, 36], "explicitli": [7, 17, 35], "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, "expr_type_error": 4, "express": [1, 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], "flat": 4, "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 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, 35, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 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": [2, 4, 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, "hood": 34, "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, "iceberg_t": 34, "id": [1, 2, 3, 20, 28, 35], "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, 2, 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, 35, 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, 4, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19, 33, 34], "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, 34, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25, 34], "intercept": 5, "interchang": 42, "interest": 25, "interfac": [1, 5, 19, 21, 22, 30, 32, 34, 38, 44], "intermedi": [7, 17], "intern": [4, 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], "item": 4, "iter": [2, 4, 7, 14], "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, 35], "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, 4, 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, 35, 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, 34], "load_catalog": 34, "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, 37, 44], "name_pair": 5, "named_expr": 2, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": [19, 34], "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, 35, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": [1, 4, 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, 35], "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, 35, 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, 4, 5, 7, 30, 34], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "other_df": 2, "other_id": 2, "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, 35], "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, 4, 7, 35, 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], "possibli": 4, "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, "pyiceberg": 34, "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, 34, 35], "quick": 24, "quit": 43, "quot": 29, "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 4, 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, 35], "ratio": 5, "raw": [1, 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], "reject": 4, "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": [20, 34], "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, 35], "sampl": [5, 24, 31, 34], "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, "second_two_el": 25, "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": [1, 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": [4, 5, 7, 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": [4, 5, 7, 25], "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, 4, 7, 19, 20, 29, 30, 32, 35, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 34, 35, 37, 44], "sometim": [1, 7, 19, 34], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 4, 5, 7], "sortkei": [1, 2, 4, 5], "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, 25], "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, 35, 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, 4], "typic": [0, 2, 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, 34], "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, 34], "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, 2, 4, 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, 35], "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, 35], "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, 35], "x": [2, 5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [2, 5, 17, 21, 26, 32, 34, 37], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": [2, 34], "yield": 5, "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 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, "apach": 34, "api": 18, "approach": 19, "argument": 35, "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, 35], "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, 4, 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], "name": 35, "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 f9fe3ca36..e4326f106 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -610,15 +610,15 @@

    Distinct +----------+--------------------------------------------------+ | Type 1 | Type 2 List | +----------+--------------------------------------------------+ -| Bug | [, Grass, Poison, Flying] | -| Poison | [Flying, Ground, ] | +| Bug | [Poison, , Grass, Flying] | +| Poison | [Ground, , Flying] | | Electric | [Steel, Flying, ] | | Fairy | [] | -| Normal | [Fairy, , Flying] | -| Ice | [Flying, Psychic] | +| Normal | [, Flying, Fairy] | +| Ice | [Psychic, Flying] | | Grass | [, Psychic, Poison] | -| Fire | [, Dragon, Flying] | -| Water | [Fighting, Ice, Dark, Flying, , Poison, Psychic] | +| Fire | [, Flying, Dragon] | +| Water | [, Dark, Poison, Psychic, Flying, Ice, Fighting] | | Ground | [, Rock] | +----------+--------------------------------------------------+ Data truncated. @@ -634,15 +634,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Grass, Flying, Poison] | +| Bug | [Poison, Grass, Flying] | | Poison | [Flying, Ground] | | Electric | [Flying, Steel] | | Normal | [Flying, Fairy] | | Ice | [Psychic, Flying] | -| Grass | [Psychic, Poison] | +| Grass | [Poison, Psychic] | | Fire | [Dragon, Flying] | -| Water | [Fighting, Flying, Poison, Psychic, Dark, Ice] | -| Rock | [Water, Flying, Ground] | +| Water | [Poison, Psychic, Flying, Fighting, Ice, Dark] | +| Rock | [Flying, Ground, Water] | | Ghost | [Poison] | +----------+------------------------------------------------+ Data truncated. @@ -653,15 +653,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Poison, Grass, Flying] | +| Bug | [Flying, Grass, Poison] | | Poison | [Flying, Ground] | -| Electric | [Flying, Steel] | +| Electric | [Steel, Flying] | | Fairy | | | Normal | [Fairy, Flying] | | Ice | [Flying, Psychic] | | Grass | [Psychic, Poison] | | Fire | [Dragon, Flying] | -| Water | [Dark, Flying, Poison, Ice, Fighting, Psychic] | +| Water | [Ice, Psychic, Fighting, Dark, Poison, Flying] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index c4d5beae8..5f5186e73 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -446,11 +446,11 @@

    Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 653 | A | -| 2 | ruby | 417 | A | -| 3 | java | 408 | B | -| 4 | haskell | 196 | C | -| 5 | go | 840 | B | +| 1 | python | 968 | A | +| 2 | ruby | 979 | A | +| 3 | java | 177 | B | +| 4 | haskell | 423 | C | +| 5 | go | 795 | B | +-----+---------+--------+--------+ @@ -461,8 +461,8 @@

    Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 653 | A | -| 2 | ruby | 417 | A | +| 1 | python | 968 | A | +| 2 | ruby | 979 | A | +-----+--------+--------+--------+ @@ -480,28 +480,28 @@

    Basic Operations
    In [8]: df.to_pandas()
     Out[8]: 
        nrs    names  random groups
    -0    1   python     653      A
    -1    2     ruby     417      A
    -2    3     java     408      B
    -3    4  haskell     196      C
    -4    5       go     840      B
    +0    1   python     968      A
    +1    2     ruby     979      A
    +2    3     java     177      B
    +3    4  haskell     423      C
    +4    5       go     795      B
     

    describe() shows a quick statistic summary of your data:

    In [9]: df.describe()
     Out[9]: 
     DataFrame()
    -+------------+--------------------+-------+--------------------+--------+
    -| describe   | nrs                | names | random             | groups |
    -+------------+--------------------+-------+--------------------+--------+
    -| count      | 5.0                | 5     | 5.0                | 5      |
    -| null_count | 0.0                | 0     | 0.0                | 0      |
    -| mean       | 3.0                | null  | 502.8              | null   |
    -| std        | 1.5811388300841898 | null  | 248.36404731764216 | null   |
    -| min        | 1.0                | go    | 196.0              | A      |
    -| max        | 5.0                | ruby  | 840.0              | C      |
    -| median     | 3.0                | null  | 417.0              | null   |
    -+------------+--------------------+-------+--------------------+--------+
    ++------------+--------------------+-------+-------------------+--------+
    +| describe   | nrs                | names | random            | groups |
    ++------------+--------------------+-------+-------------------+--------+
    +| count      | 5.0                | 5     | 5.0               | 5      |
    +| null_count | 0.0                | 0     | 0.0               | 0      |
    +| mean       | 3.0                | null  | 668.4             | null   |
    +| std        | 1.5811388300841898 | null  | 354.9490104226239 | null   |
    +| min        | 1.0                | go    | 177.0             | A      |
    +| max        | 5.0                | ruby  | 979.0             | C      |
    +| median     | 3.0                | null  | 795.0             | null   |
    ++------------+--------------------+-------+-------------------+--------+
     
    diff --git a/user-guide/common-operations/expressions.html b/user-guide/common-operations/expressions.html index d9c4d3512..f2358ca39 100644 --- a/user-guide/common-operations/expressions.html +++ b/user-guide/common-operations/expressions.html @@ -497,7 +497,7 @@

    Boolean

    Arrays

    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 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.

    @@ -523,18 +523,31 @@

    ArraysIndexing an element of an array via [] starts at index 0 whereas array_element() starts at index 1.

    +

    Starting in DataFusion 49.0.0 you can also create slices of array elements using +slice syntax from Python.

    +
    In [9]: df.select(col("a")[1:3].alias("second_two_elements"))
    +Out[9]: 
    +DataFrame()
    ++---------------------+
    +| second_two_elements |
    ++---------------------+
    +| [2, 3]              |
    +| [5, 6]              |
    ++---------------------+
    +
    +

    To check if an array is empty, you can use the function datafusion.functions.array_empty() or datafusion.functions.empty. This function returns a boolean indicating whether the array is empty.

    -
    In [9]: from datafusion import SessionContext, col
    +
    In [10]: from datafusion import SessionContext, col
     
    -In [10]: from datafusion.functions import array_empty
    +In [11]: from datafusion.functions import array_empty
     
    -In [11]: ctx = SessionContext()
    +In [12]: ctx = SessionContext()
     
    -In [12]: df = ctx.from_pydict({"a": [[], [1, 2, 3]]})
    +In [13]: df = ctx.from_pydict({"a": [[], [1, 2, 3]]})
     
    -In [13]: df.select(array_empty(col("a")).alias("is_empty"))
    -Out[13]: 
    +In [14]: df.select(array_empty(col("a")).alias("is_empty"))
    +Out[14]: 
     DataFrame()
     +----------+
     | is_empty |
    @@ -547,16 +560,16 @@ 

    ArraysIn this example, the is_empty column will contain True for the first row and False for the second row.

    To get the total number of elements in an array, you can use the function datafusion.functions.cardinality(). This function returns an integer indicating the total number of elements in the array.

    -
    In [14]: from datafusion import SessionContext, col
    +
    In [15]: from datafusion import SessionContext, col
     
    -In [15]: from datafusion.functions import cardinality
    +In [16]: from datafusion.functions import cardinality
     
    -In [16]: ctx = SessionContext()
    +In [17]: ctx = SessionContext()
     
    -In [17]: df = ctx.from_pydict({"a": [[1, 2, 3], [4, 5, 6]]})
    +In [18]: df = ctx.from_pydict({"a": [[1, 2, 3], [4, 5, 6]]})
     
    -In [18]: df.select(cardinality(col("a")).alias("num_elements"))
    -Out[18]: 
    +In [19]: df.select(cardinality(col("a")).alias("num_elements"))
    +Out[19]: 
     DataFrame()
     +--------------+
     | num_elements |
    @@ -569,16 +582,16 @@ 

    ArraysIn this example, the num_elements column will contain 3 for both rows.

    To concatenate two arrays, you can use the function datafusion.functions.array_cat() or datafusion.functions.array_concat(). These functions return a new array that is the concatenation of the input arrays.

    -
    In [19]: from datafusion import SessionContext, col
    +
    In [20]: from datafusion import SessionContext, col
     
    -In [20]: from datafusion.functions import array_cat, array_concat
    +In [21]: from datafusion.functions import array_cat, array_concat
     
    -In [21]: ctx = SessionContext()
    +In [22]: ctx = SessionContext()
     
    -In [22]: df = ctx.from_pydict({"a": [[1, 2, 3]], "b": [[4, 5, 6]]})
    +In [23]: df = ctx.from_pydict({"a": [[1, 2, 3]], "b": [[4, 5, 6]]})
     
    -In [23]: df.select(array_cat(col("a"), col("b")).alias("concatenated_array"))
    -Out[23]: 
    +In [24]: df.select(array_cat(col("a"), col("b")).alias("concatenated_array"))
    +Out[24]: 
     DataFrame()
     +--------------------+
     | concatenated_array |
    @@ -590,16 +603,16 @@ 

    ArraysIn this example, the concatenated_array column will contain [1, 2, 3, 4, 5, 6].

    To repeat the elements of an array a specified number of times, you can use the function datafusion.functions.array_repeat(). This function returns a new array with the elements repeated.

    -
    In [24]: from datafusion import SessionContext, col, literal
    +
    In [25]: from datafusion import SessionContext, col, literal
     
    -In [25]: from datafusion.functions import array_repeat
    +In [26]: from datafusion.functions import array_repeat
     
    -In [26]: ctx = SessionContext()
    +In [27]: ctx = SessionContext()
     
    -In [27]: df = ctx.from_pydict({"a": [[1, 2, 3]]})
    +In [28]: df = ctx.from_pydict({"a": [[1, 2, 3]]})
     
    -In [28]: df.select(array_repeat(col("a"), literal(2)).alias("repeated_array"))
    -Out[28]: 
    +In [29]: df.select(array_repeat(col("a"), literal(2)).alias("repeated_array"))
    +Out[29]: 
     DataFrame()
     +------------------------+
     | repeated_array         |
    @@ -614,14 +627,14 @@ 

    ArraysStructs

    Columns that contain struct elements can be accessed using the bracket notation as if they were Python dictionary style objects. This expects a string key as the parameter passed.

    -
    In [29]: ctx = SessionContext()
    +
    In [30]: ctx = SessionContext()
     
    -In [30]: data = {"a": [{"size": 15, "color": "green"}, {"size": 10, "color": "blue"}]}
    +In [31]: data = {"a": [{"size": 15, "color": "green"}, {"size": 10, "color": "blue"}]}
     
    -In [31]: df = ctx.from_pydict(data)
    +In [32]: df = ctx.from_pydict(data)
     
    -In [32]: df.select(col("a")["size"].alias("a_size"))
    -Out[32]: 
    +In [33]: df.select(col("a")["size"].alias("a_size"))
    +Out[33]: 
     DataFrame()
     +--------+
     | a_size |
    @@ -638,17 +651,17 @@ 

    Functionsalias() is a function that takes as it input a single expression and returns an expression in which the name of the expression has changed.

    The following example shows a series of expressions that are built up from functions operating on expressions.

    -
    In [33]: from datafusion import SessionContext
    +
    In [34]: from datafusion import SessionContext
     
    -In [34]: from datafusion import column, lit
    +In [35]: from datafusion import column, lit
     
    -In [35]: from datafusion import functions as f
    +In [36]: from datafusion import functions as f
     
    -In [36]: import random
    +In [37]: import random
     
    -In [37]: ctx = SessionContext()
    +In [38]: ctx = SessionContext()
     
    -In [38]: df = ctx.from_pydict(
    +In [39]: df = ctx.from_pydict(
        ....:     {
        ....:         "name": ["Albert", "Becca", "Carlos", "Dante"],
        ....:         "age": [42, 67, 27, 71],
    @@ -658,20 +671,20 @@ 

    Functions....: ) ....: -In [39]: age_col = col("age") +In [40]: age_col = col("age") -In [40]: renamed_age = age_col.alias("age_in_years") +In [41]: renamed_age = age_col.alias("age_in_years") -In [41]: start_age = age_col - col("years_in_position") +In [42]: start_age = age_col - col("years_in_position") -In [42]: started_young = start_age < lit(18) +In [43]: started_young = start_age < lit(18) -In [43]: can_retire = age_col > lit(65) +In [44]: can_retire = age_col > lit(65) -In [44]: long_timer = started_young & can_retire +In [45]: long_timer = started_young & can_retire -In [45]: df.filter(long_timer).select(col("name"), renamed_age, col("years_in_position")) -Out[45]: +In [46]: df.filter(long_timer).select(col("name"), renamed_age, col("years_in_position")) +Out[46]: DataFrame() +-------+--------------+-------------------+ | name | age_in_years | years_in_position | diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index 916147c19..cfc85464f 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -556,16 +556,16 @@

    Temporal +--------------------------------+ | now() | +--------------------------------+ -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | -| 2025-08-29T01:44:48.517857695Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +| 2025-09-17T19:32:40.245872298Z | +--------------------------------+ Data truncated.

    diff --git a/user-guide/common-operations/windows.html b/user-guide/common-operations/windows.html index 4ac5a0952..ac2682ab1 100644 --- a/user-guide/common-operations/windows.html +++ b/user-guide/common-operations/windows.html @@ -470,11 +470,11 @@

    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.

    -

    The window functions are availble in the functions module.

    +

    The window functions are available in the functions module.

    We’ll use the pokemon dataset (from Ritchie Vink) in the following examples.

    In [1]: from datafusion import SessionContext
     
    -In [2]: from datafusion import col
    +In [2]: from datafusion import col, lit
     
     In [3]: from datafusion import functions as f
     
    @@ -590,8 +590,8 @@ 

    Window Frame
  • 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.

    @@ -606,17 +606,15 @@

    Window Frameorder_by clause.

    In this example we perform a “rolling average” of the speed of the current Pokemon and the -two preceeding rows.

    -
    In [9]: from datafusion.expr import WindowFrame
    +two preceding rows.

    +
    In [9]: from datafusion.expr import Window, WindowFrame
     
     In [10]: df.select(
        ....:     col('"Name"'),
        ....:     col('"Speed"'),
    -   ....:     f.window("avg",
    -   ....:         [col('"Speed"')],
    -   ....:         order_by=[col('"Speed"')],
    -   ....:         window_frame=WindowFrame("rows", 2, 0)
    -   ....:     ).alias("Previous Speed")
    +   ....:     f.avg(col('"Speed"'))
    +   ....:     .over(Window(window_frame=WindowFrame("rows", 2, 0), order_by=[col('"Speed"')]))
    +   ....:     .alias("Previous Speed"),
        ....: )
        ....: 
     Out[10]: 
    @@ -652,21 +650,27 @@ 

    Null TreatmentType 2 column that are null.

    In [11]: from datafusion.common import NullTreatment
     
    -In [12]: df.filter(col('"Type 1"') ==  lit("Bug")).select(
    +In [12]: df.filter(col('"Type 1"') == lit("Bug")).select(
        ....:     '"Name"',
        ....:     '"Type 2"',
    -   ....:     f.window("last_value", [col('"Type 2"')])
    -   ....:         .window_frame(WindowFrame("rows", None, 0))
    -   ....:         .order_by(col('"Speed"'))
    -   ....:         .null_treatment(NullTreatment.IGNORE_NULLS)
    -   ....:         .build()
    -   ....:         .alias("last_wo_null"),
    -   ....:     f.window("last_value", [col('"Type 2"')])
    -   ....:         .window_frame(WindowFrame("rows", None, 0))
    -   ....:         .order_by(col('"Speed"'))
    -   ....:         .null_treatment(NullTreatment.RESPECT_NULLS)
    -   ....:         .build()
    -   ....:         .alias("last_with_null")
    +   ....:     f.last_value(col('"Type 2"'))
    +   ....:     .over(
    +   ....:         Window(
    +   ....:             window_frame=WindowFrame("rows", None, 0),
    +   ....:             order_by=[col('"Speed"')],
    +   ....:             null_treatment=NullTreatment.IGNORE_NULLS,
    +   ....:         )
    +   ....:     )
    +   ....:     .alias("last_wo_null"),
    +   ....:     f.last_value(col('"Type 2"'))
    +   ....:     .over(
    +   ....:         Window(
    +   ....:             window_frame=WindowFrame("rows", None, 0),
    +   ....:             order_by=[col('"Speed"')],
    +   ....:             null_treatment=NullTreatment.RESPECT_NULLS,
    +   ....:         )
    +   ....:     )
    +   ....:     .alias("last_with_null"),
        ....: )
        ....: 
     Out[12]: 
    diff --git a/user-guide/configuration.html b/user-guide/configuration.html
    index f62b79b39..87ebc3ee6 100644
    --- a/user-guide/configuration.html
    +++ b/user-guide/configuration.html
    @@ -401,9 +401,33 @@
                   
                   
                   
    @@ -451,8 +475,126 @@ 

    Configurationprint(ctx)

    -

    You can read more about available SessionConfig options in the rust DataFusion Configuration guide, +

    +

    Maximizing CPU Usage

    +

    DataFusion uses partitions to parallelize work. For small queries the +default configuration (number of CPU cores) is often sufficient, but to +fully utilize available hardware you can tune how many partitions are +created and when DataFusion will repartition data automatically.

    +

    Configure a SessionContext with a higher partition count:

    +
    from datafusion import SessionConfig, SessionContext
    +
    +# allow up to 16 concurrent partitions
    +config = SessionConfig().with_target_partitions(16)
    +ctx = SessionContext(config)
    +
    +
    +

    Automatic repartitioning for joins, aggregations, window functions and +other operations can be enabled to increase parallelism:

    +
    config = (
    +    SessionConfig()
    +    .with_target_partitions(16)
    +    .with_repartition_joins(True)
    +    .with_repartition_aggregations(True)
    +    .with_repartition_windows(True)
    +)
    +
    +
    +

    Manual repartitioning is available on DataFrames when you need precise +control:

    +
    from datafusion import col
    +
    +df = ctx.read_parquet("data.parquet")
    +
    +# Evenly divide into 16 partitions
    +df = df.repartition(16)
    +
    +# Or partition by the hash of a column
    +df = df.repartition_by_hash(col("a"), num=16)
    +
    +result = df.collect()
    +
    +
    +
    +

    Benchmark Example

    +

    The repository includes a benchmark script that demonstrates how to maximize CPU usage +with DataFusion. The benchmarks/max_cpu_usage.py script shows a practical example +of configuring DataFusion for optimal parallelism.

    +

    You can run the benchmark script to see the impact of different configuration settings:

    +
    # Run with default settings (uses all CPU cores)
    +python benchmarks/max_cpu_usage.py
    +
    +# Run with specific number of rows and partitions
    +python benchmarks/max_cpu_usage.py --rows 5000000 --partitions 16
    +
    +# See all available options
    +python benchmarks/max_cpu_usage.py --help
    +
    +
    +

    Here’s an example showing the performance difference between single and multiple partitions:

    +
    # Single partition - slower processing
    +$ python benchmarks/max_cpu_usage.py --rows=10000000 --partitions 1
    +Processed 10000000 rows using 1 partitions in 0.107s
    +
    +# Multiple partitions - faster processing
    +$ python benchmarks/max_cpu_usage.py --rows=10000000 --partitions 10
    +Processed 10000000 rows using 10 partitions in 0.038s
    +
    +
    +

    This example demonstrates nearly 3x performance improvement (0.107s vs 0.038s) when using +10 partitions instead of 1, showcasing how proper partitioning can significantly improve +CPU utilization and query performance.

    +

    The script demonstrates several key optimization techniques:

    +
      +
    1. Higher target partition count: Uses with_target_partitions() to set the number of concurrent partitions

    2. +
    3. Automatic repartitioning: Enables repartitioning for joins, aggregations, and window functions

    4. +
    5. Manual repartitioning: Uses repartition() to ensure all partitions are utilized

    6. +
    7. CPU-intensive operations: Performs aggregations that can benefit from parallelization

    8. +
    +

    The benchmark creates synthetic data and measures the time taken to perform a sum aggregation +across the specified number of partitions. This helps you understand how partition configuration +affects performance on your specific hardware.

    +
    +

    Important Considerations

    +

    The provided benchmark script demonstrates partitioning concepts using synthetic in-memory data +and simple aggregation operations. While useful for understanding basic configuration principles, +actual performance in production environments may vary significantly based on numerous factors:

    +

    Data Sources and I/O Characteristics:

    +
      +
    • Table providers: Performance differs greatly between Parquet files, CSV files, databases, and cloud storage

    • +
    • Storage type: Local SSD, network-attached storage, and cloud storage have vastly different characteristics

    • +
    • Network latency: Remote data sources introduce additional latency considerations

    • +
    • File sizes and distribution: Large files may benefit differently from partitioning than many small files

    • +
    +

    Query and Workload Characteristics:

    +
      +
    • Operation complexity: Simple aggregations versus complex joins, window functions, or nested queries

    • +
    • Data distribution: Skewed data may not partition evenly, affecting parallel efficiency

    • +
    • Memory usage: Large datasets may require different memory management strategies

    • +
    • Concurrent workloads: Multiple queries running simultaneously affect resource allocation

    • +
    +

    Hardware and Environment Factors:

    +
      +
    • CPU architecture: Different processors have varying parallel processing capabilities

    • +
    • Available memory: Limited RAM may require different optimization strategies

    • +
    • System load: Other applications competing for resources affect DataFusion performance

    • +
    +

    Recommendations for Production Use:

    +

    To optimize DataFusion for your specific use case, it is strongly recommended to:

    +
      +
    1. Create custom benchmarks using your actual data sources, formats, and query patterns

    2. +
    3. Test with representative data volumes that match your production workloads

    4. +
    5. Measure end-to-end performance including data loading, processing, and result handling

    6. +
    7. Evaluate different configuration combinations for your specific hardware and workload

    8. +
    9. Monitor resource utilization (CPU, memory, I/O) to identify bottlenecks in your environment

    10. +
    +

    This approach will provide more accurate insights into how DataFusion configuration options +will impact your particular applications and infrastructure.

    +

    For more information about available SessionConfig options, see the rust DataFusion Configuration guide, and about RuntimeEnvBuilder options in the rust online API documentation.

    +
    +
    +

    diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html index a2a08fc28..a97fd0274 100644 --- a/user-guide/data-sources.html +++ b/user-guide/data-sources.html @@ -438,8 +438,8 @@
  • - - Iceberg + + Apache Iceberg
  • @@ -487,7 +487,7 @@

    DataFusion provides a wide variety of ways to get data into a DataFrame to perform operations.

    Local file

    -

    DataFusion has the abilty to read from a variety of popular file formats, such as Parquet, +

    DataFusion has the ability to read from a variety of popular file formats, such as Parquet, CSV, JSON, and AVRO.

    In [1]: from datafusion import SessionContext
     
    @@ -628,7 +628,7 @@ 

    Other DataFrame LibrariesPolars and Pandas. Since DataFusion version 42.0.0, any DataFrame library that supports the Arrow FFI PyCapsule interface can be imported to DataFusion using the -from_arrow() function. Older verions of Polars may +from_arrow() function. Older versions of Polars may not support the arrow interface. In those cases, you can still import via the from_polars() function.

    import pandas as pd
    @@ -674,16 +674,44 @@ 

    Delta Lake -

    Iceberg

    -

    Coming soon!

    +
    +

    Apache Iceberg

    +

    DataFusion 45.0.0 and later support the ability to register Apache Iceberg tables as table providers through the Custom Table Provider interface.

    +

    This requires either the pyiceberg library (>=0.10.0) or the pyiceberg-core library (>=0.5.0).

    +
      +
    • The pyiceberg-core library exposes Iceberg Rust’s implementation of the Custom Table Provider interface as python bindings.

    • +
    • The pyiceberg library utilizes the pyiceberg-core python bindings under the hood and provides a native way for Python users to interact with the DataFusion.

    • +
    +
    from datafusion import SessionContext
    +from pyiceberg.catalog import load_catalog
    +import pyarrow as pa
    +
    +# Load catalog and create/load a table
    +catalog = load_catalog("catalog", type="in-memory")
    +catalog.create_namespace_if_not_exists("default")
    +
    +# Create some sample data
    +data = pa.table({"x": [1, 2, 3], "y": [4, 5, 6]})
    +iceberg_table = catalog.create_table("default.test", schema=data.schema)
    +iceberg_table.append(data)
    +
    +# Register the table with DataFusion
    +ctx = SessionContext()
    +ctx.register_table_provider("test", iceberg_table)
    +
    +# Query the table using DataFusion
    +ctx.table("test").show()
    +
    +
    +

    Note that the Datafusion integration rely on features from the Iceberg Rust implementation instead of the PyIceberg implementation. +Features that are available in PyIceberg but not yet in Iceberg Rust will not be available when using DataFusion.

    Custom Table Provider

    You can implement a custom Data Provider in Rust and expose it to DataFusion through the the interface as describe in the Custom Table Provider section. This is an advanced topic, but a -user example +user example is provided in the DataFusion repository.

    diff --git a/user-guide/dataframe/index.html b/user-guide/dataframe/index.html index c463e85cd..cf5c2acd0 100644 --- a/user-guide/dataframe/index.html +++ b/user-guide/dataframe/index.html @@ -422,6 +422,11 @@ Common DataFrame Operations
  • +
  • + + Column Names as Function Arguments + +
  • Terminal Operations @@ -571,6 +576,46 @@

    Common DataFrame Operations +

    Column Names as Function Arguments

    +

    Some DataFrame methods accept column names when an argument refers to an +existing column. These include:

    +
      +
    • select()

    • +
    • sort()

    • +
    • drop()

    • +
    • join() (on argument)

    • +
    • aggregate() (grouping columns)

    • +
    +

    See the full function documentation for details on any specific function.

    +

    Note that join_on() expects col()/column() expressions rather than plain strings.

    +

    For such methods, you can pass column names directly:

    +
    from datafusion import col, functions as f
    +
    +df.sort('id')
    +df.aggregate('id', [f.count(col('value'))])
    +
    +
    +

    The same operation can also be written with explicit column expressions, using either col() or column():

    +
    from datafusion import col, column, functions as f
    +
    +df.sort(col('id'))
    +df.aggregate(column('id'), [f.count(col('value'))])
    +
    +
    +

    Note that column() is an alias of col(), so you can use either name; the example above shows both in action.

    +

    Whenever an argument represents an expression—such as in +filter() or +with_column()—use col() to reference +columns. The comparison and arithmetic operators on Expr will automatically +convert any non-Expr value into a literal expression, so writing

    +
    from datafusion import col
    +df.filter(col("age") > 21)
    +
    +
    +

    is equivalent to using lit(21) explicitly. Use lit() (also available +as literal()) when you need to construct a literal expression directly.

    +

    Terminal Operations

    To materialize the results of your DataFrame operations:

    diff --git a/user-guide/introduction.html b/user-guide/introduction.html index e04de54ea..df9a43faf 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -447,7 +447,7 @@

    Installation
    In [1]: import datafusion
     
     In [2]: datafusion.__version__
    -Out[2]: '49.0.0'
    +Out[2]: '50.0.0'
     

    In this documentation we will also show some examples for how DataFusion integrates From 77d9838c085845dd7a1b80236d71416d30e8f09a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 16 Oct 2025 17:13:59 +0000 Subject: [PATCH 30/36] Publish built docs triggered by 5646693c2b9f040e8801606f5916b24221738774 --- .../autoapi/datafusion/catalog/index.rst.txt | 40 +++- .../autoapi/datafusion/context/index.rst.txt | 22 +- .../datafusion/dataframe/index.rst.txt | 138 +++++++++-- _sources/autoapi/datafusion/index.rst.txt | 73 +++++- _sources/contributor-guide/ffi.rst.txt | 63 ++++- .../contributor-guide/introduction.rst.txt | 4 + _sources/user-guide/data-sources.rst.txt | 4 +- _sources/user-guide/io/table_provider.rst.txt | 20 +- autoapi/datafusion/catalog/index.html | 67 ++++-- autoapi/datafusion/context/index.html | 21 +- autoapi/datafusion/dataframe/index.html | 225 ++++++++++++++++-- autoapi/datafusion/index.html | 169 +++++++++++-- contributor-guide/ffi.html | 56 +++++ contributor-guide/introduction.html | 3 + genindex.html | 74 ++++-- objects.inv | Bin 8586 -> 8766 bytes searchindex.js | 2 +- .../common-operations/aggregations.html | 32 +-- user-guide/common-operations/basic-info.html | 34 +-- user-guide/common-operations/functions.html | 20 +- user-guide/data-sources.html | 2 +- user-guide/introduction.html | 2 +- user-guide/io/table_provider.html | 22 +- 23 files changed, 887 insertions(+), 206 deletions(-) diff --git a/_sources/autoapi/datafusion/catalog/index.rst.txt b/_sources/autoapi/datafusion/catalog/index.rst.txt index 9364aae2e..50fec8af3 100644 --- a/_sources/autoapi/datafusion/catalog/index.rst.txt +++ b/_sources/autoapi/datafusion/catalog/index.rst.txt @@ -63,7 +63,7 @@ Module Contents - .. py:method:: register_schema(name, schema) -> Schema | None + .. py:method:: register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) -> Schema | None Register a schema with this catalog. @@ -162,9 +162,9 @@ Module Contents - .. py:method:: register_table(name, table) -> None + .. py:method:: register_table(name: str, table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) -> None - Register a table provider in this schema. + Register a table in this schema. @@ -191,7 +191,7 @@ Module Contents Abstract class for defining a Python based Schema Provider. - .. py:method:: deregister_table(name, cascade: bool) -> None + .. py:method:: deregister_table(name: str, cascade: bool) -> None Remove a table from this schema. @@ -208,9 +208,9 @@ Module Contents - .. py:method:: register_table(name: str, table: Table) -> None + .. py:method:: register_table(name: str, table: Table | datafusion.context.TableProviderExportable | Any) -> None - Add a table from this schema. + Add a table to this schema. This method is optional. If your schema provides a fixed list of tables, you do not need to implement this method. @@ -241,11 +241,20 @@ Module Contents -.. py:class:: Table(table: datafusion._internal.catalog.RawTable) +.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) - DataFusion table. + A DataFusion table. - This constructor is not typically called by the end user. + Internally we currently support the following types of tables: + + - Tables created using built-in DataFusion methods, such as + reading from CSV or Parquet + - pyarrow datasets + - DataFusion DataFrames, which will be converted into a view + - Externally provided tables implemented with the FFI PyCapsule + interface (advanced) + + Constructor. .. py:method:: __repr__() -> str @@ -258,8 +267,16 @@ Module Contents :staticmethod: - Turn a pyarrow Dataset into a Table. + Turn a :mod:`pyarrow.dataset` ``Dataset`` into a :class:`Table`. + + + .. py:attribute:: __slots__ + :value: ('_inner',) + + + + .. py:attribute:: _inner .. py:property:: kind @@ -276,6 +293,3 @@ Module Contents Returns the schema associated with this table. - .. py:attribute:: table - - diff --git a/_sources/autoapi/datafusion/context/index.rst.txt b/_sources/autoapi/datafusion/context/index.rst.txt index 4725845e2..3641fe8e6 100644 --- a/_sources/autoapi/datafusion/context/index.rst.txt +++ b/_sources/autoapi/datafusion/context/index.rst.txt @@ -663,14 +663,10 @@ Module Contents - .. py:method:: read_table(table: datafusion.catalog.Table) -> datafusion.dataframe.DataFrame + .. py:method:: read_table(table: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) -> datafusion.dataframe.DataFrame Creates a :py:class:`~datafusion.dataframe.DataFrame` from a table. - For a :py:class:`~datafusion.catalog.Table` such as a - :py:class:`~datafusion.catalog.ListingTable`, create a - :py:class:`~datafusion.dataframe.DataFrame`. - .. py:method:: register_avro(name: str, path: str | pathlib.Path, schema: pyarrow.Schema | None = None, file_extension: str = '.avro', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None) -> None @@ -809,23 +805,23 @@ Module Contents - .. py:method:: register_table(name: str, table: datafusion.catalog.Table) -> None + .. py:method:: register_table(name: str, table: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) -> None - Register a :py:class: `~datafusion.catalog.Table` as a table. + Register a :py:class:`~datafusion.Table` with this context. - The registered table can be referenced from SQL statement executed against. + The registered table can be referenced from SQL statements executed against + this context. :param name: Name of the resultant table. - :param table: DataFusion table to add to the session context. + :param table: Any object that can be converted into a :class:`Table`. - .. py:method:: register_table_provider(name: str, provider: TableProviderExportable) -> None + .. py:method:: register_table_provider(name: str, provider: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) -> None Register a table provider. - This table provider must have a method called ``__datafusion_table_provider__`` - which returns a PyCapsule that exposes a ``FFI_TableProvider``. + Deprecated: use :meth:`register_table` instead. @@ -855,7 +851,7 @@ Module Contents .. py:method:: register_view(name: str, df: datafusion.dataframe.DataFrame) -> None - Register a :py:class: `~datafusion.detaframe.DataFrame` as a view. + Register a :py:class:`~datafusion.dataframe.DataFrame` as a view. :param name: The name to register the view under. :type name: str diff --git a/_sources/autoapi/datafusion/dataframe/index.rst.txt b/_sources/autoapi/datafusion/dataframe/index.rst.txt index cfc715bb1..8898ceaf0 100644 --- a/_sources/autoapi/datafusion/dataframe/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe/index.rst.txt @@ -18,6 +18,8 @@ Classes datafusion.dataframe.Compression datafusion.dataframe.DataFrame + datafusion.dataframe.DataFrameWriteOptions + datafusion.dataframe.InsertOp datafusion.dataframe.ParquetColumnOptions datafusion.dataframe.ParquetWriterOptions @@ -240,10 +242,20 @@ Module Contents Drop arbitrary amount of columns. - :param columns: Column names to drop from the dataframe. + Column names are case-sensitive and do not require double quotes like + other operations such as `select`. Leading and trailing double quotes + are allowed and will be automatically stripped if present. + + :param columns: Column names to drop from the dataframe. Both ``column_name`` + and ``"column_name"`` are accepted. :returns: DataFrame with those columns removed in the projection. + Example Usage:: + + df.drop('ID_For_Students') # Works + df.drop('"ID_For_Students"') # Also works (quotes stripped) + .. py:method:: except_all(other: DataFrame) -> DataFrame @@ -361,9 +373,19 @@ Module Contents - .. py:method:: into_view() -> pyarrow.Table + .. py:method:: into_view() -> datafusion.catalog.Table - Convert DataFrame as a ViewTable which can be used in register_table. + Convert ``DataFrame`` into a :class:`~datafusion.Table`. + + .. rubric:: Examples + + >>> from datafusion import SessionContext + >>> ctx = SessionContext() + >>> df = ctx.sql("SELECT 1 AS value") + >>> view = df.into_view() + >>> ctx.register_table("values_view", view) + >>> df.collect() # The DataFrame is still usable + >>> ctx.sql("SELECT value FROM values_view").collect() @@ -436,6 +458,27 @@ Module Contents + .. py:method:: parse_sql_expr(expr: str) -> datafusion.expr.Expr + + Creates logical expression from a SQL query text. + + The expression is created and processed against the current schema. + + Example:: + + from datafusion import col, lit + df.parse_sql_expr("a > 1") + + should produce: + + col("a") > lit(1) + + :param expr: Expression string to be converted to datafusion expression + + :returns: Logical expression . + + + .. py:method:: repartition(num: int) -> DataFrame Repartition a DataFrame into ``num`` partitions. @@ -693,47 +736,54 @@ Module Contents - .. py:method:: write_csv(path: str | pathlib.Path, with_header: bool = False) -> None + .. py:method:: write_csv(path: str | pathlib.Path, with_header: bool = False, write_options: DataFrameWriteOptions | None = None) -> None Execute the :py:class:`DataFrame` and write the results to a CSV file. :param path: Path of the CSV file to write. :param with_header: If true, output the CSV header row. + :param write_options: Options that impact how the DataFrame is written. - .. py:method:: write_json(path: str | pathlib.Path) -> None + .. py:method:: write_json(path: str | pathlib.Path, write_options: DataFrameWriteOptions | None = None) -> None Execute the :py:class:`DataFrame` and write the results to a JSON file. :param path: Path of the JSON file to write. + :param write_options: Options that impact how the DataFrame is written. - .. py:method:: write_parquet(path: str | pathlib.Path, compression: str, compression_level: int | None = None) -> None - write_parquet(path: str | pathlib.Path, compression: Compression = Compression.ZSTD, compression_level: int | None = None) -> None - write_parquet(path: str | pathlib.Path, compression: ParquetWriterOptions, compression_level: None = None) -> None + .. py:method:: write_parquet(path: str | pathlib.Path, compression: str, compression_level: int | None = None, write_options: DataFrameWriteOptions | None = None) -> None + write_parquet(path: str | pathlib.Path, compression: Compression = Compression.ZSTD, compression_level: int | None = None, write_options: DataFrameWriteOptions | None = None) -> None + write_parquet(path: str | pathlib.Path, compression: ParquetWriterOptions, compression_level: None = None, write_options: DataFrameWriteOptions | None = None) -> None Execute the :py:class:`DataFrame` and write the results to a Parquet file. + Available compression types are: + + - "uncompressed": No compression. + - "snappy": Snappy compression. + - "gzip": Gzip compression. + - "brotli": Brotli compression. + - "lz4": LZ4 compression. + - "lz4_raw": LZ4_RAW compression. + - "zstd": Zstandard compression. + + LZO compression is not yet implemented in arrow-rs and is therefore + excluded. + :param path: Path of the Parquet file to write. :param compression: Compression type to use. Default is "ZSTD". - Available compression types are: - - "uncompressed": No compression. - - "snappy": Snappy compression. - - "gzip": Gzip compression. - - "brotli": Brotli compression. - - "lz4": LZ4 compression. - - "lz4_raw": LZ4_RAW compression. - - "zstd": Zstandard compression. - :param Note: LZO is not yet implemented in arrow-rs and is therefore excluded. :param compression_level: Compression level to use. For ZSTD, the recommended range is 1 to 22, with the default being 4. Higher levels provide better compression but slower speed. + :param write_options: Options that impact how the DataFrame is written. - .. py:method:: write_parquet_with_options(path: str | pathlib.Path, options: ParquetWriterOptions) -> None + .. py:method:: write_parquet_with_options(path: str | pathlib.Path, options: ParquetWriterOptions, write_options: DataFrameWriteOptions | None = None) -> None Execute the :py:class:`DataFrame` and write the results to a Parquet file. @@ -741,12 +791,64 @@ Module Contents :param path: Path of the Parquet file to write. :param options: Sets the writer parquet options (see `ParquetWriterOptions`). + :param write_options: Options that impact how the DataFrame is written. + + + + .. py:method:: write_table(table_name: str, write_options: DataFrameWriteOptions | None = None) -> None + + Execute the :py:class:`DataFrame` and write the results to a table. + + The table must be registered with the session to perform this operation. + Not all table providers support writing operations. See the individual + implementations for details. .. py:attribute:: df +.. py:class:: DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None) + + Writer options for DataFrame. + + There is no guarantee the table provider supports all writer options. + See the individual implementation and documentation for details. + + Instantiate writer options for DataFrame. + + + .. py:attribute:: _raw_write_options + + +.. py:class:: InsertOp(*args, **kwds) + + Bases: :py:obj:`enum.Enum` + + + Insert operation mode. + + These modes are used by the table writing feature to define how record + batches should be written to a table. + + + .. py:attribute:: APPEND + + Appends new rows to the existing table without modifying any existing rows. + + + .. py:attribute:: OVERWRITE + + Overwrites all existing rows in the table with the new rows. + + + .. py:attribute:: REPLACE + + Replace existing rows that collide with the inserted rows. + + Replacement is typically based on a unique key or primary key. + + .. py:class:: ParquetColumnOptions(encoding: Optional[str] = None, dictionary_enabled: Optional[bool] = None, compression: Optional[str] = None, statistics_enabled: Optional[str] = None, bloom_filter_enabled: Optional[bool] = None, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None) Parquet options for individual columns. diff --git a/_sources/autoapi/datafusion/index.rst.txt b/_sources/autoapi/datafusion/index.rst.txt index 507c6ee19..e4208b05c 100644 --- a/_sources/autoapi/datafusion/index.rst.txt +++ b/_sources/autoapi/datafusion/index.rst.txt @@ -57,9 +57,11 @@ Classes datafusion.Accumulator datafusion.AggregateUDF datafusion.Catalog + datafusion.DataFrameWriteOptions datafusion.Database datafusion.ExecutionPlan datafusion.Expr + datafusion.InsertOp datafusion.LogicalPlan datafusion.ParquetColumnOptions datafusion.ParquetWriterOptions @@ -285,7 +287,7 @@ Package Contents - .. py:method:: register_schema(name, schema) -> Schema | None + .. py:method:: register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) -> Schema | None Register a schema with this catalog. @@ -306,6 +308,19 @@ Package Contents .. py:attribute:: catalog +.. py:class:: DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None) + + Writer options for DataFrame. + + There is no guarantee the table provider supports all writer options. + See the individual implementation and documentation for details. + + Instantiate writer options for DataFrame. + + + .. py:attribute:: _raw_write_options + + .. py:class:: Database(schema: datafusion._internal.catalog.RawSchema) Bases: :py:obj:`Schema` @@ -1224,6 +1239,34 @@ Package Contents .. py:attribute:: expr +.. py:class:: InsertOp(*args, **kwds) + + Bases: :py:obj:`enum.Enum` + + + Insert operation mode. + + These modes are used by the table writing feature to define how record + batches should be written to a table. + + + .. py:attribute:: APPEND + + Appends new rows to the existing table without modifying any existing rows. + + + .. py:attribute:: OVERWRITE + + Overwrites all existing rows in the table with the new rows. + + + .. py:attribute:: REPLACE + + Replace existing rows that collide with the inserted rows. + + Replacement is typically based on a unique key or primary key. + + .. py:class:: LogicalPlan(plan: datafusion._internal.LogicalPlan) Logical Plan. @@ -2025,11 +2068,20 @@ Package Contents .. py:attribute:: config_internal -.. py:class:: Table(table: datafusion._internal.catalog.RawTable) +.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) - DataFusion table. + A DataFusion table. - This constructor is not typically called by the end user. + Internally we currently support the following types of tables: + + - Tables created using built-in DataFusion methods, such as + reading from CSV or Parquet + - pyarrow datasets + - DataFusion DataFrames, which will be converted into a view + - Externally provided tables implemented with the FFI PyCapsule + interface (advanced) + + Constructor. .. py:method:: __repr__() -> str @@ -2042,10 +2094,18 @@ Package Contents :staticmethod: - Turn a pyarrow Dataset into a Table. + Turn a :mod:`pyarrow.dataset` ``Dataset`` into a :class:`Table`. + + + + .. py:attribute:: __slots__ + :value: ('_inner',) + .. py:attribute:: _inner + + .. py:property:: kind :type: str @@ -2060,9 +2120,6 @@ Package Contents Returns the schema associated with this table. - .. py:attribute:: table - - .. py:class:: TableFunction(name: str, func: Callable[[], any]) Class for performing user-defined table functions (UDTF). diff --git a/_sources/contributor-guide/ffi.rst.txt b/_sources/contributor-guide/ffi.rst.txt index e201db71e..64413866f 100644 --- a/_sources/contributor-guide/ffi.rst.txt +++ b/_sources/contributor-guide/ffi.rst.txt @@ -34,7 +34,7 @@ as performant as possible and to utilize the features of DataFusion, you may dec your source in Rust and then expose it through `PyO3 `_ as a Python library. At first glance, it may appear the best way to do this is to add the ``datafusion-python`` -crate as a dependency, provide a ``PyTable``, and then to register it with the +crate as a dependency, provide a ``PyTable``, and then to register it with the ``SessionContext``. Unfortunately, this will not work. When you produce your code as a Python library and it needs to interact with the DataFusion @@ -137,6 +137,67 @@ and you want to create a sharable FFI counterpart, you could write: let my_provider = MyTableProvider::default(); let ffi_provider = FFI_TableProvider::new(Arc::new(my_provider), false, None); +.. _ffi_pyclass_mutability: + +PyO3 class mutability guidelines +-------------------------------- + +PyO3 bindings should present immutable wrappers whenever a struct stores shared or +interior-mutable state. In practice this means that any ``#[pyclass]`` containing an +``Arc>`` or similar synchronized primitive must opt into ``#[pyclass(frozen)]`` +unless there is a compelling reason not to. + +The :mod:`datafusion` configuration helpers illustrate the preferred pattern. The +``PyConfig`` class in :file:`src/config.rs` stores an ``Arc>`` and is +explicitly frozen so callers interact with configuration state through provided methods +instead of mutating the container directly: + +.. code-block:: rust + + #[pyclass(name = "Config", module = "datafusion", subclass, frozen)] + #[derive(Clone)] + pub(crate) struct PyConfig { + config: Arc>, + } + +The same approach applies to execution contexts. ``PySessionContext`` in +:file:`src/context.rs` stays frozen even though it shares mutable state internally via +``SessionContext``. This ensures PyO3 tracks borrows correctly while Python-facing APIs +clone the inner ``SessionContext`` or return new wrappers instead of mutating the +existing instance in place: + +.. code-block:: rust + + #[pyclass(frozen, name = "SessionContext", module = "datafusion", subclass)] + #[derive(Clone)] + pub struct PySessionContext { + pub ctx: SessionContext, + } + +Occasionally a type must remain mutable—for example when PyO3 attribute setters need to +update fields directly. In these rare cases add an inline justification so reviewers and +future contributors understand why ``frozen`` is unsafe to enable. ``DataTypeMap`` in +:file:`src/common/data_type.rs` includes such a comment because PyO3 still needs to track +field updates: + +.. code-block:: rust + + // TODO: This looks like this needs pyo3 tracking so leaving unfrozen for now + #[derive(Debug, Clone)] + #[pyclass(name = "DataTypeMap", module = "datafusion.common", subclass)] + pub struct DataTypeMap { + #[pyo3(get, set)] + pub arrow_type: PyDataType, + #[pyo3(get, set)] + pub python_type: PythonType, + #[pyo3(get, set)] + pub sql_type: SqlType, + } + +When reviewers encounter a mutable ``#[pyclass]`` without a comment, they should request +an explanation or ask that ``frozen`` be added. Keeping these wrappers frozen by default +helps avoid subtle bugs stemming from PyO3's interior mutability tracking. + If you were interfacing with a library that provided the above ``FFI_TableProvider`` and you needed to turn it back into an ``TableProvider``, you can turn it into a ``ForeignTableProvider`` with implements the ``TableProvider`` trait. diff --git a/_sources/contributor-guide/introduction.rst.txt b/_sources/contributor-guide/introduction.rst.txt index 6cb05c62d..33c2b274c 100644 --- a/_sources/contributor-guide/introduction.rst.txt +++ b/_sources/contributor-guide/introduction.rst.txt @@ -26,6 +26,10 @@ We welcome and encourage contributions of all kinds, such as: In addition to submitting new PRs, we have a healthy tradition of community members reviewing each other’s PRs. Doing so is a great way to help the community as well as get more familiar with Rust and the relevant codebases. +Before opening a pull request that touches PyO3 bindings, please review the +:ref:`PyO3 class mutability guidelines ` so you can flag missing +``#[pyclass(frozen)]`` annotations during development and review. + How to develop -------------- diff --git a/_sources/user-guide/data-sources.rst.txt b/_sources/user-guide/data-sources.rst.txt index a9b119b93..26f1303c4 100644 --- a/_sources/user-guide/data-sources.rst.txt +++ b/_sources/user-guide/data-sources.rst.txt @@ -154,11 +154,11 @@ as Delta Lake. This will require a recent version of from deltalake import DeltaTable delta_table = DeltaTable("path_to_table") - ctx.register_table_provider("my_delta_table", delta_table) + ctx.register_table("my_delta_table", delta_table) df = ctx.table("my_delta_table") df.show() -On older versions of ``deltalake`` (prior to 0.22) you can use the +On older versions of ``deltalake`` (prior to 0.22) you can use the `Arrow DataSet `_ interface to import to DataFusion, but this does not support features such as filter push down which can lead to a significant performance difference. diff --git a/_sources/user-guide/io/table_provider.rst.txt b/_sources/user-guide/io/table_provider.rst.txt index bd1d6b80f..29e5d9880 100644 --- a/_sources/user-guide/io/table_provider.rst.txt +++ b/_sources/user-guide/io/table_provider.rst.txt @@ -37,22 +37,26 @@ A complete example can be found in the `examples folder , ) -> PyResult> { - let name = CString::new("datafusion_table_provider").unwrap(); + let name = cr"datafusion_table_provider".into(); - let provider = Arc::new(self.clone()) - .map_err(|e| PyRuntimeError::new_err(e.to_string()))?; - let provider = FFI_TableProvider::new(Arc::new(provider), false); + let provider = Arc::new(self.clone()); + let provider = FFI_TableProvider::new(provider, false, None); PyCapsule::new_bound(py, provider, Some(name.clone())) } } -Once you have this library available, in python you can register your table provider -to the ``SessionContext``. +Once you have this library available, you can construct a +:py:class:`~datafusion.Table` in Python and register it with the +``SessionContext``. .. code-block:: python + from datafusion import SessionContext, Table + + ctx = SessionContext() provider = MyTableProvider() - ctx.register_table_provider("my_table", provider) - ctx.table("my_table").show() + ctx.register_table("capsule_table", provider) + + ctx.table("capsule_table").show() diff --git a/autoapi/datafusion/catalog/index.html b/autoapi/datafusion/catalog/index.html index 64d0e67c9..862ded08f 100644 --- a/autoapi/datafusion/catalog/index.html +++ b/autoapi/datafusion/catalog/index.html @@ -732,28 +732,37 @@

  • - + - Table.kind + Table.__slots__
  • - + - Table.schema + Table._inner + + + +
  • +
  • + + + + Table.kind
  • - + - Table.table + Table.schema @@ -803,7 +812,7 @@

    Classes

  • - +
    -
  • encoding (datafusion.dataframe.ParquetColumnOptions attribute), [1] +
  • encoding (datafusion.dataframe.ParquetColumnOptions attribute)
  • end() (datafusion.expr.CaseBuilder method)
  • ends_with() (in module datafusion.functions) +
  • +
  • ensure_expr() (in module datafusion.expr) +
  • +
  • ensure_expr_list() (in module datafusion.expr)
  • evaluate() (datafusion.Accumulator method) @@ -1830,6 +1832,8 @@

    E

  • expr() (datafusion.expr.SortExpr method) +
  • +
  • EXPR_TYPE_ERROR (in module datafusion.expr)
  • Extension (in module datafusion.expr)
  • @@ -2381,24 +2385,24 @@

    M

  • max_memory_bytes (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • max_row_group_size (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • max_row_group_size (datafusion.dataframe.ParquetWriterOptions attribute)
  • max_width (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • maximum_buffered_record_batches_per_stream (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • maximum_buffered_record_batches_per_stream (datafusion.dataframe.ParquetWriterOptions attribute)
  • -
  • maximum_parallel_row_group_writers (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • maximum_parallel_row_group_writers (datafusion.dataframe.ParquetWriterOptions attribute)
  • md5() (datafusion.Expr method) @@ -3016,10 +3020,10 @@

    S

  • (in module datafusion.functions)
  • -
  • skip_arrow_metadata (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • skip_arrow_metadata (datafusion.dataframe.ParquetWriterOptions attribute)
  • SNAPPY (datafusion.dataframe.Compression attribute) @@ -3035,6 +3039,8 @@

    S

  • SortExpr (class in datafusion.expr) +
  • +
  • SortKey (in module datafusion.expr)
  • split_part() (in module datafusion.functions)
  • @@ -3068,20 +3074,20 @@

    S

  • (datafusion.user_defined.Accumulator method)
  • -
  • statistics_enabled (datafusion.dataframe.ParquetColumnOptions attribute), [1] +
  • statistics_enabled (datafusion.dataframe.ParquetColumnOptions attribute)
  • -
  • statistics_truncate_length (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • statistics_truncate_length (datafusion.dataframe.ParquetWriterOptions attribute)
  • stddev() (in module datafusion.functions) @@ -3590,10 +3596,10 @@

    W

  • (datafusion.RuntimeEnvBuilder method)
  • -
  • write_batch_size (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • write_batch_size (datafusion.dataframe.ParquetWriterOptions attribute)
  • write_csv() (datafusion.dataframe.DataFrame method) @@ -3604,10 +3610,10 @@

    W

  • write_parquet_with_options() (datafusion.dataframe.DataFrame method)
  • -
  • writer_version (datafusion.dataframe.ParquetWriterOptions attribute), [1] +
  • writer_version (datafusion.dataframe.ParquetWriterOptions attribute)
  • Abstract class for defining a Python based Schema Provider.

    Table

    DataFusion table.

    A DataFusion table.

    @@ -847,7 +856,7 @@

    Module Contents
    -register_schema(name, schema) Schema | None
    +register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) Schema | None

    Register a schema with this catalog.

    @@ -944,8 +953,8 @@

    Module Contents
    -register_table(name, table) None
    -

    Register a table provider in this schema.

    +register_table(name: str, table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) None +

    Register a table in this schema.

    @@ -974,7 +983,7 @@

    Module Contents
    -deregister_table(name, cascade: bool) None
    +deregister_table(name: str, cascade: bool) None

    Remove a table from this schema.

    This method is optional. If your schema provides a fixed list of tables, you do not need to implement this method.

    @@ -989,8 +998,8 @@

    Module Contents
    -register_table(name: str, table: Table) None
    -

    Add a table from this schema.

    +register_table(name: str, table: Table | datafusion.context.TableProviderExportable | Any) None +

    Add a table to this schema.

    This method is optional. If your schema provides a fixed list of tables, you do not need to implement this method.

    @@ -1017,9 +1026,18 @@

    Module Contents
    -class datafusion.catalog.Table(table: datafusion._internal.catalog.RawTable)
    -

    DataFusion table.

    -

    This constructor is not typically called by the end user.

    +class datafusion.catalog.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) +

    A DataFusion table.

    +

    Internally we currently support the following types of tables:

    +
      +
    • Tables created using built-in DataFusion methods, such as +reading from CSV or Parquet

    • +
    • pyarrow datasets

    • +
    • DataFusion DataFrames, which will be converted into a view

    • +
    • Externally provided tables implemented with the FFI PyCapsule +interface (advanced)

    • +
    +

    Constructor.

    __repr__() str
    @@ -1029,9 +1047,19 @@

    Module Contents
    static from_dataset(dataset: pyarrow.dataset.Dataset) Table
    -

    Turn a pyarrow Dataset into a Table.

    +

    Turn a pyarrow.dataset Dataset into a Table.

    +
    +
    +__slots__ = ('_inner',)
    +
    + +
    +
    +_inner
    +
    +
    property kind: str
    @@ -1044,11 +1072,6 @@

    Module Contents -
    -table
    -

    -
    diff --git a/autoapi/datafusion/context/index.html b/autoapi/datafusion/context/index.html index 6ab8fbc0c..cfd76c86e 100644 --- a/autoapi/datafusion/context/index.html +++ b/autoapi/datafusion/context/index.html @@ -2039,11 +2039,8 @@

    Module Contents
    -read_table(table: datafusion.catalog.Table) datafusion.dataframe.DataFrame
    +read_table(table: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) datafusion.dataframe.DataFrame

    Creates a DataFrame from a table.

    -

    For a Table such as a -ListingTable, create a -DataFrame.

    @@ -2218,14 +2215,15 @@

    Module Contents
    -register_table(name: str, table: datafusion.catalog.Table) None
    -

    Register a :py:class: ~datafusion.catalog.Table as a table.

    -

    The registered table can be referenced from SQL statement executed against.

    +register_table(name: str, table: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) None +

    Register a Table with this context.

    +

    The registered table can be referenced from SQL statements executed against +this context.

    Parameters:
    • name – Name of the resultant table.

    • -
    • table – DataFusion table to add to the session context.

    • +
    • table – Any object that can be converted into a Table.

    @@ -2233,10 +2231,9 @@

    Module Contents
    -register_table_provider(name: str, provider: TableProviderExportable) None
    +register_table_provider(name: str, provider: datafusion.catalog.Table | TableProviderExportable | datafusion.dataframe.DataFrame | pyarrow.dataset.Dataset) None

    Register a table provider.

    -

    This table provider must have a method called __datafusion_table_provider__ -which returns a PyCapsule that exposes a FFI_TableProvider.

    +

    Deprecated: use register_table() instead.

    @@ -2266,7 +2263,7 @@

    Module Contents
    register_view(name: str, df: datafusion.dataframe.DataFrame) None
    -

    Register a :py:class: ~datafusion.detaframe.DataFrame as a view.

    +

    Register a DataFrame as a view.

    Parameters:

  • +
  • + + + + DataFrameWriteOptions + + + + +
  • +
  • + + + + InsertOp + + + + +
  • @@ -1308,6 +1384,12 @@

    Classes

    DataFrame

    Two dimensional table representation of data.

    +

    DataFrameWriteOptions

    +

    Writer options for DataFrame.

    + +

    InsertOp

    +

    Insert operation mode.

    +

    ParquetColumnOptions

    Parquet options for individual columns.

    @@ -1568,14 +1650,23 @@

    Module Contents drop(*columns: str) DataFrame

    Drop arbitrary amount of columns.

    +

    Column names are case-sensitive and do not require double quotes like +other operations such as select. Leading and trailing double quotes +are allowed and will be automatically stripped if present.

    Parameters:
    -

    columns – Column names to drop from the dataframe.

    +

    columns – Column names to drop from the dataframe. Both column_name +and "column_name" are accepted.

    Returns:

    DataFrame with those columns removed in the projection.

    +

    Example Usage:

    +
    df.drop('ID_For_Students')      # Works
    +df.drop('"ID_For_Students"')    # Also works (quotes stripped)
    +
    +
    @@ -1727,8 +1818,18 @@

    Module Contents
    -into_view() pyarrow.Table
    -

    Convert DataFrame as a ViewTable which can be used in register_table.

    +into_view() datafusion.catalog.Table +

    Convert DataFrame into a Table.

    +

    Examples

    +
    >>> from datafusion import SessionContext
    +>>> ctx = SessionContext()
    +>>> df = ctx.sql("SELECT 1 AS value")
    +>>> view = df.into_view()
    +>>> ctx.register_table("values_view", view)
    +>>> df.collect()  # The DataFrame is still usable
    +>>> ctx.sql("SELECT value FROM values_view").collect()
    +
    +

    @@ -1824,6 +1925,30 @@

    Module Contents +
    +parse_sql_expr(expr: str) datafusion.expr.Expr
    +

    Creates logical expression from a SQL query text.

    +

    The expression is created and processed against the current schema.

    +

    Example:

    +
    from datafusion import col, lit
    +df.parse_sql_expr("a > 1")
    +
    +should produce:
    +
    +col("a") > lit(1)
    +
    +
    +
    +
    Parameters:
    +

    expr – Expression string to be converted to datafusion expression

    +
    +
    Returns:
    +

    Logical expression .

    +
    +
    +

    +
    repartition(num: int) DataFrame
    @@ -2159,13 +2284,14 @@

    Module Contents
    -write_csv(path: str | pathlib.Path, with_header: bool = False) None
    +write_csv(path: str | pathlib.Path, with_header: bool = False, write_options: DataFrameWriteOptions | None = None) None

    Execute the DataFrame and write the results to a CSV file.

    Parameters:
    • path – Path of the CSV file to write.

    • with_header – If true, output the CSV header row.

    • +
    • write_options – Options that impact how the DataFrame is written.

    @@ -2173,40 +2299,47 @@

    Module Contents
    -write_json(path: str | pathlib.Path) None
    +write_json(path: str | pathlib.Path, write_options: DataFrameWriteOptions | None = None) None

    Execute the DataFrame and write the results to a JSON file.

    Parameters:
    -

    path – Path of the JSON file to write.

    +
      +
    • path – Path of the JSON file to write.

    • +
    • write_options – Options that impact how the DataFrame is written.

    • +

    -write_parquet(path: str | pathlib.Path, compression: str, compression_level: int | None = None) None
    +write_parquet(path: str | pathlib.Path, compression: str, compression_level: int | None = None, write_options: DataFrameWriteOptions | None = None) None
    -write_parquet(path: str | pathlib.Path, compression: Compression = Compression.ZSTD, compression_level: int | None = None) None
    +write_parquet(path: str | pathlib.Path, compression: Compression = Compression.ZSTD, compression_level: int | None = None, write_options: DataFrameWriteOptions | None = None) None
    -write_parquet(path: str | pathlib.Path, compression: ParquetWriterOptions, compression_level: None = None) None
    +write_parquet(path: str | pathlib.Path, compression: ParquetWriterOptions, compression_level: None = None, write_options: DataFrameWriteOptions | None = None) None

    Execute the DataFrame and write the results to a Parquet file.

    +

    Available compression types are:

    +
      +
    • “uncompressed”: No compression.

    • +
    • “snappy”: Snappy compression.

    • +
    • “gzip”: Gzip compression.

    • +
    • “brotli”: Brotli compression.

    • +
    • “lz4”: LZ4 compression.

    • +
    • “lz4_raw”: LZ4_RAW compression.

    • +
    • “zstd”: Zstandard compression.

    • +
    +

    LZO compression is not yet implemented in arrow-rs and is therefore +excluded.

    Parameters:
    • path – Path of the Parquet file to write.

    • -
    • compression – Compression type to use. Default is “ZSTD”. -Available compression types are: -- “uncompressed”: No compression. -- “snappy”: Snappy compression. -- “gzip”: Gzip compression. -- “brotli”: Brotli compression. -- “lz4”: LZ4 compression. -- “lz4_raw”: LZ4_RAW compression. -- “zstd”: Zstandard compression.

    • -
    • Note – LZO is not yet implemented in arrow-rs and is therefore excluded.

    • +
    • compression – Compression type to use. Default is “ZSTD”.

    • compression_level – Compression level to use. For ZSTD, the recommended range is 1 to 22, with the default being 4. Higher levels provide better compression but slower speed.

    • +
    • write_options – Options that impact how the DataFrame is written.

    @@ -2214,7 +2347,7 @@

    Module Contents
    -write_parquet_with_options(path: str | pathlib.Path, options: ParquetWriterOptions) None
    +write_parquet_with_options(path: str | pathlib.Path, options: ParquetWriterOptions, write_options: DataFrameWriteOptions | None = None) None

    Execute the DataFrame and write the results to a Parquet file.

    Allows advanced writer options to be set with ParquetWriterOptions.

    @@ -2222,11 +2355,21 @@

    Module Contents
    • path – Path of the Parquet file to write.

    • options – Sets the writer parquet options (see ParquetWriterOptions).

    • +
    • write_options – Options that impact how the DataFrame is written.

    +
    +
    +write_table(table_name: str, write_options: DataFrameWriteOptions | None = None) None
    +

    Execute the DataFrame and write the results to a table.

    +

    The table must be registered with the session to perform this operation. +Not all table providers support writing operations. See the individual +implementations for details.

    +
    +
    df
    @@ -2234,6 +2377,48 @@

    Module Contents +
    +class datafusion.dataframe.DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None)
    +

    Writer options for DataFrame.

    +

    There is no guarantee the table provider supports all writer options. +See the individual implementation and documentation for details.

    +

    Instantiate writer options for DataFrame.

    +
    +
    +_raw_write_options
    +
    + +

    + +
    +
    +class datafusion.dataframe.InsertOp(*args, **kwds)
    +

    Bases: enum.Enum

    +

    Insert operation mode.

    +

    These modes are used by the table writing feature to define how record +batches should be written to a table.

    +
    +
    +APPEND
    +

    Appends new rows to the existing table without modifying any existing rows.

    +
    + +
    +
    +OVERWRITE
    +

    Overwrites all existing rows in the table with the new rows.

    +
    + +
    +
    +REPLACE
    +

    Replace existing rows that collide with the inserted rows.

    +

    Replacement is typically based on a unique key or primary key.

    +
    + +
    +
    class datafusion.dataframe.ParquetColumnOptions(encoding: str | None = None, dictionary_enabled: bool | None = None, compression: str | None = None, statistics_enabled: str | None = None, bloom_filter_enabled: bool | None = None, bloom_filter_fpp: float | None = None, bloom_filter_ndv: int | None = None)
    diff --git a/autoapi/datafusion/index.html b/autoapi/datafusion/index.html index a6b550708..fab8b5105 100644 --- a/autoapi/datafusion/index.html +++ b/autoapi/datafusion/index.html @@ -627,6 +627,26 @@

  • +
  • + + + + DataFrameWriteOptions + + + + +
  • @@ -1819,6 +1839,44 @@
  • +
  • + + + + InsertOp + + + + +
  • @@ -2630,28 +2688,37 @@
  • - + - Table.kind + Table.__slots__
  • - + - Table.schema + Table._inner
  • - + - Table.table + Table.kind + + + +
  • +
  • + + + + Table.schema @@ -3088,15 +3155,21 @@

    Classes

    Catalog

    DataFusion data catalog.

    -

    Database

    +

    DataFrameWriteOptions

    +

    Writer options for DataFrame.

    + +

    Database

    See Schema.

    -

    ExecutionPlan

    +

    ExecutionPlan

    Represent nodes in the DataFusion Physical Plan.

    -

    Expr

    +

    Expr

    Expression object.

    +

    InsertOp

    +

    Insert operation mode.

    +

    LogicalPlan

    Logical Plan.

    @@ -3125,7 +3198,7 @@

    Classes

    Session configuration options.

    Table

    -

    DataFusion table.

    +

    A DataFusion table.

    TableFunction

    Class for performing user-defined table functions (UDTF).

    @@ -3355,7 +3428,7 @@

    Package Contents
    -register_schema(name, schema) Schema | None
    +register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) Schema | None

    Register a schema with this catalog.

    @@ -3378,6 +3451,20 @@

    Package Contents +
    +class datafusion.DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None)
    +

    Writer options for DataFrame.

    +

    There is no guarantee the table provider supports all writer options. +See the individual implementation and documentation for details.

    +

    Instantiate writer options for DataFrame.

    +
    +
    +_raw_write_options
    +
    + +
    +
    class datafusion.Database(schema: datafusion._internal.catalog.RawSchema)
    @@ -4299,6 +4386,34 @@

    Returns:

    +
    +
    +class datafusion.InsertOp(*args, **kwds)
    +

    Bases: enum.Enum

    +

    Insert operation mode.

    +

    These modes are used by the table writing feature to define how record +batches should be written to a table.

    +
    +
    +APPEND
    +

    Appends new rows to the existing table without modifying any existing rows.

    +
    + +
    +
    +OVERWRITE
    +

    Overwrites all existing rows in the table with the new rows.

    +
    + +
    +
    +REPLACE
    +

    Replace existing rows that collide with the inserted rows.

    +

    Replacement is typically based on a unique key or primary key.

    +
    + +
    +
    class datafusion.LogicalPlan(plan: datafusion._internal.LogicalPlan)
    @@ -5196,9 +5311,18 @@

    Returns:
    -class datafusion.Table(table: datafusion._internal.catalog.RawTable)
    -

    DataFusion table.

    -

    This constructor is not typically called by the end user.

    +class datafusion.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) +

    A DataFusion table.

    +

    Internally we currently support the following types of tables:

    +
      +
    • Tables created using built-in DataFusion methods, such as +reading from CSV or Parquet

    • +
    • pyarrow datasets

    • +
    • DataFusion DataFrames, which will be converted into a view

    • +
    • Externally provided tables implemented with the FFI PyCapsule +interface (advanced)

    • +
    +

    Constructor.

    __repr__() str
    @@ -5208,9 +5332,19 @@

    Returns:
    static from_dataset(dataset: pyarrow.dataset.Dataset) Table
    -

    Turn a pyarrow Dataset into a Table.

    +

    Turn a pyarrow.dataset Dataset into a Table.

    +
    +
    +__slots__ = ('_inner',)
    +
    + +
    +
    +_inner
    +
    +
    property kind: str
    @@ -5223,11 +5357,6 @@

    Returns:

    Returns the schema associated with this table.

    -
    -
    -table
    -
    -
    diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html index 0439f3231..1c61dffea 100644 --- a/contributor-guide/ffi.html +++ b/contributor-guide/ffi.html @@ -427,6 +427,11 @@ Implementation Details

  • +
  • + + PyO3 class mutability guidelines + +
  • Alternative Approach @@ -560,6 +565,57 @@

    Implementation Detailslet ffi_provider = FFI_TableProvider::new(Arc::new(my_provider), false, None); + +
    +

    PyO3 class mutability guidelines

    +

    PyO3 bindings should present immutable wrappers whenever a struct stores shared or +interior-mutable state. In practice this means that any #[pyclass] containing an +Arc<RwLock<_>> or similar synchronized primitive must opt into #[pyclass(frozen)] +unless there is a compelling reason not to.

    +

    The datafusion configuration helpers illustrate the preferred pattern. The +PyConfig class in src/config.rs stores an Arc<RwLock<ConfigOptions>> and is +explicitly frozen so callers interact with configuration state through provided methods +instead of mutating the container directly:

    +
    #[pyclass(name = "Config", module = "datafusion", subclass, frozen)]
    +#[derive(Clone)]
    +pub(crate) struct PyConfig {
    +    config: Arc<RwLock<ConfigOptions>>,
    +}
    +
    +
    +

    The same approach applies to execution contexts. PySessionContext in +src/context.rs stays frozen even though it shares mutable state internally via +SessionContext. This ensures PyO3 tracks borrows correctly while Python-facing APIs +clone the inner SessionContext or return new wrappers instead of mutating the +existing instance in place:

    +
    #[pyclass(frozen, name = "SessionContext", module = "datafusion", subclass)]
    +#[derive(Clone)]
    +pub struct PySessionContext {
    +    pub ctx: SessionContext,
    +}
    +
    +
    +

    Occasionally a type must remain mutable—for example when PyO3 attribute setters need to +update fields directly. In these rare cases add an inline justification so reviewers and +future contributors understand why frozen is unsafe to enable. DataTypeMap in +src/common/data_type.rs includes such a comment because PyO3 still needs to track +field updates:

    +
    // TODO: This looks like this needs pyo3 tracking so leaving unfrozen for now
    +#[derive(Debug, Clone)]
    +#[pyclass(name = "DataTypeMap", module = "datafusion.common", subclass)]
    +pub struct DataTypeMap {
    +    #[pyo3(get, set)]
    +    pub arrow_type: PyDataType,
    +    #[pyo3(get, set)]
    +    pub python_type: PythonType,
    +    #[pyo3(get, set)]
    +    pub sql_type: SqlType,
    +}
    +
    +
    +

    When reviewers encounter a mutable #[pyclass] without a comment, they should request +an explanation or ask that frozen be added. Keeping these wrappers frozen by default +helps avoid subtle bugs stemming from PyO3’s interior mutability tracking.

    If you were interfacing with a library that provided the above FFI_TableProvider and you needed to turn it back into an TableProvider, you can turn it into a ForeignTableProvider with implements the TableProvider trait.

    diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html index 37db30084..255f40973 100644 --- a/contributor-guide/introduction.html +++ b/contributor-guide/introduction.html @@ -463,6 +463,9 @@

    IntroductionPyO3 class mutability guidelines so you can flag missing +#[pyclass(frozen)] annotations during development and review.

    How to develop

    This assumes that you have rust and cargo installed. We use the workflow recommended by diff --git a/genindex.html b/genindex.html index ed00262d7..b07a6ea90 100644 --- a/genindex.html +++ b/genindex.html @@ -679,6 +679,12 @@

    _

  • +
  • __slots__ (datafusion.catalog.Table attribute) + +
  • __str__() (datafusion.user_defined.Volatility method) @@ -757,6 +763,12 @@

    _

  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • +
  • _inner (datafusion.catalog.Table attribute) + +
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method)
      @@ -783,6 +795,12 @@

      _

  • _raw_schema (datafusion.catalog.Schema attribute)
  • +
  • _raw_write_options (datafusion.dataframe.DataFrameWriteOptions attribute) + +
  • _refresh_formatter_reference() (in module datafusion.dataframe_formatter)
  • _repr_html_() (datafusion.dataframe.DataFrame method) @@ -895,6 +913,12 @@

    A

  • Analyze (in module datafusion.expr)
  • +
  • APPEND (datafusion.dataframe.InsertOp attribute) + +
  • approx_distinct() (in module datafusion.functions)
  • approx_median() (in module datafusion.functions) @@ -952,11 +976,11 @@

    A

  • array_indexof() (in module datafusion.functions)
  • array_intersect() (in module datafusion.functions) -
  • -
  • array_join() (in module datafusion.functions)
  • - +
  • overlay() (in module datafusion.functions)
  • +
  • OVERWRITE (datafusion.dataframe.InsertOp attribute) + +
  • owner_name() (datafusion.catalog.SchemaProvider method)
  • @@ -2596,6 +2638,8 @@

    P

  • (class in datafusion.dataframe)
  • +
  • parse_sql_expr() (datafusion.dataframe.DataFrame method) +
  • partition_by() (datafusion.Expr method)
      @@ -2808,6 +2852,12 @@

      R

    • repeat() (in module datafusion.functions)
    • +
    • REPLACE (datafusion.dataframe.InsertOp attribute) + +
    • replace() (in module datafusion.functions)
    • repr_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) @@ -3136,12 +3186,6 @@

      T

    • -
    • table (datafusion.catalog.Table attribute) - -
    • table() (datafusion.catalog.Schema method) @@ -3609,6 +3653,8 @@

      W

    • write_parquet() (datafusion.dataframe.DataFrame method)
    • write_parquet_with_options() (datafusion.dataframe.DataFrame method) +
    • +
    • write_table() (datafusion.dataframe.DataFrame method)
    • writer_version (datafusion.dataframe.ParquetWriterOptions attribute) diff --git a/objects.inv b/objects.inv index 827143a5eafab807d6c5bf70080ef7a6496196d2..0b9573a421130024304493ebf10bf8f7a1b5bce8 100644 GIT binary patch delta 8705 zcmV+cBL3ZqL%u|ihkspn+cwh2@AWBsPM=$=+jP5U&)zw<({+w> zF>8PRk@1YKr%PSrKlo&q|95dY*(R7?rD;`EInhE|R+5AkP(bQ#( z>ZQnHXa$uEAe7QzxvI)6j7l%qtS1@VcAPFqG)`s zGHTv9Q<};|rGHCWka%Q43n4d2=Xv9JoD@{WW5AyimXkz2=FPjOHb3_A;QP&=@1)7Y zAChVMq15K08r^&j(x!9bVm)P`NLs9)lN(wEYh<_!Kn%RFPsi=HL4ZoyPZ{omO z#AmdW5f!?WrXG_li>t<-!XYU18vtZMK_I5gX#qjf01(DkroI7ya)_6cL*&E^iy$af z4nW}$Z$(G|h-{l<#7CeeaVS#sm(F8Yx=f1_g4EWX=tpboPc*41{%DY@W+enFuZAs}&Mk6T8V-ZUt zVM^PQNNQ)?fN(OFAo8l71yInRZN&WW9&tTGUIUv2BW5GQg2YEcx$fLWinvy&- zy-W;;xJ9x^W^7%|#p0*G#53MRBc7wX(Hy|GFS1`E3AT?(w4_8AG z9XyM*C&VhcoVJTr(YYx%=2o6q|DxE>m474|BRsaJkkq^%6`dEl_Rc$YDUa|>f%0^; znP7Q#z9kj|&|o{R3$dgndGqG40FYn)77zLP?*KXZ<)_$gS+NDLqKhbcJ`7+wOo`~J z4fQP^VQM^IBrx_w`~)As{GJxclCI++D`EzR(cepe4y9eOiC|P^8U2;4UkF6c_J3@C z7thIDMxpMwqEde-M>};ifa%r4!|nTFlB*9L2gk#>+}87*@Pz z*d8sq=YJsbTSfJ?n--6C8$AS@&VO=Y3dGO#C6tp{PP3@y)2}iwOJoI}t>6_>QIwLZ zW*Z7DJY%W-gUAhDAyA%*%-Cq~WV_kK&XA=FGWX8ASpwDi9oW(6nZ0|)*ZKa`! z8M&K_G-s*+&pS%>KcN6r{ZA+e?mf-nW$G0`cb9cr;wjOzGfjk|rb?Q!Ie$w*9On-U z*;zB1)zd<-Z2P;ZzYCgJXA$QuZH8e5(}+@veWz$5D1G5k4fp0Sp9iwv-6a=f?aF*1 zMOC_IK+#}DRV1@&KBv-DVM$XVO-&}+n1w1S?WP|)DO})bH=T3mVO{ql5n8JH%F4w1 zU3C{SfJN{>m|YF@e$;O}a(`6!Y-V;|K31Ifzh8DWk&`^ww!spWxA$f8Z*E>EMJAxJTmapDcEYIlp zEl)2<#_r;CwlG$nDH-l(i{bJ)b*s=BQ(u#UaPxJS_8)C8JM#SosDH$`oQ3dfGZo=6 z=7d?i^&BdN$iey6i7neC_2y+12~CT#8Op`1C?COBd}a*m%-BC55ApQx``Cf)7BQ`d zEimn=!*x&Y$I4j-^0Yh10vze0URdXZh?e-2lAOqxSQRY+AW%h@6+2hnVO3dNgo-T+ zDm=xOSm$jd#?R1QyMGVN_!8_=K)+VIWJNX5qxx2`Yk`Ad{p>}O(K)Gd-2|U-yN_en z1`ep5Nrv&ckOgtxItcjEk7AP2jJ@i?KN#C|1g)bHsl&Q7-x3rN_gyU*hp$>MR8&e3 zALNT*h;-|Tfk*di-LQO3wDH$lOQG}hNo=1y(rGRio4m=xWaEJ07lb352R9UdG+T|+p9^GwbBDNpF%UL zkMnBWlc+L1kFU!uufdJW+aIn+d)GMcjH){w20%%7X|`i@jzxCcNKC)J4|N{li5pMC zL7ih3By``kYJYT%@z9t7RZ9Tq8@eo*+TvJs)2&}xRHtx?3eh8U__pFS=60MnUI)sp zS)JPjHRqg@M7kYz$W`_{hpCES!`3aa$=o3QERtf$$hcOJ*P@IpS% zo^g%vOh*;Wb8VBi>&RuD4)P&uZ=oP}gTd5b*MGYR@(AaK7`5@Pd9bSeu6nR~!LEDJ zvIAZDqV{1zoQ&>1dDYpin|nCKv9Iat*o=Q%LRAZI!-wIJs@ zFn_f`XS*o9!OnMM)S7`e@TbQ8GkBtEw1Bzpj^OdN+th%>1^dGn^pl0%L#T4J;+cjn z=|=Jc=RQZP)E`otFeDxmm{8*82y-8Mr40atBdym+7M1(w;B|?yLN5L`wg&fpj55a- za_76@@m=)_+KUSyf&8w#-;=R2i9*&8Ie(GZ8XFtO0b3&vS(F;9vB<^DbXs-4f+Ash z%Pb+Q{;=F}3aMJ*3Vcz5<0{m{6kHM9_T7FzkPEz4*`HfKgCc4*t3^WB8>5Ag>vXM> zyYTgkb5%Vt`$AKlC@tg})bJZ^Ewmf>24C+?rB#n~&eniKj-H25Ig5xsi^}sERDV{C z;+eO~|1)73p2W8tlkJbT=){LZ5yEZqL!7LFHJr~2;v)YM{_Yb0ZXX6QA+grQy!r!GzhK31%DjN)`X#b&rFv+z!4%sCCm#VMj*%qB1Ry{{~<~s#Q9;g zfFxX5KV&R{iX(QU4xV6-Oe)T)LhpyXBYeAM6j{QIbFC+0b_OZDH|9>f2yjM-6A1AS zh*Jn$J_ivQw1^g`i23nwCzFKj*#c1T0a^T0g`ZC~OgQiW)N#=8Lw`|6@`oIhI#MG1 z@YG=fBMx|s7Z`i!BeZhZNqEqzVW;B(s17?Y5`HN@IHEIL#zIIMoWZac;CPjkch9`~^9)O4OK&+L+(T??>2 z#3>!HQje4!=dd;xV#u;SW>%~Z!0Ts4(nXaM`KKr$?{7X6*?;EGkrV6BP8fGzd@^9! z4>eP-U2W1zX*0sJ^~L8aC_X8Ae*A0sQ{>2}@NZ~E@`}D*VOh8AKTAH^m`qB&ZbrV4 z6|r8Modr7% zcZD*1?1Pb&C4Xg$rGD*P)DbIZ8%@<~=jEAYuUssQ+ery!oi@sxY+f@j?Y`UHf#z#8 z9JfhE*1^tR>wPHu{XcB5y~<1J&Mk>5*lr3su~KBy^e+wBRMV^O zuJYpt_#~evUDwCV##6%1 zfEh@$TmR{RN$8Z>Age2&r8aIm>QtS15WM=%X?cd9zrnhY=0ss*za!25cC~>uD4*vv2LjKkWE3p ziZ^vM44}un>FffFBo+BnbMg!TO^On@saYgko3J#fGB7BZigx?|50A;m|2*6#w~vn> z9sz(h+WI5S3Cv5o-NrkQ1(|xQAUJIZjc5>rontXJQdXAryEF~qaabPx28vryU|eAI zuYVy-4T@v_tPV(I4*L>w*xZ>RBP_4VL3teZ?Fk8rlWm6pFxY9C9G)2z6mJNSrOUJ^ zVVP}R1bpzeJ_0hEN(6{h)eM}eWkoZ#g66ha1uFKPY{D>IoQXQ*$EFNgx(kMrnF7lw zNd+uy2}f&Y@W`-W83VEIFn=Rp=GKV_5XuqWX(`HNM$)ec*trxOw5;kD zF6MAhl`;lMV;mF)Sb;R*pfI?s&9>9;Fg&KAo8QcQO$sntO1R)I;v5e+=57F1W{jJz z9I!JB3Gf>Zn@K`1vL z0{7I8it+3m_~A{51K7#dJRf(k8-EP~h7MQDbFuj8FOal1fUsx4k3bGO5-YM_z*x2q zOl-Uq-K@QXV1*e%fHyrM-HsGE+e@qf%eWh091glM5FWNYI2bBP#t4V&za+KsNC5Lk z*FG|bD5+g(Qb=SCXh>PIo#lfAf_51`C_U`JN-fEoH-81i{qi?R+|Pdp&41l5Kf!%o z6kG5Luy_Gya6u<{~@8fTQ)DdPj1I9UXV-z0i=X_x0Qj0P3TxpmOzz zf92wtgV2B;5bEi`9_=^5fGF33o3A)w5I*CU2h&Hv^al4$;MiD9Yu?0x-rL=DYz6RS z?*+hfeQ@Kqc3a7n1lXhV&AsZ5>t zH_XT8arYRwIM|aJ<`W6`CG@<{)^Y>cw_z*~K$z()Ozt4|y*LJ`h ziApJNqGp3pLk>$E1hliXDw#70QcjNv-iTffN}jCZGm-y?QUS2PDjKQ(b-V~HD> zUCy64NMU?($Kye9V0Qk0wo4QME$k0Bj{)%E@Sth(a)k?^r)%KdB`HAc{#p_sdVih> z3=LC_JnLPPJCHiyPsoF`AG%x@MaG3psW{UL1Me22lbNVs!hcKbxO5?F9FcH_T^K}Kq;e$!{(#>hc{Hyaxe(Cd_zSlM1{yJZOnz9b3_oRB<6 zgma{_bSeFARt&g3Z-ZhL=a+i%5uUvDb%kehyzZ*Ik$)P8-tMQyz^it-2#=2S<|W1Z zD3_I5VwS7LBNnWrg;-HcHeTOb^Enp1qy+7)mv+$_6^{Ady#U&aZ%+AyXRDlHz4m5x z51y<=;(cgw@D<1D*zH-^L}?uIHqHkqy9xIJ3q`Pm8sBkHs79EZFw8d?Q23``fwwOk zX@tNV9)G(5OrXg^Vo=uzSRrzh*K4^5*=@Y;A)$LQU0~4){7czHcmZYBfnGqFyYXJ2 z(feUvVEN!RHx(qO3f^u?1$@Dw%w&3M@~q&&5}~vZvI)P6Q%A>vMOGXK>W;mJC$Es8 zb~XqHtVjV*t_tcV^WnjMSw5>n`eU%0XfBX!e}5Jg{Gh>~I7Q$;!4B+>j>I5iN1`n2?Zh+#1)D?( z<4Nt&1&fwSZ-anf)CkEWylc>h)#4hP;3*x3>MnNF@vP$ zWPbsV#A;!A3O>J*QD z%a)Gf@Z#_|{w^IfhTBCK&ynC5&Mpla!++PM%SL?XNS-b=9mCPZp;7!?JQ=~w#evbh zTpS(6$t8y;iUk7FhyDeIzJX`ffq+4wCBgs>VJUrj%TvE#*&G1fpF7-Qb0AZu`> zkK_!Br0}yiI2*(Yc&pwYs?>YB-b3u`Mi8GPqw%36}t2}4mgMU(l zlG=}G4$AICkpShcsLbKJ?s~H&$`V}(?&w;=H?b1KCg?MSz0WCrKA{ zT_z|_I5j)313n_43!>8{5*uj*Z0Ir}tHl}%yg>nDRS@atMloiL9bLXb!Kz%8I8{Tf z*GOEPilH_LT#RWgwD#N{?g5I$2!G8Wn}9vA(C36##SGz#k1z`$F=hd_Cw)Lu{ed6A z)cV{HU}}B*2Pm~Y1q7DL5s=_!h$?fYQ5-*;b3#CwHj*Tc@0`+EMprmg44>%HGfk?R888mjy8+;^5mreQeD{d3ofKo^=k~lFV5)VVG=IGreBg;bkyhYFtSK>E(67hZRYaI<#1t^rIWcA;G~) z!;1<=c3iQAXp7$B5&=adrjn8@A*+xLF1y4ds8p?hNMBTlUs({UB!BW-6|$%8BrRtl zgj2US=a`K}h?zb4Dp6X<-X64@w!bEHQ%|o7@?G$!pHCl!a7^G7`BxzpIlazBmBGXR zsdWiYwaq%W$A3O;l%@r|!0&FDDdzg>d)0S7S|Gp7NpE*<)AZL1n`(NyrfFsC>qE^w z(P{5vdwIc!T8tpuvwxwQchPeI!f<-JG@lenIefk|rpnsq1qJLT(E3k39?o~WTT3al zfM;*dlWEtvjglF~>J5~H7I2xr7Yk-O4xkp(p@FuS9WHQd>9PT9^Z{(LkfdC$*mo>G zTzffAPgJ_31%VcUZIWHGvsD!|6{!slIPATLJj7r=4GA-qPk%E4jpWmiaP#;C$Bc8b zWY#!)ow7W-Y5OgZZfbj8tNF*cBxTkSV40Bc|Mj8uBE$H*19 zFVAb34;8UPp8hWtm>j2TeLlJKKHNE<&1#)TN&4fKU|N@7!X>PCR<}*q-~F^nr}n7! zs-S%b0v}}eLVx{ty1m}oVW&!9m{NcxIvm)E@dTSw_W}2Qr`*q(^i+|764DfQ3S5>A z)OO~WCHX{UMnQA#h|`QJYNJZkTW5hY+{Guejiw4i1oa8dnSZ-$7pm%18JVA+S2}fX z#H~8w-skc6a%0e{{sqG(UH?a*NjbeSg;R$JInnqIfq#35rgh9omG^#iN1?Zw?&(BF z(W~@pHp9qwu~FZ03~(uwUda9iJcezu%ru20f9h0cpi0*u{a4n0u3%qu%kMTtz`ED+ z-5H6cq*`wv@^5}lOhaV6K1=mf=g~Q{;AC3fa0oAlAFBkf|8k8>}z9Ph(1Pj#F8lOob;Br)jlp)OOWX z!E00_x^VsWYJyZ7dn6MZC0{m{C9-%kzDMXmc9j|-=;!$?jM2xMBc6aO{1!gFD~hV^ zI1t`eN9yTJI`yAtP)ckpB%Jp9hx1jx^@Ajo!PuSx>VWK+RujYVoO*7PX&YPzTX{iU zAb+35SzasSX1Jf2?C8^i2h+Z;zl zfoc@$a|E@SnzNr>rL%wJWJdFg%bzanO_z&`W%S2X6oufI*4LW&Et{RYRKvR3UYi`q zL~8!b#lq`5sZ69+s4uPKUv!?n{`H`U;F_*=m`FG6OA-I;ArbedH5r0r_ENtPYJYz} zDYd_^HB|KAe%OQZ+mwegLf2)O@;2cMDf`o;e;2{^N zi$gwElU}!g9;E|51Q!SV6DC0);XbXyU+s${c0j9nl-*%mJ=|S9(m9osr*vY!b^^9zdjHB3YO3%ORT$$J}2!B;hW`MEM zxvQ~NZnu{v=27hM!J68Mo2K;>!aMxqFW?9B$7Ox{W#{&X&4-^ay#3y}>h8@=ajD6I z@@+}ALe16Y;mw~Dchk}5eeuf7W=`B(Cu#3*Zh7$kpA;fHPyx!#W%GkC zqTjs_lCKJ#Uwdw=+vU#PiV~SFcW?C9{5? z+D;2e4pi8^J72V?i|Y^XKR({Q{q*s}pW^=R z{lA_jonkX45KC3JvAp=vzp87&Z8&5#2_7aLfd-7Nc1BhwZ*@7mWPC1y)wZ{It+)2y z7a!ULlhCd;SaH8Q-hb(gPu|&@_Q6`)utZMjT{|{7dDn{`vp;oHE9{TKZ_l0y82&6S zwb%L0{&||MsP#s@Bs{yEvs~A`X^75?JDX?AtAd+8!v5O-Y*jXQ2=jjuEZx1ytA4V{ zZ)%Usz~Wmm`W*gRU1~4(NEb|*2evUFKikWvb^L5uxKf?oYk&E zh@o^upvU~&vw_@Z%_E@t=eqy4e@??0qy|AH< z-`N;g&a&G5>3URo?T&HpK1^O3LdWlH%_MIg9W;ZE-`%y7TI1-HwRaqKz$!dq{B`cL zuJ4D5=9k(q`uDxN!&^4)q+pZW^niC_HW96J^eSiJK0O~YjM%RSb#896x zYF4sHp_NoEfl%6j<*KfVG}dyd=+Yv-yn8?WrS~ASEXxV!Sq76Qi&L~xaJaf43&$eH zC^oO{yGy|>lq|Dqo0CerdJmJwHjC3xZ|$F4E+-deb3ed~Z%O$sN0Z-r%W^->iKgkf zDyV(qOdF~)oqw-rNz#!eEv4FKz2{Bi2~tv>jsbs8SWcGsnD5>{cKLBXkG{WGr6#qQ z+YQZYWBqIAw!GJ^>KL~_v^A^;Gn*_c!FL}_YH=FGq}h`H^B%S1*_gcK|%+|NEF!&Je9 z?G}@}jhyJzmXyy`GJ-OmidYc^Q`(M1ayNYignv`11j*}CfIvVhU$RXAU=rjqwayiE zsVGf-ly=Ss;JpHw6cEM)-BjrWm2SZSk<`v%!MN*p1qi0*0NJtKODcrhcboi; zTyQCqbK+(wYr!^#B{u>ln8`_M?PEF<(m)iIBSBEoD<9L}sY;w$oq>GOxb3JQMp6w2 zq<`1*EV!o=AdhDod2-j)P_idxR+;4xzv7h0Os$JtE`Rt-I^$I`;wiZs6eXsl$wOOdjaQ(?AXQ=Q;CZS&A=k;}v|F@F&P}zow~EX;>!g0J6e$=HsXc|F z_WkJOywFYXgmFuGL=+m7XOhhX$8+;7sec%N2HW!kNF}Yvt5<&mfc*IPbjV--7a%7; z{*c-&Yqk`1auFrZhXG87X_-8=p}(agY>gMo491>FpWp+S-!n2>(M>vJP3+(>`Fjb_ zp>!)Y35>d`lE0G83xVj_p6qq`lr2;e>VsUmNzWulr5*!d@pg{};-u6kCc6|Jfq!L7 zMXJ@BeTSu{x+$GzCj0&M(GdPmeI654Z8Quk-QnqgmfWG;6ZNg8=B=OY{Zu)FSx;_w z$6&KLm$pE{6jnwBnR8ksHJ@RXMO7gyh+++|kjt`CRJU6dVBrPJ-5*44@d|;8To%^! zfG4{R32x#i*O0mYO*s<@sMhbnW`A}ZWIu-1q+D|9Dh?0n2vRZT(%+ z%=tigCty3eD49W&((F4$6G7<=hPb)T5>LDBoO=)JyB~$nQuS9>Wx<`OKR*vFg8#wnYoPa| zzBEFWK&pnJyfZhmnreVO_zL{SWp=Vv(PPZ|4FW1-vz`Cw^wC3)_t>@2)W;1Zx23`t zNCucazfXg13^WuYqwx83M1M%0ny2-S57v%gCA}5vH#Or0oxYRj8OhpRV!@Wy%CjXS z!XzkMK4*S$wP5;dRuW;q?#lh6>t!dt-w2fyPpTMxW2PcJ#)2@1cMdU?lpLJze6xye z)@*P^kubEZ+M!&^Lg@*7E#}s+F0B0n@(_>z{*XGb-63Ypumz?)^?$hj$-`K=C_tWe z4_SgEePjf;=AO_JA9KQqN{MIC5deZ2^jWEM75%J&Ek_q^#^-M+Q1o1(Bmkg2a91QU2VF?$O zZ-`pDO4^Df&_6p1dvcHK?*{nB1&;qHxnGky*ueT~6Ql%H2$Wq9lg2UaTb}#{@|^dz z@DreE<<(LE?3_a$NIlr`nlG4tds&i!F#xt-FFO!V^RGLQsDBHyfGhD?i<_3W-+U+Z zzI7v+RCjs|fRgUhTwms0T-*kRl&<&?>V1dKV!`=%JI(aG)_NG+kct3l})nY_?1n<$OwE#u;+Qvjb}VLK0@Dkc5KAH3FNU6{KiX+i|99= z9~Js;JQn@E;BqsZ*K)7qnhmdmOy*voLUvLY6S@o^y2N)8Awdc{;1D|C7VI3KcW)Z3 z4{q?idf5#>LG#~qlhAdgp`+A|8S*PZq~bId@ZNDBi+^4TJ0bZboDXG$X+2ruLQir5 zdPX;FIOI&C25^0inW!8|L+IMaPh^f|$4zXGrN&Nlj^)Nqd`57?!u^z3&%4+?)9!W? z@3o>?Sb1uqhAi5-*zq{i`V5^Le}-fc{W*Za0-wCZ@SO*BAkJeqY|< zGS5O(xPRehG)^ygL}5M6A-(rF!7&!{c@FGfgl9UbV4rK3yjz{Ensks4+4$f@E#i-+ zMmw}6kSDkdq^M1Ic!O0Pc7TJ`i*|@hmL2IJm#jD5VJ=y6oC965+$4v(c-3eJyD7*i z4tJAu#yQ|6OO)sm@eX<;lt#FGO{Ajs=c8T1rhlSGx`-voB)g0yslSlyc$cyyxsfhr zNm^4~&cH-RxuC(SM!BScNk+M-fvH8gtbwUTy09hbjdp39qSg+)fj>3=pV4zklLhSW z{=Ak@yKN1~d}KI$!7!iKKe33T70)bo)iseHIXyX9rTLJ$gfYQ;z=SeC_sBy;lP;_d zj(@b-AX!xYpQD!!rV9CB&Da_uxEd;sE#waa!{htv6}7_^Kmz$)1=l2NWfG07Avsal z8e10~0b7H|tQ$?$SaLbHomSJYph(!>vdGAKIEHhYLax`i0>5i1a21+i3a$ul`|iFU z$OYc09L}v@KoPZ?H6pR=n8`xOb-GdEK7ZEv@={e#&VQ%5$+VH`0&4h;wh`J7Cxfqd zq0(wbIu~oeF^7Ibs9Z$ETtwyR0xD}p@yuHt{+Y1?PvRTLWQTJQdQsOA!dPr~)7U`!{TU_VD^QRE@`vukY{wgDUam?CJ00v>N%CZq6Dpc zy^oqk{6<&-88xvnRls?`V6robhVMd%qrgY3#ZT36b1^0RPK)dkYCYee3x7yt^KG^w z!-rK*m5Ouun@p#ehF_p(VS|%KQ&~y0UL)pox2bGH7}}S{cBUg-6cSY8{1Z|HqMQ>_ z1fo0>k_2Mh5+(~MBDC`m#uBInVn^!X8TOc=7J_Q@eki!8cbhqpCF}^)`3M#lkivUo z{)C4JH-R*Pn3el9g~)|%5Py+T%Uk0VC!7qIE->}9IB4a#BebAZ5yok_Z5POeKANIuODAPbjjp2?@)L93292@gOz@pL@6985Sd4?=v* zDS7~UDJSbe%8xpo4np{1-vhu?`2h5>zefP4_rd7Go#+RcpQKa%0Dtl^?c_fQ;g>N? z(oP5j(4TN>Ae8EulLSX;?uT}Ya&g<;GQ!zychl@G<@|kLHOAUJE;?2%I=FYbZa2jK zr@i5Fk9%BpW;;*Di;Qmkq^fh1%;|{5NTlp|pPYr1V^%IPv*MOHUp^~}E^AKIAEJbU zOYK}1+doE5oXaj@!he79$%yq6)J(l}waII3>J5jn z_9t|PnpW&6FIG*OJdANpht7fx zCfuZicB|hNC)=0IOSiRff1vpi4ae^TP)$6imwF%CegBUeY%lUsdii;7u)R!XFmIgMxfn@vyPN5VN$9b7I(!)NSfn&7s-D>J8KPssPb(^b zmJ6Ri74*L>0Z0_uk5tdhTP@aH&ds2bo zRM#N@40bxEfM-U<{Tc&g`6@3fSY}rj0Ux}pkATd!5&>Eq8GSVModh5xA%JRE%dAzz=Ub9KcSt;e`Nh{b&#{bhuj1<$v;r zzd+Jn0m7aDKLQ+dBvuwbg0Wm5n7Mc7f3PuE6|D~vlM*^5Xx(SgvWJTRdlSU#NKtsxr-7Fs*5VXq((Y;{@R(eHV zz4{v{?#I7F;{N)-pt<|;2e{9RW`9dj0~Rmf3@+#dZcJSBc-S{cm~CHTnL*oLkQ3IR z^VLRXE4qQit%|TLV1VM+xv;pZxf(+g9>g0qoJaZwK&A5Zy!?CplfocB5G$ z%pU|rAwcqX3bc#if#$W+wtr6i8|Gv4uz#Lb8tl;y^NE7{5(eI{&T<3Uw_z<0K$z_; zZ0;cTy*)MqwsZ>6u7(x`>LJ`giO#8Lqh^CqyM576KsQUPvjtNyek~nWk*BO3q5~`% zJMOY1mSDsU?e~|?R#ajC)=YKWK7_NuC4V#?7 zcz0TcJz^i)v)94Uk8NDoRN@w9m-80^QW#(SIb%>9n4SN>x+MyL7WSK;#{l?n1kfyd zzQP62)3xyak`y5Ja4iWCeK=19hK8v|f%U%49Y`Grhnqp#4}GqWBI84*)Pfm}f%l8i z*<98z;Uy07es&WFkAGI%JpN6aWw>hMk+V>q-5Wv3wSVz)vCz~2zw>}+IHX+K<4u?flASw7Kj41@TE*aYCaX(1+i+)|MQ`iMgp_;aMvVid$S%2+tei- zj@{HHZTFp>&*4$>X=LL_4b5DEL)!rcD731S-0V5VA>d2u{C`1^;P%sEhuDTS=QUhL zCAhvlb-}1X72QrT6lg}4OC+%U!iP^8JUb@_2`mK~yY=71AS1Qau<4U`F>(;#?ZyTK z^d_ejR<<|BZCS#BuZTtiXM}S^xIijPpEB%b#elo>HYiqc{@yG;!jpHtuJCMu*Io5D zQsdCO{nQwE-G40?;nA_)yrOs?<*L>z%yM;j#DZ0{lxvE~#_M| z!ZF`_5I}qJ?J1w|Y|R8jZMhLv&u^+$$nk*Ftb$^3^m6D^pUdKhqZtHaq2|bAE z0*lt*U&=PZ3n;S*^a9G7t;(BY!hWnWQ|7`ELv%^3jzX)-i0TF#Y*_G>a$>Fknm*=K4iC* zfg>0Yz36J7*fxL}EVPYd21(^)36I2TVLS()Uw`406!6T2foEdOC2+d77Q)I|9G92C#`1XC(NP>;JRZm2rH96FyXfNu5*)+XrA1@-y7bwI?;Od~ zrGKGgIJ$T=il0j$Be=PEFq)T(r=vKzaCo9zA|ONPUts7fcxDp_7!+C|4B#+U@=Nm7 z_G1`3UOX9N4a9>n=3Pp%0Y`>N&Y(yNKZ}F2L9B$g>Rm*|!gbg+{7^&?u?GL1i?BBr z6lqpC6Ip(H9XPb+oPiHY5lZSXqB$tL7k@j*6@@Gjs7s0f1+PzvF6pMqP@HfYHg5txBA`oR@)Z&rX#{NPDkJOV1`E7J0b^AV z73M}UW{f>uy+XliE-Rd>p*I^OE>6YJTLdn~v=&->?hf|=#bShJP;I~-Sm;wG>VI;M z@Wn@%1yC5X0K1bupsC@&4`6C@?gucnIsOBb+MNOdOBD!6a5F?#oEa3y&-R=UP^OC{ ziQ_w`O;OM_4i&@ax*=mYT{nlaAjHA32H$x5?5t$Df`4ys2NIk!TnRx0@wVhbA*K( z49gW|H$`_E6ezT2;DZ5#om@!!xUhC{wOsgxi>DR5*Zfl#`#PQKe#;h8mCnCk4TbyM zPdyy-lZmP}Lr|Y6k~RAva~}l$&i(72*UK=9ITP9U89tUfo7apNnQ0H-IDZ%Rb-IX) zz$=xaxpR+f-&V5HyxIRg{N7#4*q86p&feJn_y>5DwaRJK+dmYErjIX!=~B~5B1(@p z1s_)=ZR*%!Y12<`9LEGlD~&HI7};sX7Nac(i%Uink(?X?miF6#mw{!e2nc&cmG+#Ub{qr?{2M>G!mY@J5Q!t=eA0A6l=Cn5=O#h{)1dH+i?K3m>vzZz3g#; zTT7n}Sfh_%v!x={YR$f5@!{IbX?mvf6)g$02yBz=lfA8~p{Yo1aKvHn1LQFV^La>| zseGOhX(XSA#GA)wIDdAWQ)Khj+3TF;(N8;Uf%H?m^IGjc-n1%bdeu`Rk@RN|G|(ZY z%DHO4^#NFis%N6oqdP{f#C>@|!+xlU8}bZ)slem}-I&YCUH0KF`D{+>GD<2Ow*=F= z!V)fFgR{C_!r|_xOFDB$wbvybIuQ6Mdk`AF)7|f#9d@n+#(ybASfb;By%Hs2bmF+@79PIs;X@ z78$;>?sEnEqC0-SDFW8Lj_=P%tQ0k73z2_&IkOFsiRLWTbDc*oZA1ssOFes?=XF_g zV&q_%o)C$oo(OCqXcqK-9Sm*^teT;NISs=!iN+J7!*Y2jbqy~il_9^Q@?bHe%X zXc0gtZZ0}qsI_5+dXZG2FkiaONu_I!UJ*Le3{&KGQ%TjiJ|Nb+osg{dHV#N;E=s;?ElXtac6^V}gX}A{LeS6i ztF%TRYmayWuJAkf?5-^9uH!&>TRo}A3+Xg}UO*{xv5;`u?{D5${Wc7ePzGZM3aA6J zQ(A2d$4lz@O{QIN9c<+#^?`hr7kRBr&jU= zI-9$Q2eim&>x*>>b$ik6gmyn>3q?xAN5&bHbZk^xs;`1)NA*-1gQh7NBqQpa9M;@jr!yI%WDZh46Y8#?l{(zl8Y_BqKY#2|`CZCm8KIjhPI;H`nUuS9HM|peK;YQE z;p<~Nk*^}R2oLC;+*N#ia-;IqDQ|@VsiW+xh|QgY+#`EIuaE9Ky*j_CH%jP?##Q8& z$0(g6yCknq?#{eAv)OM*O`cMaS5aHE2KXoTbX}j=FLrg-Wqm;Fz_PFUe5|ep-2w)bj`$Ep z9^>`>-Sq=qP(?*fuiUrJ+vl?V;x87gPdJ(&knXqEL=@Mz8$*Tm-R|?m%>Lj!BReDG zB(|S2@b7xRT)8g@)m~Rj{;TYnxo1=escf%zWLS3`dut%RNVEB?SB*h{P^jk zyR+T8a^~hHNq2vH%YFF&RVj-j6`4V{SuskLRIKp9k{J&AbWRfN>skuzcKt4 z?s*K?@5z#08JW*)>)lV>Gve*_8+Y9{X`i;&sIns!_TbKEP4N2dr;nc>?%sU){ORHP zr!RN!ZasCF6jFS7yzSq{nSc1I&)ybNe7O7gug9xiu~}P$<+|Tko?Q&D>a7$mF0sCf z9$;$gqI*DIdAv$L_IwRZ7= zywdy5NI!emvmSFebz3Xk#pt)^4(E%17N0uk{OtZb&(_qrh29WR+H%)IEqx0;} z_Stw{3fo7xtHaM$7YmQD|0mJX{hNa77nl59;~E)Rd}~IZ;$N#z9mF2!l4<+EE*Rsl z?&tG5VcIHQsYxHS!lc-#M-mIRtQ9%5Tu!Cw`lQ`YeV#MjZnO{Rb1Jv}BsQSuYz6m%!WFBXKP@2%WD79x$@c{Y~FpkdTt1vzOyrv zf_Ze*3_5*x-%jd`qjT2YY19#`@PzT#yU+QcA1B%?jbZff4@LftVA=R1gWbpfr1jUc z6#lgP`KG&X&w6N}u5xGnMtThVteN)ld(C{W`L+v=d*9EvQB1$n`cwGF&5rY|7yEy3 Gh!{i&CZ4ST diff --git a/searchindex.js b/searchindex.js index f833720ae..b8ed13a59 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"]], "Apache Iceberg": [[34, "apache-iceberg"]], "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 Names as Function Arguments": [[35, "column-names-as-function-arguments"]], "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"], [4, "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]], "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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", 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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", 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]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", 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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", 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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "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_file_sort_order"], [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, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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, 34, 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], "177": 24, "17t19": 26, "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, 35], "22": [2, 25, 34], "223": 45, "224": [4, 5, 7], "229": 45, "23": [22, 25, 32, 45], "23076923076923": 23, "2345": 5, "24": [22, 25], "245872298z": 26, "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, "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, 26], "33": [22, 25], "333333333333332": 32, "333333333333336": 23, "34": [25, 26], "35": [21, 22, 23, 25, 29, 32, 34, 37], "354": 24, "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, 26, 31, 34, 37], "405": [21, 26, 34, 37], "41": 25, "42": [23, 25, 32, 34], "423": 24, "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, 25], "47": 23, "4732": 26, "48": [21, 23, 34, 37], "49": [21, 25, 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, "668": 24, "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], "795": 24, "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, "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], "9490104226239": 24, "95": [22, 23, 32, 45], "96": [22, 23], "968": 24, "972": 26, "979": 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, 35, 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_file_sort_ord": 1, "_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, 1, 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, 1, 2, 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, 35], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 4, 5, 7, 35, 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], "action": 35, "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, 35, 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, 35, 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, 35, 38], "anoth": [2, 5, 7, 11, 19], "anti": [2, 27], "apach": [1, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 4, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [5, 30, 34], "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], "arithmet": 35, "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": [4, 5, 7], "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, 34, 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, 34, 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, 35], "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": [2, 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, "candid": 4, "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, 35, 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": [1, 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, 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, 35], "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": [4, 5, 36], "consol": [2, 35], "construct": [2, 4, 7, 17, 30, 35], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 38], "contain": [2, 3, 4, 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": [4, 7, 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, 34], "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, "create_namespace_if_not_exist": 34, "create_t": 34, "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, 35, 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": [1, 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, 35], "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], "ensure_expr": 4, "ensure_expr_list": 4, "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, 35], "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, 35, 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, 35], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32, 35], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 22], "explicit": [4, 33, 35, 36], "explicitli": [7, 17, 35], "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, "expr_type_error": 4, "express": [1, 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], "flat": 4, "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 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, 35, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 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": [2, 4, 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, "hood": 34, "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, "iceberg_t": 34, "id": [1, 2, 3, 20, 28, 35], "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, 2, 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, 35, 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, 4, 5, 7, 17, 22], "instanti": [7, 17], "instead": [4, 5, 7, 19, 33, 34], "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, 34, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25, 34], "intercept": 5, "interchang": 42, "interest": 25, "interfac": [1, 5, 19, 21, 22, 30, 32, 34, 38, 44], "intermedi": [7, 17], "intern": [4, 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], "item": 4, "iter": [2, 4, 7, 14], "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, 35], "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, 4, 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, 35, 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, 34], "load_catalog": 34, "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, 37, 44], "name_pair": 5, "named_expr": 2, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": [19, 34], "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, 35, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": [1, 4, 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, 35], "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, 35, 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, 4, 5, 7, 30, 34], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "other_df": 2, "other_id": 2, "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, 35], "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, 4, 7, 35, 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], "possibli": 4, "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, "pyiceberg": 34, "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, 34, 35], "quick": 24, "quit": 43, "quot": 29, "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 4, 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, 35], "ratio": 5, "raw": [1, 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], "reject": 4, "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": [20, 34], "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, 35], "sampl": [5, 24, 31, 34], "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, "second_two_el": 25, "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": [1, 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": [4, 5, 7, 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": [4, 5, 7, 25], "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, 4, 7, 19, 20, 29, 30, 32, 35, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 34, 35, 37, 44], "sometim": [1, 7, 19, 34], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 4, 5, 7], "sortkei": [1, 2, 4, 5], "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, 25], "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, 35, 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, 4], "typic": [0, 2, 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, 34], "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, 34], "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, 2, 4, 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, 35], "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, 35], "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, 35], "x": [2, 5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [2, 5, 17, 21, 26, 32, 34, 37], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": [2, 34], "yield": 5, "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 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, "apach": 34, "api": 18, "approach": 19, "argument": 35, "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, 35], "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, 4, 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], "name": 35, "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"]], "Apache Iceberg": [[34, "apache-iceberg"]], "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 Names as Function Arguments": [[35, "column-names-as-function-arguments"]], "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"], [4, "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]], "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"]], "PyO3 class mutability guidelines": [[19, "pyo3-class-mutability-guidelines"]], "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]], "__slots__ (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.__slots__", false]], "__slots__ (datafusion.table attribute)": [[7, "datafusion.Table.__slots__", 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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", 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]], "_inner (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table._inner", false]], "_inner (datafusion.table attribute)": [[7, "datafusion.Table._inner", 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]], "_raw_write_options (datafusion.dataframe.dataframewriteoptions attribute)": [[2, "datafusion.dataframe.DataFrameWriteOptions._raw_write_options", false]], "_raw_write_options (datafusion.dataframewriteoptions attribute)": [[7, "datafusion.DataFrameWriteOptions._raw_write_options", 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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "append (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.APPEND", false]], "append (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.APPEND", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", 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]], "dataframewriteoptions (class in datafusion)": [[7, "datafusion.DataFrameWriteOptions", false]], "dataframewriteoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrameWriteOptions", 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]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", 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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "insertop (class in datafusion)": [[7, "datafusion.InsertOp", false]], "insertop (class in datafusion.dataframe)": [[2, "datafusion.dataframe.InsertOp", 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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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]], "overwrite (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.OVERWRITE", false]], "overwrite (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.OVERWRITE", 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]], "parse_sql_expr() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.parse_sql_expr", 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 (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.REPLACE", false]], "replace (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.REPLACE", 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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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.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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "write_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_table", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", 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, "", "DataFrameWriteOptions"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "InsertOp"], [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.DataFrameWriteOptions": [[7, 3, 1, "", "_raw_write_options"]], "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.InsertOp": [[7, 3, 1, "", "APPEND"], [7, 3, 1, "", "OVERWRITE"], [7, 3, 1, "", "REPLACE"]], "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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "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, 3, 1, "", "__slots__"], [7, 3, 1, "", "_inner"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"]], "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, 3, 1, "", "__slots__"], [0, 3, 1, "", "_inner"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"]], "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_file_sort_order"], [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, "", "DataFrameWriteOptions"], [2, 1, 1, "", "InsertOp"], [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, "", "parse_sql_expr"], [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"], [2, 2, 1, "", "write_table"]], "datafusion.dataframe.DataFrameWriteOptions": [[2, 3, 1, "", "_raw_write_options"]], "datafusion.dataframe.InsertOp": [[2, 3, 1, "", "APPEND"], [2, 3, 1, "", "OVERWRITE"], [2, 3, 1, "", "REPLACE"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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, 34, 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], "166": 24, "16t17": 26, "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, "199": 24, "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, 35], "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, "28": [22, 25, 32], "28571428571429": 23, "29": 25, "2914035039137": 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], "32": 25, "33": [22, 25], "333333333333332": 32, "333333333333336": 23, "336869762z": 26, "34": [25, 26], "35": [21, 22, 23, 25, 29, 32, 34, 37], "36": [22, 25], "37": 25, "38": 25, "383": 24, "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, "418": 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, 25], "47": 23, "4732": 26, "48": [21, 23, 26, 34, 37], "49": [21, 25, 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, 24, 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, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "885": 24, "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, "98": [23, 45], "985": 24, "A": [0, 1, 2, 4, 5, 7, 8, 13, 15, 17, 22, 24, 28, 32, 34, 35, 44], "AND": [2, 4, 5, 7, 17], "AS": 2, "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": [2, 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": [2, 5, 7, 26, 30, 34], "These": [2, 5, 7, 14, 17, 23, 25, 30, 33, 35, 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], "_": 19, "__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], "__slots__": [0, 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_file_sort_ord": 1, "_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, "_inner": [0, 7], "_intern": [0, 1, 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, "_raw_write_opt": [2, 7], "_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, 1, 2, 7, 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, 35], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 2, 4, 5, 7, 35, 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], "action": 35, "activ": [19, 20], "actual": [2, 33, 35], "ad": [2, 19, 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": [0, 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, 2, 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, 35, 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, 35, 37, 38, 39, 40, 43], "analyt": 32, "analyz": [2, 4, 20], "ani": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 23, 28, 30, 32, 34, 35, 38], "annot": 20, "anoth": [2, 5, 7, 11, 19], "anti": [2, 27], "apach": [1, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 4, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [2, 5, 7, 30, 34], "appli": [2, 3, 7, 19, 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], "arithmet": 35, "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": [4, 5, 7], "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_typ": 19, "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], "ask": 19, "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], "attribut": 19, "auto": 18, "autoapi": 18, "automat": [1, 2, 7, 33, 35, 36], "avail": [2, 3, 7, 23, 27, 30, 33, 34, 35, 44], "averag": [5, 17, 32], "avg": [5, 17, 23, 32], "avoid": [1, 7, 11, 19], "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, 19, 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, 19, 20, 21, 34, 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, "borrow": 19, "both": [2, 4, 5, 7, 17, 19, 20, 25, 28, 30, 35], "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": [19, 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": [0, 2, 7, 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, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 23, 25, 30, 34, 35, 36, 38], "callabl": [2, 3, 7, 17], "caller": 19, "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, "candid": 4, "cannot": 5, "canon": 19, "canonical_nam": [4, 7], "capabl": 33, "capit": [4, 5, 7, 29], "capsul": 19, "capsule_t": 44, "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, 2, 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": [20, 30, 34, 36], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [17, 32], "clean": 20, "clefabl": 32, "clefairi": [23, 32], "click": 3, "clone": [19, 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, 35, 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": [1, 2, 7, 21, 22, 24, 31, 33, 35, 38, 45], "collect_partit": 2, "collid": [2, 7], "color": [25, 36], "column": [1, 2, 3, 4, 5, 7, 11, 17, 22, 23, 24, 26, 27, 28, 30, 32, 33, 45], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [2, 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], "comment": 19, "common": [4, 5, 7, 8, 9, 10, 19, 23, 26, 28, 32, 34, 38], "commun": [19, 20], "compar": [5, 32], "comparison": [4, 7, 23, 35], "compat": [19, 25], "compel": 19, "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, 19, 20, 33], "config_intern": [1, 7], "config_opt": [1, 7], "configopt": 19, "configur": [1, 3, 7, 19, 20], "configure_formatt": [3, 7, 36], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 22], "consecut": 5, "consid": 5, "consider": 36, "consist": [4, 5, 36], "consol": [2, 35], "construct": [2, 4, 7, 17, 30, 35, 44], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 38], "contain": [2, 3, 4, 5, 7, 13, 17, 18, 19, 20, 23, 25, 28, 30, 36], "content": [20, 27, 36], "context": [0, 3, 5, 7, 11, 13, 15, 18, 19, 30, 31, 33, 36, 38, 45], "continu": [5, 19], "contribut": 20, "contributor": 19, "control": [1, 2, 7, 23, 32, 33], "conveni": [7, 17, 34], "convent": [4, 7, 19], "convers": [19, 20, 22], "convert": [0, 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, 34], "corr": [5, 23], "correctli": [2, 17, 19], "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, 44], "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, "create_namespace_if_not_exist": 34, "create_t": 34, "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, "csv": [0, 1, 2, 7, 11, 19, 21, 23, 26, 32, 33, 34, 35, 36, 37, 41, 45], "ctx": [1, 2, 5, 7, 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], "cube": [4, 5, 7], "cubon": 23, "cume_dist": [5, 17, 32], "cumul": 5, "curr_valu": 30, "current": [0, 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, 19], "databas": [0, 7, 25, 33], "dataflow": [7, 13], "datafram": [0, 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, "dataframewriteopt": [2, 7], "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, 19], "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, "debug": 19, "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, 2, 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": [1, 2, 5, 6, 32], "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "deriv": 19, "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, "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, 19, 34, 35, 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, 2, 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": [2, 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], "each": [1, 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, 35], "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], "encount": 19, "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, 19, 33], "ensure_expr": 4, "ensure_expr_list": 4, "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, 35], "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, 35, 37, 44], "excel": 19, "except": [2, 4, 5, 7, 25], "except_al": 2, "exclud": [2, 28], "execut": [1, 2, 4, 7, 17, 19, 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, 35], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32, 35], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 19, 22], "explicit": [4, 33, 35, 36], "explicitli": [7, 17, 19, 35], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 30, "export": [1, 2, 7, 17, 19, 20, 34, 41], "expos": [19, 30, 34, 44], "expr": [1, 2, 5, 7, 11, 17, 18, 30, 32, 35], "expr1": 5, "expr2": 5, "expr_type_error": 4, "express": [1, 2, 4, 5, 7, 17, 23, 26, 27, 30, 32], "exprfuncbuild": [4, 7], "extend": [5, 8, 19], "extens": [1, 3, 4, 7, 11, 36], "extern": [0, 7], "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": [2, 5, 7, 19, 20, 34, 38], "fetch": 20, "few": [19, 20, 22], "ffi": [0, 7, 17, 34], "ffi_": 19, "ffi_provid": 19, "ffi_tablefunct": 30, "ffi_tableprovid": [19, 44], "field": [2, 3, 5, 7, 19, 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], "flat": 4, "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 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": [0, 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, 44, 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, "frozen": [19, 20], "full": [2, 5, 27, 35, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 12, 14, 17, 18, 19, 22, 24, 27, 33, 34, 36, 43], "function_to_impl": [17, 30], "further": [5, 19], "futur": [17, 19, 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, 19, 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": [2, 7, 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, 19, 20, 25, 26, 33, 36], "helper": [2, 4, 7, 17, 19], "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, "hood": 34, "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, "iceberg_t": 34, "id": [1, 2, 3, 20, 28, 35], "id_for_stud": 2, "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, "illustr": 19, "immut": [7, 17, 19, 30], "impact": [2, 33], "impl": [30, 44], "implement": [0, 1, 2, 3, 7, 17, 20, 30, 34, 36, 38, 44], "import": [1, 2, 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, 44, 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, 35, 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, 19], "inlist": 4, "inner": [2, 19, 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, 2, 7], "insert_oper": [2, 7], "insertop": [2, 7], "insight": 33, "instanc": [1, 3, 4, 5, 7, 17, 19, 22], "instanti": [2, 7, 17], "instead": [1, 4, 5, 7, 19, 33, 34], "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, 34, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25, 34], "intercept": 5, "interchang": 42, "interest": 25, "interfac": [0, 1, 5, 7, 19, 21, 22, 30, 32, 34, 38, 44], "interior": 19, "intermedi": [7, 17], "intern": [0, 4, 7, 19, 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], "item": 4, "iter": [2, 4, 7, 14], "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, 35], "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 34, 35, 36, 41], "jupyt": [3, 35, 37], "jupyterlab": 37, "just": 36, "justif": 19, "jynx": 23, "kakuna": [21, 32, 34, 37], "keep": [19, 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, 7, 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": [2, 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, 19], "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, 4, 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, "lit": [2, 4, 5, 7, 20, 22, 23, 25, 29, 32, 35, 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, 34], "load_catalog": 34, "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": [19, 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, "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, 2, 3, 5, 7, 17, 19, 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, 20, 27], "mode": [2, 7], "model": 2, "modifi": [2, 7, 22], "modify_df": 2, "modul": [6, 19, 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, 19, 23, 25, 29, 30, 32, 38, 44], "mutabl": 20, "mutat": 19, "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], "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, 37, 44], "name_pair": 5, "named_expr": 2, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": [19, 34], "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, 35, 36, 37], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": [1, 4, 33], "network": 33, "new": [1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 25, 27, 30, 44, 45], "new_bound": [19, 44], "new_nam": 2, "next": [5, 7, 14], "nice": 36, "node": [7, 13], "non": [2, 4, 5, 23, 32, 35], "none": [0, 1, 2, 3, 4, 5, 7, 11, 15, 17, 19, 30, 32, 34, 36, 44], "normal": 23, "not_red_unit": 25, "notat": [25, 42], "note": [1, 2, 4, 7, 22, 25, 34, 35, 38], "notebook": [3, 35, 36, 37], "now": [5, 17, 19, 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, "occasion": 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, 20], "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": [19, 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, 4, 5, 7, 30, 34], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "other_df": 2, "other_id": 2, "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, "overwrit": [2, 7], "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": [0, 1, 2, 7, 11, 19, 21, 22, 29, 33, 34, 35, 36, 41], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "parse_sql_expr": 2, "part": [2, 5, 7, 26], "particular": [5, 33], "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23, 33], "partition_bi": [2, 4, 5, 7, 32], "partition_count": [7, 13], "pass": [2, 7, 17, 19, 20, 24, 25, 30, 33, 34, 35], "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, 19, 20, 37], "placehold": 4, "plain": [2, 4, 7, 35, 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": [20, 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], "possibli": 4, "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": [19, 20], "prefix": [5, 19], "prepar": 4, "prepend": 5, "presenc": 26, "present": [2, 19, 28], "preserve_nul": 2, "pretti": 16, "prevent": [20, 36], "previou": [5, 30, 32], "previous": 1, "primari": [2, 7, 9, 25, 35], "primit": 19, "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": [2, 17, 23, 32, 33], "processor": 33, "produc": [2, 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, "pub": 19, "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": [0, 1, 2, 7, 17, 19, 30, 34, 38, 44], "pycapsuleinterfac": 1, "pyclass": [19, 20], "pyconfig": 19, "pydatatyp": 19, "pyiceberg": 34, "pymethod": [30, 44], "pyo3": [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], "pysessioncontext": 19, "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_typ": 19, "python_valu": [4, 7], "pythontyp": [4, 7, 19], "queri": [1, 2, 7, 13, 15, 17, 19, 21, 22, 26, 31, 33, 34, 35], "quick": 24, "quit": 43, "quot": [2, 29], "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 4, 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, "rare": 19, "rather": [5, 15, 35], "ratio": 5, "raw": [1, 3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawexpr": [4, 7], "rawschema": [0, 7], "rb": [7, 14], "re": 19, "read": [0, 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, 19, 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, 2, 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, 34, 44], "register_table_provid": [1, 34], "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], "reject": 4, "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": [20, 34], "remain": [4, 5, 7, 19, 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, 19, 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, 19, 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, "rwlock": 19, "s3": 34, "safe": 19, "safeti": 21, "same": [2, 5, 7, 17, 19, 22, 30, 35], "sampl": [5, 24, 31, 34], "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, 7], "schemaproviderexport": [0, 7], "scheme": 2, "scienc": 26, "score": 5, "script": [3, 33], "search": 5, "second": [5, 22, 23, 25, 34], "second_arrai": 5, "second_two_el": 25, "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": [1, 2, 7], "serd": 15, "seri": 25, "serial": [2, 7, 15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 19, "session": [1, 2, 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, "setter": 19, "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, 2, 4, 5, 7, 8, 11, 13, 15, 19, 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": [4, 5, 7, 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], "single_file_output": [2, 7], "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": [4, 5, 7, 25], "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, 4, 7, 19, 20, 29, 30, 32, 35, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 34, 35, 37, 44], "sometim": [1, 7, 19, 34], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sort_bi": [2, 7], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 2, 4, 5, 7], "sortkei": [1, 2, 4, 5], "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, 2, 7, 13, 15, 16, 17, 21, 22, 25, 29, 31, 34, 35], "sql_type": 19, "sql_with_opt": 1, "sqlite": 16, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7, 19], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 26, "squirtl": [21, 26, 32, 34, 37], "src": [4, 7, 19, 20], "ssd": 33, "stabl": [17, 19, 30], "stai": 19, "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, 19, 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, "stem": 19, "step": [5, 19], "still": [2, 19, 30, 34], "stop": 5, "storag": [33, 34], "store": [1, 4, 7, 12, 19], "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], "strip": 2, "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], "subclass": 19, "subfield": [4, 5, 7], "submit": 20, "submodul": 20, "subqueri": 4, "subqueryalia": 4, "subset": [2, 26, 29], "substr": 5, "substr_index": 5, "substrait": [7, 18], "subtl": 19, "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": [0, 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, 25], "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, 2, 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": [0, 1, 7], "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, 2, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 33, 35, 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": [19, 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_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], "todo": 19, "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, "touch": 20, "toward": 5, "tr": 36, "track": 19, "tracker": 5, "tradit": 20, "trail": 2, "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": [0, 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, 4], "typic": [0, 2, 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, 34], "underli": [4, 7, 17, 19], "understand": [19, 33], "unfortun": 19, "unfrozen": 19, "unicod": [4, 5, 7], "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 2, 3, 5, 7, 17, 23], "unit": [4, 7, 32, 34], "unixtim": 5, "unknown": 4, "unless": 19, "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, "up": [2, 7, 13, 17, 22, 25, 32, 33, 36], "updat": [1, 2, 7, 17, 19, 30], "upon": [5, 19, 30], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 19, "urbango": 28, "url": 1, "us": [0, 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], "usabl": 2, "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, 34], "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, "values_view": 2, "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, 2, 4, 7, 15, 17, 19, 20, 21, 25, 28, 30, 34, 35, 37, 44, 45], "view": [0, 1, 2, 7, 24, 26, 27, 37], "view1": 31, "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": [0, 2, 7, 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": [19, 20, 35], "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": [0, 2, 4, 5, 7, 17, 19, 20, 21, 23, 25, 29, 30, 32, 34, 36, 38], "while": [17, 19, 28, 33], "white": 36, "who": 19, "whole": 23, "why": 19, "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": [2, 4, 5, 7, 19, 20, 23, 26, 28, 29, 30], "won": 29, "word": [4, 5, 7], "work": [1, 2, 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, 19, 20, 34], "write": [2, 7, 8, 15, 19, 30, 34, 35], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_opt": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "write_t": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [2, 7, 19, 21, 34, 35], "x": [2, 5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [2, 5, 17, 21, 26, 32, 34, 37], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": [2, 34], "yield": 5, "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44], "your": [0, 2, 7, 17, 19, 20, 23, 24, 29, 30, 33, 34, 35, 36], "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, "apach": 34, "api": 18, "approach": 19, "argument": 35, "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, 19, 35], "code": 20, "column": [25, 29, 35], "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, 4, 5, 7, 11, 23, 25, 26, 30, 32, 35], "guidelin": [19, 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], "mutabl": 19, "name": 35, "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], "pyo3": 19, "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 e4326f106..fafadbdfd 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -610,15 +610,15 @@

      Distinct +----------+--------------------------------------------------+ | Type 1 | Type 2 List | +----------+--------------------------------------------------+ -| Bug | [Poison, , Grass, Flying] | -| Poison | [Ground, , Flying] | -| Electric | [Steel, Flying, ] | +| Bug | [Flying, Grass, , Poison] | +| Poison | [Flying, Ground, ] | +| Electric | [Steel, , Flying] | | Fairy | [] | | Normal | [, Flying, Fairy] | | Ice | [Psychic, Flying] | -| Grass | [, Psychic, Poison] | -| Fire | [, Flying, Dragon] | -| Water | [, Dark, Poison, Psychic, Flying, Ice, Fighting] | +| Grass | [Psychic, , Poison] | +| Fire | [, Dragon, Flying] | +| Water | [Dark, Psychic, Fighting, Ice, Poison, , Flying] | | Ground | [, Rock] | +----------+--------------------------------------------------+ Data truncated. @@ -634,15 +634,15 @@

      Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Poison, Grass, Flying] | -| Poison | [Flying, Ground] | +| Bug | [Flying, Poison, Grass] | +| Poison | [Ground, Flying] | | Electric | [Flying, Steel] | -| Normal | [Flying, Fairy] | +| Normal | [Fairy, Flying] | | Ice | [Psychic, Flying] | -| Grass | [Poison, Psychic] | +| Grass | [Psychic, Poison] | | Fire | [Dragon, Flying] | -| Water | [Poison, Psychic, Flying, Fighting, Ice, Dark] | -| Rock | [Flying, Ground, Water] | +| Water | [Dark, Flying, Psychic, Ice, Fighting, Poison] | +| Rock | [Water, Ground, Flying] | | Ghost | [Poison] | +----------+------------------------------------------------+ Data truncated. @@ -653,15 +653,15 @@

      Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Flying, Grass, Poison] | +| Bug | [Poison, Flying, Grass] | | Poison | [Flying, Ground] | | Electric | [Steel, Flying] | | Fairy | | | Normal | [Fairy, Flying] | | Ice | [Flying, Psychic] | -| Grass | [Psychic, Poison] | -| Fire | [Dragon, Flying] | -| Water | [Ice, Psychic, Fighting, Dark, Poison, Flying] | +| Grass | [Poison, Psychic] | +| Fire | [Flying, Dragon] | +| Water | [Psychic, Fighting, Dark, Poison, Flying, Ice] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index 5f5186e73..f88289ea5 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -446,11 +446,11 @@

      Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 968 | A | -| 2 | ruby | 979 | A | -| 3 | java | 177 | B | -| 4 | haskell | 423 | C | -| 5 | go | 795 | B | +| 1 | python | 418 | A | +| 2 | ruby | 166 | A | +| 3 | java | 885 | B | +| 4 | haskell | 199 | C | +| 5 | go | 985 | B | +-----+---------+--------+--------+ @@ -461,8 +461,8 @@

      Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 968 | A | -| 2 | ruby | 979 | A | +| 1 | python | 418 | A | +| 2 | ruby | 166 | A | +-----+--------+--------+--------+ @@ -480,11 +480,11 @@

      Basic Operations
      In [8]: df.to_pandas()
       Out[8]: 
          nrs    names  random groups
      -0    1   python     968      A
      -1    2     ruby     979      A
      -2    3     java     177      B
      -3    4  haskell     423      C
      -4    5       go     795      B
      +0    1   python     418      A
      +1    2     ruby     166      A
      +2    3     java     885      B
      +3    4  haskell     199      C
      +4    5       go     985      B
       

      describe() shows a quick statistic summary of your data:

      @@ -496,11 +496,11 @@

      Basic Operations+------------+--------------------+-------+-------------------+--------+ | count | 5.0 | 5 | 5.0 | 5 | | null_count | 0.0 | 0 | 0.0 | 0 | -| mean | 3.0 | null | 668.4 | null | -| std | 1.5811388300841898 | null | 354.9490104226239 | null | -| min | 1.0 | go | 177.0 | A | -| max | 5.0 | ruby | 979.0 | C | -| median | 3.0 | null | 795.0 | null | +| mean | 3.0 | null | 530.6 | null | +| std | 1.5811388300841898 | null | 383.2914035039137 | null | +| min | 1.0 | go | 166.0 | A | +| max | 5.0 | ruby | 985.0 | C | +| median | 3.0 | null | 418.0 | null | +------------+--------------------+-------+-------------------+--------+ diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index cfc85464f..3211e8251 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -556,16 +556,16 @@

      Temporal +--------------------------------+ | now() | +--------------------------------+ -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | -| 2025-09-17T19:32:40.245872298Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +| 2025-10-16T17:13:48.336869762Z | +--------------------------------+ Data truncated. diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html index a97fd0274..40625ae25 100644 --- a/user-guide/data-sources.html +++ b/user-guide/data-sources.html @@ -656,7 +656,7 @@

      Delta Lake
      from deltalake import DeltaTable
       
       delta_table = DeltaTable("path_to_table")
      -ctx.register_table_provider("my_delta_table", delta_table)
      +ctx.register_table("my_delta_table", delta_table)
       df = ctx.table("my_delta_table")
       df.show()
       
      diff --git a/user-guide/introduction.html b/user-guide/introduction.html index df9a43faf..cf5fd7719 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -447,7 +447,7 @@

      Installation
      In [1]: import datafusion
       
       In [2]: datafusion.__version__
      -Out[2]: '50.0.0'
      +Out[2]: '50.1.0'
       

      In this documentation we will also show some examples for how DataFusion integrates diff --git a/user-guide/io/table_provider.html b/user-guide/io/table_provider.html index 68208a0d4..ba7e1cbcb 100644 --- a/user-guide/io/table_provider.html +++ b/user-guide/io/table_provider.html @@ -438,23 +438,27 @@ &self, py: Python<'py>, ) -> PyResult<Bound<'py, PyCapsule>> { - let name = CString::new("datafusion_table_provider").unwrap(); + let name = cr"datafusion_table_provider".into(); - let provider = Arc::new(self.clone()) - .map_err(|e| PyRuntimeError::new_err(e.to_string()))?; - let provider = FFI_TableProvider::new(Arc::new(provider), false); + let provider = Arc::new(self.clone()); + let provider = FFI_TableProvider::new(provider, false, None); PyCapsule::new_bound(py, provider, Some(name.clone())) } } -

      Once you have this library available, in python you can register your table provider -to the SessionContext.

      -
      provider = MyTableProvider()
      -ctx.register_table_provider("my_table", provider)
      +

      Once you have this library available, you can construct a +Table in Python and register it with the +SessionContext.

      +
      from datafusion import SessionContext, Table
       
      -ctx.table("my_table").show()
      +ctx = SessionContext()
      +provider = MyTableProvider()
      +
      +ctx.register_table("capsule_table", provider)
      +
      +ctx.table("capsule_table").show()
       
      From 79345e73fabb42f2dbd78c3c6dbda59ae68dd7de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 5 Jan 2026 16:07:08 +0000 Subject: [PATCH 31/36] Publish built docs triggered by fc5d46e9e307dba3778b5cfd7ecd465a5d63a797 --- .../autoapi/datafusion/context/index.rst.txt | 14 +- .../datafusion/dataframe/index.rst.txt | 130 +++++++++++---- .../dataframe_formatter/index.rst.txt | 10 +- .../autoapi/datafusion/expr/index.rst.txt | 22 +-- .../datafusion/functions/index.rst.txt | 102 ++++++------ _sources/autoapi/datafusion/index.rst.txt | 86 ++++++---- .../datafusion/record_batch/index.rst.txt | 25 ++- .../datafusion/user_defined/index.rst.txt | 52 ++++-- .../common-operations/joins.rst.txt | 34 +++- _sources/user-guide/configuration.rst.txt | 2 + _sources/user-guide/dataframe/index.rst.txt | 116 ++++++++++++- _sources/user-guide/io/arrow.rst.txt | 10 +- _sources/user-guide/sql.rst.txt | 91 +++++++++- autoapi/datafusion/context/index.html | 13 +- autoapi/datafusion/dataframe/index.html | 155 +++++++++++++++--- .../datafusion/dataframe_formatter/index.html | 8 +- autoapi/datafusion/expr/index.html | 4 +- autoapi/datafusion/index.html | 84 +++++++--- autoapi/datafusion/record_batch/index.html | 36 +++- autoapi/datafusion/user_defined/index.html | 72 ++++++-- genindex.html | 20 ++- objects.inv | Bin 8766 -> 8815 bytes searchindex.js | 2 +- .../common-operations/aggregations.html | 32 ++-- user-guide/common-operations/basic-info.html | 46 +++--- user-guide/common-operations/functions.html | 28 ++-- user-guide/common-operations/index.html | 1 + user-guide/common-operations/joins.html | 51 ++++++ user-guide/configuration.html | 2 +- user-guide/dataframe/index.html | 113 ++++++++++++- user-guide/introduction.html | 2 +- user-guide/io/arrow.html | 18 +- user-guide/sql.html | 134 ++++++++++++++- 33 files changed, 1191 insertions(+), 324 deletions(-) diff --git a/_sources/autoapi/datafusion/context/index.rst.txt b/_sources/autoapi/datafusion/context/index.rst.txt index 3641fe8e6..50c3a9d4e 100644 --- a/_sources/autoapi/datafusion/context/index.rst.txt +++ b/_sources/autoapi/datafusion/context/index.rst.txt @@ -866,10 +866,14 @@ Module Contents - .. py:method:: sql(query: str, options: SQLOptions | None = None) -> datafusion.dataframe.DataFrame + .. py:method:: sql(query: str, options: SQLOptions | None = None, param_values: dict[str, Any] | None = None, **named_params: Any) -> datafusion.dataframe.DataFrame Create a :py:class:`~datafusion.DataFrame` from SQL query text. + See the online documentation for a description of how to perform + parameterized substitution via either the ``param_values`` option + or passing in ``named_params``. + Note: This API implements DDL statements such as ``CREATE TABLE`` and ``CREATE VIEW`` and DML statements such as ``INSERT INTO`` with in-memory default implementation.See @@ -877,12 +881,15 @@ Module Contents :param query: SQL query text. :param options: If provided, the query will be validated against these options. + :param param_values: Provides substitution of scalar values in the query + after parsing. + :param named_params: Provides string or DataFrame substitution in the query string. :returns: DataFrame representation of the SQL query. - .. py:method:: sql_with_options(query: str, options: SQLOptions) -> datafusion.dataframe.DataFrame + .. py:method:: sql_with_options(query: str, options: SQLOptions, param_values: dict[str, Any] | None = None, **named_params: Any) -> datafusion.dataframe.DataFrame Create a :py:class:`~datafusion.dataframe.DataFrame` from SQL query text. @@ -891,6 +898,9 @@ Module Contents :param query: SQL query text. :param options: SQL options. + :param param_values: Provides substitution of scalar values in the query + after parsing. + :param named_params: Provides string or DataFrame substitution in the query string. :returns: DataFrame representation of the SQL query. diff --git a/_sources/autoapi/datafusion/dataframe/index.rst.txt b/_sources/autoapi/datafusion/dataframe/index.rst.txt index 8898ceaf0..f4134a83d 100644 --- a/_sources/autoapi/datafusion/dataframe/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe/index.rst.txt @@ -49,7 +49,7 @@ Module Contents - .. py:method:: get_default_level() -> Optional[int] + .. py:method:: get_default_level() -> int | None Get the default compression level for the compression type. @@ -96,6 +96,9 @@ Module Contents Two dimensional table representation of data. + DataFrame objects are iterable; iterating over a DataFrame yields + :class:`datafusion.RecordBatch` instances lazily. + See :ref:`user_guide_concepts` in the online documentation for more information. This constructor is not to be used by the end user. @@ -104,24 +107,52 @@ Module Contents create a :py:class:`DataFrame`. + .. py:method:: __aiter__() -> collections.abc.AsyncIterator[datafusion.record_batch.RecordBatch] + + Return an async iterator over this DataFrame's record batches. + + We're using __aiter__ because we support Python < 3.10 where aiter() is not + available. + + + .. py:method:: __arrow_c_stream__(requested_schema: object | None = None) -> object - Export an Arrow PyCapsule Stream. + Export the DataFrame as an Arrow C Stream. + + The DataFrame is executed using DataFusion's streaming APIs and exposed via + Arrow's C Stream interface. Record batches are produced incrementally, so the + full result set is never materialized in memory. + + When ``requested_schema`` is provided, DataFusion applies only simple + projections such as selecting a subset of existing columns or reordering + them. Column renaming, computed expressions, or type coercion are not + supported through this interface. - This will execute and collect the DataFrame. We will attempt to respect the - requested schema, but only trivial transformations will be applied such as only - returning the fields listed in the requested schema if their data types match - those in the DataFrame. + :param requested_schema: Either a :py:class:`pyarrow.Schema` or an Arrow C + Schema capsule (``PyCapsule``) produced by + ``schema._export_to_c_capsule()``. The DataFrame will attempt to + align its output with the fields and order specified by this schema. - :param requested_schema: Attempt to provide the DataFrame using this schema. + :returns: Arrow ``PyCapsule`` object representing an ``ArrowArrayStream``. - :returns: Arrow PyCapsule object. + For practical usage patterns, see the Apache Arrow streaming + documentation: https://arrow.apache.org/docs/python/ipc.html#streaming. + + For details on DataFusion's Arrow integration and DataFrame streaming, + see the user guide (user-guide/io/arrow and user-guide/dataframe/index). + + .. rubric:: Notes + + The Arrow C Data Interface PyCapsule details are documented by Apache + Arrow and can be found at: + https://arrow.apache.org/docs/format/CDataInterface/PyCapsuleInterface.html .. py:method:: __getitem__(key: str | list[str]) -> DataFrame - Return a new :py:class`DataFrame` with the specified column or columns. + Return a new :py:class:`DataFrame` with the specified column or columns. :param key: Column name or list of column names to select. @@ -129,6 +160,12 @@ Module Contents + .. py:method:: __iter__() -> collections.abc.Iterator[datafusion.record_batch.RecordBatch] + + Return an iterator over this DataFrame's record batches. + + + .. py:method:: __repr__() -> str Return a string representation of the DataFrame. @@ -181,6 +218,12 @@ Module Contents + .. py:method:: collect_column(column_name: str) -> pyarrow.Array | pyarrow.ChunkedArray + + Executes this :py:class:`DataFrame` for a single column. + + + .. py:method:: collect_partitioned() -> list[list[pyarrow.RecordBatch]] Execute this DataFrame and collect all partitioned results. @@ -328,24 +371,25 @@ Module Contents - .. py:method:: filter(*predicates: datafusion.expr.Expr) -> DataFrame + .. py:method:: filter(*predicates: datafusion.expr.Expr | str) -> DataFrame Return a DataFrame for which ``predicate`` evaluates to ``True``. Rows for which ``predicate`` evaluates to ``False`` or ``None`` are filtered out. If more than one predicate is provided, these predicates will be - combined as a logical AND. Each ``predicate`` must be an + combined as a logical AND. Each ``predicate`` can be an :class:`~datafusion.expr.Expr` created using helper functions such as - :func:`datafusion.col` or :func:`datafusion.lit`. - If more complex logic is required, see the logical operations in - :py:mod:`~datafusion.functions`. + :func:`datafusion.col` or :func:`datafusion.lit`, or a SQL expression string + that will be parsed against the DataFrame schema. If more complex logic is + required, see the logical operations in :py:mod:`~datafusion.functions`. Example:: from datafusion import col, lit df.filter(col("a") > lit(1)) + df.filter("a > 1") - :param predicates: Predicate expression(s) to filter the DataFrame. + :param predicates: Predicate expression(s) or SQL strings to filter the DataFrame. :returns: DataFrame after filtering. @@ -373,7 +417,7 @@ Module Contents - .. py:method:: into_view() -> datafusion.catalog.Table + .. py:method:: into_view(temporary: bool = False) -> datafusion.catalog.Table Convert ``DataFrame`` into a :class:`~datafusion.Table`. @@ -389,9 +433,9 @@ Module Contents - .. py:method:: join(right: DataFrame, on: str | collections.abc.Sequence[str], how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, left_on: None = None, right_on: None = None, join_keys: None = None) -> DataFrame - join(right: DataFrame, on: None = None, how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, left_on: str | collections.abc.Sequence[str], right_on: str | collections.abc.Sequence[str], join_keys: tuple[list[str], list[str]] | None = None) -> DataFrame - join(right: DataFrame, on: None = None, how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, join_keys: tuple[list[str], list[str]], left_on: None = None, right_on: None = None) -> DataFrame + .. py:method:: join(right: DataFrame, on: str | collections.abc.Sequence[str], how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, left_on: None = None, right_on: None = None, join_keys: None = None, coalesce_duplicate_keys: bool = True) -> DataFrame + join(right: DataFrame, on: None = None, how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, left_on: str | collections.abc.Sequence[str], right_on: str | collections.abc.Sequence[str], join_keys: tuple[list[str], list[str]] | None = None, coalesce_duplicate_keys: bool = True) -> DataFrame + join(right: DataFrame, on: None = None, how: Literal['inner', 'left', 'right', 'full', 'semi', 'anti'] = 'inner', *, join_keys: tuple[list[str], list[str]], left_on: None = None, right_on: None = None, coalesce_duplicate_keys: bool = True) -> DataFrame Join this :py:class:`DataFrame` with another :py:class:`DataFrame`. @@ -403,6 +447,9 @@ Module Contents "right", "full", "semi", "anti". :param left_on: Join column of the left dataframe. :param right_on: Join column of the right dataframe. + :param coalesce_duplicate_keys: When True, coalesce the columns + from the right DataFrame and left DataFrame + that have identical names in the ``on`` fields. :param join_keys: Tuple of two lists of column names to join on. [Deprecated] :returns: DataFrame after join. @@ -491,11 +538,12 @@ Module Contents - .. py:method:: repartition_by_hash(*exprs: datafusion.expr.Expr, num: int) -> DataFrame + .. py:method:: repartition_by_hash(*exprs: datafusion.expr.Expr | str, num: int) -> DataFrame Repartition a DataFrame using a hash partitioning scheme. - :param exprs: Expressions to evaluate and perform hashing on. + :param exprs: Expressions or a SQL expression string to evaluate + and perform hashing on. :param num: Number of partitions to repartition the DataFrame into. :returns: Repartitioned DataFrame. @@ -541,6 +589,17 @@ Module Contents + .. py:method:: select_exprs(*args: str) -> DataFrame + + Project arbitrary list of expression strings into a new DataFrame. + + This method will parse string expressions into logical plan expressions. + The output DataFrame has one column for each expression. + + :returns: DataFrame only containing the specified columns. + + + .. py:method:: show(num: int = 20) -> None Execute the DataFrame and print the result to the console. @@ -615,7 +674,7 @@ Module Contents - .. py:method:: transform(func: Callable[Ellipsis, DataFrame], *args: Any) -> DataFrame + .. py:method:: transform(func: collections.abc.Callable[Ellipsis, DataFrame], *args: Any) -> DataFrame Apply a function to the current DataFrame which returns another DataFrame. @@ -675,12 +734,13 @@ Module Contents - .. py:method:: with_column(name: str, expr: datafusion.expr.Expr) -> DataFrame + .. py:method:: with_column(name: str, expr: datafusion.expr.Expr | str) -> DataFrame Add an additional column to the DataFrame. The ``expr`` must be an :class:`~datafusion.expr.Expr` constructed with - :func:`datafusion.col` or :func:`datafusion.lit`. + :func:`datafusion.col` or :func:`datafusion.lit`, or a SQL expression + string that will be parsed against the DataFrame schema. Example:: @@ -710,13 +770,14 @@ Module Contents - .. py:method:: with_columns(*exprs: datafusion.expr.Expr | Iterable[datafusion.expr.Expr], **named_exprs: datafusion.expr.Expr) -> DataFrame + .. py:method:: with_columns(*exprs: datafusion.expr.Expr | str | collections.abc.Iterable[datafusion.expr.Expr | str], **named_exprs: datafusion.expr.Expr | str) -> DataFrame Add columns to the DataFrame. - By passing expressions, iterables of expressions, or named expressions. + By passing expressions, iterables of expressions, string SQL expressions, + or named expressions. All expressions must be :class:`~datafusion.expr.Expr` objects created via - :func:`datafusion.col` or :func:`datafusion.lit`. + :func:`datafusion.col` or :func:`datafusion.lit`, or SQL expression strings. To pass named expressions use the form ``name=Expr``. Example usage: The following will add 4 columns labeled ``a``, ``b``, ``c``, @@ -729,7 +790,16 @@ Module Contents d=lit(3) ) - :param exprs: Either a single expression or an iterable of expressions to add. + Equivalent example using just SQL strings: + + df = df.with_columns( + "x as a", + ["1 as b", "y as c"], + d="3" + ) + + :param exprs: Either a single expression, an iterable of expressions to add or + SQL expression strings. :param named_exprs: Named expressions in the form of ``name=expr`` :returns: DataFrame with the new columns added. @@ -849,7 +919,7 @@ Module Contents Replacement is typically based on a unique key or primary key. -.. py:class:: ParquetColumnOptions(encoding: Optional[str] = None, dictionary_enabled: Optional[bool] = None, compression: Optional[str] = None, statistics_enabled: Optional[str] = None, bloom_filter_enabled: Optional[bool] = None, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None) +.. py:class:: ParquetColumnOptions(encoding: str | None = None, dictionary_enabled: bool | None = None, compression: str | None = None, statistics_enabled: str | None = None, bloom_filter_enabled: bool | None = None, bloom_filter_fpp: float | None = None, bloom_filter_ndv: int | None = None) Parquet options for individual columns. @@ -916,7 +986,7 @@ Module Contents -.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: Optional[str] = 'zstd(3)', compression_level: Optional[int] = None, dictionary_enabled: Optional[bool] = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: Optional[str] = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: Optional[int] = 64, statistics_truncate_length: Optional[int] = None, data_page_row_count_limit: int = 20000, encoding: Optional[str] = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: Optional[dict[str, ParquetColumnOptions]] = None) +.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: str | None = 'zstd(3)', compression_level: int | None = None, dictionary_enabled: bool | None = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: str | None = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: int | None = 64, statistics_truncate_length: int | None = None, data_page_row_count_limit: int = 20000, encoding: str | None = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: float | None = None, bloom_filter_ndv: int | None = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: dict[str, ParquetColumnOptions] | None = None) Advanced parquet writer options. diff --git a/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt index ad3e62b5d..7f5b3f530 100644 --- a/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt @@ -52,7 +52,7 @@ Module Contents -.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: Optional[str] = None, show_truncation_message: bool = True, style_provider: Optional[StyleProvider] = None, use_shared_styles: bool = True) +.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: str | None = None, show_truncation_message: bool = True, style_provider: StyleProvider | None = None, use_shared_styles: bool = True) Configurable HTML formatter for DataFusion DataFrames. @@ -237,7 +237,7 @@ Module Contents - .. py:method:: set_custom_cell_builder(builder: Callable[[Any, int, int, str], str]) -> None + .. py:method:: set_custom_cell_builder(builder: collections.abc.Callable[[Any, int, int, str], str]) -> None Set a custom cell builder function. @@ -245,7 +245,7 @@ Module Contents - .. py:method:: set_custom_header_builder(builder: Callable[[Any], str]) -> None + .. py:method:: set_custom_header_builder(builder: collections.abc.Callable[[Any], str]) -> None Set a custom header builder function. @@ -254,13 +254,13 @@ Module Contents .. py:attribute:: _custom_cell_builder - :type: Optional[Callable[[Any, int, int, str], str]] + :type: collections.abc.Callable[[Any, int, int, str], str] | None :value: None .. py:attribute:: _custom_header_builder - :type: Optional[Callable[[Any], str]] + :type: collections.abc.Callable[[Any], str] | None :value: None diff --git a/_sources/autoapi/datafusion/expr/index.rst.txt b/_sources/autoapi/datafusion/expr/index.rst.txt index 71f68f7e3..2bea04f40 100644 --- a/_sources/autoapi/datafusion/expr/index.rst.txt +++ b/_sources/autoapi/datafusion/expr/index.rst.txt @@ -339,7 +339,7 @@ Module Contents - .. py:method:: alias(name: str, metadata: Optional[dict[str, str]] = None) -> Expr + .. py:method:: alias(name: str, metadata: dict[str, str] | None = None) -> Expr Assign a name to the expression. @@ -462,7 +462,7 @@ Module Contents - .. py:method:: cast(to: Union[pyarrow.DataType[Any], type]) -> Expr + .. py:method:: cast(to: pyarrow.DataType[Any] | type) -> Expr Cast to a new data type. @@ -572,13 +572,13 @@ Module Contents - .. py:method:: fill_nan(value: Optional[Union[Any, Expr]] = None) -> Expr + .. py:method:: fill_nan(value: Any | Expr | None = None) -> Expr Fill NaN values with a provided value. - .. py:method:: fill_null(value: Optional[Union[Any, Expr]] = None) -> Expr + .. py:method:: fill_null(value: Any | Expr | None = None) -> Expr Fill NULL values with a provided value. @@ -756,7 +756,7 @@ Module Contents - .. py:method:: order_by(*exprs: Union[Expr, SortExpr]) -> ExprFuncBuilder + .. py:method:: order_by(*exprs: Expr | SortExpr) -> ExprFuncBuilder Set the ordering for a window or aggregate function. @@ -790,7 +790,7 @@ Module Contents .. py:method:: python_value() -> Any - Extracts the Expr value into a PyObject. + Extracts the Expr value into `Any`. This is only valid for literal expressions. @@ -1048,7 +1048,7 @@ Module Contents .. py:attribute:: raw_sort -.. py:class:: Window(partition_by: Optional[Union[list[Expr], Expr]] = None, window_frame: Optional[WindowFrame] = None, order_by: Optional[Union[list[Union[SortExpr, Expr, str]], Expr, SortExpr, str]] = None, null_treatment: Optional[datafusion.common.NullTreatment] = None) +.. py:class:: Window(partition_by: list[Expr] | Expr | None = None, window_frame: WindowFrame | None = None, order_by: list[SortExpr | Expr | str] | Expr | SortExpr | str | None = None, null_treatment: datafusion.common.NullTreatment | None = None) Define reusable window parameters. @@ -1080,7 +1080,7 @@ Module Contents -.. py:class:: WindowFrame(units: str, start_bound: Optional[Any], end_bound: Optional[Any]) +.. py:class:: WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None) Defines a window frame for performing window operations. @@ -1131,7 +1131,7 @@ Module Contents Constructs a window frame bound. - .. py:method:: get_offset() -> Optional[int] + .. py:method:: get_offset() -> int | None Returns the offset of the window frame. @@ -1164,7 +1164,7 @@ Module Contents .. py:attribute:: frame_bound -.. py:function:: ensure_expr(value: Union[Expr, Any]) -> datafusion._internal.expr.Expr +.. py:function:: ensure_expr(value: Expr | Any) -> datafusion._internal.expr.Expr Return the internal expression from ``Expr`` or raise ``TypeError``. @@ -1179,7 +1179,7 @@ Module Contents :raises TypeError: If ``value`` is not an instance of :class:`Expr`. -.. py:function:: ensure_expr_list(exprs: Iterable[Union[Expr, Iterable[Expr]]]) -> list[datafusion._internal.expr.Expr] +.. py:function:: ensure_expr_list(exprs: collections.abc.Iterable[Expr | collections.abc.Iterable[Expr]]) -> list[datafusion._internal.expr.Expr] Flatten an iterable of expressions, validating each via ``ensure_expr``. diff --git a/_sources/autoapi/datafusion/functions/index.rst.txt b/_sources/autoapi/datafusion/functions/index.rst.txt index 6a2a049a1..10b7f1a01 100644 --- a/_sources/autoapi/datafusion/functions/index.rst.txt +++ b/_sources/autoapi/datafusion/functions/index.rst.txt @@ -285,7 +285,7 @@ Module Contents Returns inverse hyperbolic cosine. -.. py:function:: alias(expr: datafusion.expr.Expr, name: str, metadata: Optional[dict[str, str]] = None) -> datafusion.expr.Expr +.. py:function:: alias(expr: datafusion.expr.Expr, name: str, metadata: dict[str, str] | None = None) -> datafusion.expr.Expr Creates an alias expression with an optional metadata dictionary. @@ -296,7 +296,7 @@ Module Contents :returns: An expression with the given alias -.. py:function:: approx_distinct(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: approx_distinct(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the approximate number of distinct values. @@ -311,7 +311,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: approx_median(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: approx_median(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the approximate median value. @@ -325,7 +325,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: approx_percentile_cont(sort_expression: datafusion.expr.Expr | datafusion.expr.SortExpr, percentile: float, num_centroids: Optional[int] = None, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: approx_percentile_cont(sort_expression: datafusion.expr.Expr | datafusion.expr.SortExpr, percentile: float, num_centroids: int | None = None, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the value that is approximately at a given percentile of ``expr``. @@ -348,7 +348,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: approx_percentile_cont_with_weight(sort_expression: datafusion.expr.Expr | datafusion.expr.SortExpr, weight: datafusion.expr.Expr, percentile: float, num_centroids: Optional[int] = None, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: approx_percentile_cont_with_weight(sort_expression: datafusion.expr.Expr | datafusion.expr.SortExpr, weight: datafusion.expr.Expr, percentile: float, num_centroids: int | None = None, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the value of the weighted approximate percentile. @@ -372,7 +372,7 @@ Module Contents This is an alias for :py:func:`make_array`. -.. py:function:: array_agg(expression: datafusion.expr.Expr, distinct: bool = False, filter: Optional[datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: array_agg(expression: datafusion.expr.Expr, distinct: bool = False, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Aggregate values into an array. @@ -643,7 +643,7 @@ Module Contents Returns inverse hyperbolic tangent. -.. py:function:: avg(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: avg(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the average value. @@ -656,7 +656,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: bit_and(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: bit_and(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the bitwise AND of the argument. @@ -674,7 +674,7 @@ Module Contents Returns the number of bits in the string argument. -.. py:function:: bit_or(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: bit_or(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the bitwise OR of the argument. @@ -687,7 +687,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: bit_xor(expression: datafusion.expr.Expr, distinct: bool = False, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: bit_xor(expression: datafusion.expr.Expr, distinct: bool = False, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the bitwise XOR of the argument. @@ -701,7 +701,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: bool_and(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: bool_and(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the boolean AND of the argument. @@ -715,7 +715,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: bool_or(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: bool_or(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the boolean OR of the argument. @@ -797,7 +797,7 @@ Module Contents ``NULL`` arguments are ignored. ``separator`` should not be ``NULL``. -.. py:function:: corr(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: corr(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the correlation coefficient between ``value1`` and ``value2``. @@ -826,7 +826,7 @@ Module Contents Returns the cotangent of the argument. -.. py:function:: count(expressions: datafusion.expr.Expr | list[datafusion.expr.Expr] | None = None, distinct: bool = False, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: count(expressions: datafusion.expr.Expr | list[datafusion.expr.Expr] | None = None, distinct: bool = False, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the number of rows that match the given arguments. @@ -840,7 +840,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: count_star(filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: count_star(filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Create a COUNT(1) aggregate expression. @@ -852,14 +852,14 @@ Module Contents :param filter: If provided, only count rows for which the filter is True -.. py:function:: covar(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: covar(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample covariance. This is an alias for :py:func:`covar_samp`. -.. py:function:: covar_pop(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: covar_pop(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the population covariance. @@ -873,7 +873,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: covar_samp(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: covar_samp(value_y: datafusion.expr.Expr, value_x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample covariance. @@ -887,7 +887,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: cume_dist(partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: cume_dist(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a cumulative distribution window function. @@ -963,7 +963,7 @@ Module Contents Converts the argument from radians to degrees. -.. py:function:: dense_rank(partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: dense_rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a dense_rank window function. @@ -1039,7 +1039,7 @@ Module Contents The string list is a string composed of substrings separated by ``,`` characters. -.. py:function:: first_value(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr +.. py:function:: first_value(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr Returns the first value in a group of values. @@ -1102,7 +1102,7 @@ Module Contents Returns true if a given number is +0.0 or -0.0 otherwise returns false. -.. py:function:: lag(arg: datafusion.expr.Expr, shift_offset: int = 1, default_value: Optional[Any] = None, partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: lag(arg: datafusion.expr.Expr, shift_offset: int = 1, default_value: Any | None = None, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a lag window function. @@ -1135,7 +1135,7 @@ Module Contents lag(col("b"), order_by="ts") -.. py:function:: last_value(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr +.. py:function:: last_value(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr Returns the last value in a group of values. @@ -1160,7 +1160,7 @@ Module Contents Returns the least common multiple. -.. py:function:: lead(arg: datafusion.expr.Expr, shift_offset: int = 1, default_value: Optional[Any] = None, partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: lead(arg: datafusion.expr.Expr, shift_offset: int = 1, default_value: Any | None = None, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a lead window function. @@ -1481,7 +1481,7 @@ Module Contents This is an alias for :py:func:`make_array`. -.. py:function:: max(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: max(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Aggregate function that returns the maximum value of the argument. @@ -1497,14 +1497,14 @@ Module Contents Computes an MD5 128-bit checksum for a string expression. -.. py:function:: mean(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: mean(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the average (mean) value of the argument. This is an alias for :py:func:`avg`. -.. py:function:: median(expression: datafusion.expr.Expr, distinct: bool = False, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: median(expression: datafusion.expr.Expr, distinct: bool = False, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the median of a set of numbers. @@ -1519,7 +1519,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: min(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: min(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the minimum value of the argument. @@ -1547,7 +1547,7 @@ Module Contents This will use the same value for all instances of now() in same statement. -.. py:function:: nth_value(expression: datafusion.expr.Expr, n: int, filter: Optional[datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr +.. py:function:: nth_value(expression: datafusion.expr.Expr, n: int, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None, null_treatment: datafusion.common.NullTreatment = NullTreatment.RESPECT_NULLS) -> datafusion.expr.Expr Returns the n-th value in a group of values. @@ -1568,7 +1568,7 @@ Module Contents df.select(nth_value(col("a"), 2, order_by="ts")) -.. py:function:: ntile(groups: int, partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: ntile(groups: int, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a n-tile window function. @@ -1628,7 +1628,7 @@ Module Contents extends for ``length`` characters with new substring. -.. py:function:: percent_rank(partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: percent_rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a percent_rank window function. @@ -1687,7 +1687,7 @@ Module Contents Create a list of values in the range between start and stop. -.. py:function:: rank(partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: rank(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a rank window function. @@ -1753,7 +1753,7 @@ Module Contents -.. py:function:: regr_avgx(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_avgx(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the average of the independent variable ``x``. @@ -1768,7 +1768,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_avgy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_avgy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the average of the dependent variable ``y``. @@ -1783,7 +1783,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_count(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_count(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Counts the number of rows in which both expressions are not null. @@ -1798,7 +1798,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_intercept(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_intercept(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the intercept from the linear regression. @@ -1813,7 +1813,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_r2(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_r2(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the R-squared value from linear regression. @@ -1828,7 +1828,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_slope(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_slope(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the slope from linear regression. @@ -1843,7 +1843,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_sxx(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_sxx(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sum of squares of the independent variable ``x``. @@ -1858,7 +1858,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_sxy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_sxy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sum of products of pairs of numbers. @@ -1873,7 +1873,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: regr_syy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: regr_syy(y: datafusion.expr.Expr, x: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sum of squares of the dependent variable ``y``. @@ -1917,7 +1917,7 @@ Module Contents ``round(lit(125.2345), lit(-2))`` would yield a value of ``100.0``. -.. py:function:: row_number(partition_by: Optional[list[datafusion.expr.Expr] | datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: row_number(partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Create a row number window function. @@ -2009,7 +2009,7 @@ Module Contents Returns true if string starts with prefix. -.. py:function:: stddev(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: stddev(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the standard deviation of the argument. @@ -2020,7 +2020,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: stddev_pop(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: stddev_pop(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the population standard deviation of the argument. @@ -2031,14 +2031,14 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: stddev_samp(arg: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: stddev_samp(arg: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample standard deviation of the argument. This is an alias for :py:func:`stddev`. -.. py:function:: string_agg(expression: datafusion.expr.Expr, delimiter: str, filter: Optional[datafusion.expr.Expr] = None, order_by: Optional[list[datafusion.expr.SortKey] | datafusion.expr.SortKey] = None) -> datafusion.expr.Expr +.. py:function:: string_agg(expression: datafusion.expr.Expr, delimiter: str, filter: datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr Concatenates the input strings. @@ -2088,7 +2088,7 @@ Module Contents Substring from the ``position`` with ``length`` characters. -.. py:function:: sum(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: sum(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sum of a set of numbers. @@ -2183,14 +2183,14 @@ Module Contents Returns uuid v4 as a string value. -.. py:function:: var(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: var(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample variance of the argument. This is an alias for :py:func:`var_samp`. -.. py:function:: var_pop(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: var_pop(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the population variance of the argument. @@ -2201,7 +2201,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: var_samp(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: var_samp(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample variance of the argument. @@ -2212,7 +2212,7 @@ Module Contents :param filter: If provided, only compute against rows for which the filter is True -.. py:function:: var_sample(expression: datafusion.expr.Expr, filter: Optional[datafusion.expr.Expr] = None) -> datafusion.expr.Expr +.. py:function:: var_sample(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Computes the sample variance of the argument. diff --git a/_sources/autoapi/datafusion/index.rst.txt b/_sources/autoapi/datafusion/index.rst.txt index e4208b05c..59e6d2915 100644 --- a/_sources/autoapi/datafusion/index.rst.txt +++ b/_sources/autoapi/datafusion/index.rst.txt @@ -131,7 +131,8 @@ Package Contents -.. py:class:: AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) +.. py:class:: AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) + AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...) Class for performing scalar user-defined functions (UDF). @@ -159,7 +160,7 @@ Package Contents - .. py:method:: from_pycapsule(func: AggregateUDFExportable) -> AggregateUDF + .. py:method:: from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) -> AggregateUDF :staticmethod: @@ -170,8 +171,10 @@ Package Contents - .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, AggregateUDF] - udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> AggregateUDF + .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, AggregateUDF] + udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> AggregateUDF + udaf(accum: AggregateUDFExportable) -> AggregateUDF + udaf(accum: _typeshed.CapsuleType) -> AggregateUDF :staticmethod: @@ -564,7 +567,7 @@ Package Contents - .. py:method:: alias(name: str, metadata: Optional[dict[str, str]] = None) -> Expr + .. py:method:: alias(name: str, metadata: dict[str, str] | None = None) -> Expr Assign a name to the expression. @@ -687,7 +690,7 @@ Package Contents - .. py:method:: cast(to: Union[pyarrow.DataType[Any], type]) -> Expr + .. py:method:: cast(to: pyarrow.DataType[Any] | type) -> Expr Cast to a new data type. @@ -797,13 +800,13 @@ Package Contents - .. py:method:: fill_nan(value: Optional[Union[Any, Expr]] = None) -> Expr + .. py:method:: fill_nan(value: Any | Expr | None = None) -> Expr Fill NaN values with a provided value. - .. py:method:: fill_null(value: Optional[Union[Any, Expr]] = None) -> Expr + .. py:method:: fill_null(value: Any | Expr | None = None) -> Expr Fill NULL values with a provided value. @@ -981,7 +984,7 @@ Package Contents - .. py:method:: order_by(*exprs: Union[Expr, SortExpr]) -> ExprFuncBuilder + .. py:method:: order_by(*exprs: Expr | SortExpr) -> ExprFuncBuilder Set the ordering for a window or aggregate function. @@ -1015,7 +1018,7 @@ Package Contents .. py:method:: python_value() -> Any - Extracts the Expr value into a PyObject. + Extracts the Expr value into `Any`. This is only valid for literal expressions. @@ -1351,7 +1354,7 @@ Package Contents .. py:attribute:: _raw_plan -.. py:class:: ParquetColumnOptions(encoding: Optional[str] = None, dictionary_enabled: Optional[bool] = None, compression: Optional[str] = None, statistics_enabled: Optional[str] = None, bloom_filter_enabled: Optional[bool] = None, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None) +.. py:class:: ParquetColumnOptions(encoding: str | None = None, dictionary_enabled: bool | None = None, compression: str | None = None, statistics_enabled: str | None = None, bloom_filter_enabled: bool | None = None, bloom_filter_fpp: float | None = None, bloom_filter_ndv: int | None = None) Parquet options for individual columns. @@ -1418,7 +1421,7 @@ Package Contents -.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: Optional[str] = 'zstd(3)', compression_level: Optional[int] = None, dictionary_enabled: Optional[bool] = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: Optional[str] = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: Optional[int] = 64, statistics_truncate_length: Optional[int] = None, data_page_row_count_limit: int = 20000, encoding: Optional[str] = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: Optional[float] = None, bloom_filter_ndv: Optional[int] = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: Optional[dict[str, ParquetColumnOptions]] = None) +.. py:class:: ParquetWriterOptions(data_pagesize_limit: int = 1024 * 1024, write_batch_size: int = 1024, writer_version: str = '1.0', skip_arrow_metadata: bool = False, compression: str | None = 'zstd(3)', compression_level: int | None = None, dictionary_enabled: bool | None = True, dictionary_page_size_limit: int = 1024 * 1024, statistics_enabled: str | None = 'page', max_row_group_size: int = 1024 * 1024, created_by: str = 'datafusion-python', column_index_truncate_length: int | None = 64, statistics_truncate_length: int | None = None, data_page_row_count_limit: int = 20000, encoding: str | None = None, bloom_filter_on_write: bool = False, bloom_filter_fpp: float | None = None, bloom_filter_ndv: int | None = None, allow_single_file_parallelism: bool = True, maximum_parallel_row_group_writers: int = 1, maximum_buffered_record_batches_per_stream: int = 2, column_specific_options: dict[str, ParquetColumnOptions] | None = None) Advanced parquet writer options. @@ -1601,6 +1604,23 @@ Package Contents See the :py:class:`RecordBatchStream` iterator for generating this class. + .. py:method:: __arrow_c_array__(requested_schema: object | None = None) -> tuple[object, object] + + Export the record batch via the Arrow C Data Interface. + + This allows zero-copy interchange with libraries that support the + `Arrow PyCapsule interface `_. + + :param requested_schema: Attempt to provide the record batch using this + schema. Only straightforward projections such as column + selection or reordering are applied. + + :returns: Two Arrow PyCapsule objects representing the ``ArrowArray`` and + ``ArrowSchema``. + + + .. py:method:: to_pyarrow() -> pyarrow.RecordBatch Convert to :py:class:`pa.RecordBatch`. @@ -1622,7 +1642,7 @@ Package Contents .. py:method:: __aiter__() -> typing_extensions.Self - Async iterator function. + Return an asynchronous iterator over record batches. @@ -1630,19 +1650,19 @@ Package Contents :async: - Async iterator function. + Return the next :py:class:`RecordBatch` in the stream asynchronously. .. py:method:: __iter__() -> typing_extensions.Self - Iterator function. + Return an iterator over record batches. .. py:method:: __next__() -> RecordBatch - Iterator function. + Return the next :py:class:`RecordBatch` in the stream. @@ -1821,7 +1841,7 @@ Package Contents .. py:attribute:: options_internal -.. py:class:: ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) +.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) Class for performing scalar user-defined functions (UDF). @@ -1859,8 +1879,8 @@ Package Contents - .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, ScalarUDF] - udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> ScalarUDF + .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] + udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> ScalarUDF udf(func: ScalarUDFExportable) -> ScalarUDF :staticmethod: @@ -2120,7 +2140,7 @@ Package Contents Returns the schema associated with this table. -.. py:class:: TableFunction(name: str, func: Callable[[], any]) +.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any]) Class for performing user-defined table functions (UDTF). @@ -2145,7 +2165,7 @@ Package Contents - .. py:method:: _create_table_udf(func: Callable[Ellipsis, Any], name: str) -> TableFunction + .. py:method:: _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) -> TableFunction :staticmethod: @@ -2153,7 +2173,7 @@ Package Contents - .. py:method:: _create_table_udf_decorator(name: Optional[str] = None) -> Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]] + .. py:method:: _create_table_udf_decorator(name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] :staticmethod: @@ -2161,8 +2181,8 @@ Package Contents - .. py:method:: udtf(name: str) -> Callable[Ellipsis, Any] - udtf(func: Callable[[], Any], name: str) -> TableFunction + .. py:method:: udtf(name: str) -> collections.abc.Callable[Ellipsis, Any] + udtf(func: collections.abc.Callable[[], Any], name: str) -> TableFunction :staticmethod: @@ -2173,7 +2193,7 @@ Package Contents .. py:attribute:: _udtf -.. py:class:: WindowFrame(units: str, start_bound: Optional[Any], end_bound: Optional[Any]) +.. py:class:: WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None) Defines a window frame for performing window operations. @@ -2215,7 +2235,7 @@ Package Contents .. py:attribute:: window_frame -.. py:class:: WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) +.. py:class:: WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) Class for performing window user-defined functions (UDF). @@ -2243,7 +2263,7 @@ Package Contents - .. py:method:: _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF + .. py:method:: _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF :staticmethod: @@ -2251,7 +2271,7 @@ Package Contents - .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]] + .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] :staticmethod: @@ -2259,7 +2279,7 @@ Package Contents - .. py:method:: _get_default_name(func: Callable) -> str + .. py:method:: _get_default_name(func: collections.abc.Callable) -> str :staticmethod: @@ -2286,8 +2306,8 @@ Package Contents - .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, WindowUDF] - udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF + .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, WindowUDF] + udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF :staticmethod: @@ -2366,12 +2386,12 @@ Package Contents ... ) -.. py:function:: lit(value) -> expr.Expr +.. py:function:: lit(value: Any) -> expr.Expr Create a literal expression. -.. py:function:: literal(value) -> expr.Expr +.. py:function:: literal(value: Any) -> expr.Expr Create a literal expression. diff --git a/_sources/autoapi/datafusion/record_batch/index.rst.txt b/_sources/autoapi/datafusion/record_batch/index.rst.txt index ae91b4c63..f51a7e667 100644 --- a/_sources/autoapi/datafusion/record_batch/index.rst.txt +++ b/_sources/autoapi/datafusion/record_batch/index.rst.txt @@ -33,6 +33,23 @@ Module Contents See the :py:class:`RecordBatchStream` iterator for generating this class. + .. py:method:: __arrow_c_array__(requested_schema: object | None = None) -> tuple[object, object] + + Export the record batch via the Arrow C Data Interface. + + This allows zero-copy interchange with libraries that support the + `Arrow PyCapsule interface `_. + + :param requested_schema: Attempt to provide the record batch using this + schema. Only straightforward projections such as column + selection or reordering are applied. + + :returns: Two Arrow PyCapsule objects representing the ``ArrowArray`` and + ``ArrowSchema``. + + + .. py:method:: to_pyarrow() -> pyarrow.RecordBatch Convert to :py:class:`pa.RecordBatch`. @@ -54,7 +71,7 @@ Module Contents .. py:method:: __aiter__() -> typing_extensions.Self - Async iterator function. + Return an asynchronous iterator over record batches. @@ -62,19 +79,19 @@ Module Contents :async: - Async iterator function. + Return the next :py:class:`RecordBatch` in the stream asynchronously. .. py:method:: __iter__() -> typing_extensions.Self - Iterator function. + Return an iterator over record batches. .. py:method:: __next__() -> RecordBatch - Iterator function. + Return the next :py:class:`RecordBatch` in the stream. diff --git a/_sources/autoapi/datafusion/user_defined/index.rst.txt b/_sources/autoapi/datafusion/user_defined/index.rst.txt index 591d4cda9..784a39c75 100644 --- a/_sources/autoapi/datafusion/user_defined/index.rst.txt +++ b/_sources/autoapi/datafusion/user_defined/index.rst.txt @@ -38,6 +38,14 @@ Classes datafusion.user_defined.WindowUDFExportable +Functions +--------- + +.. autoapisummary:: + + datafusion.user_defined._is_pycapsule + + Module Contents --------------- @@ -78,7 +86,8 @@ Module Contents -.. py:class:: AggregateUDF(name: str, accumulator: Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) +.. py:class:: AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) + AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...) Class for performing scalar user-defined functions (UDF). @@ -106,7 +115,7 @@ Module Contents - .. py:method:: from_pycapsule(func: AggregateUDFExportable) -> AggregateUDF + .. py:method:: from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) -> AggregateUDF :staticmethod: @@ -117,8 +126,10 @@ Module Contents - .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, AggregateUDF] - udaf(accum: Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: Optional[str] = None) -> AggregateUDF + .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, AggregateUDF] + udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> AggregateUDF + udaf(accum: AggregateUDFExportable) -> AggregateUDF + udaf(accum: _typeshed.CapsuleType) -> AggregateUDF :staticmethod: @@ -206,7 +217,7 @@ Module Contents .. py:method:: __datafusion_aggregate_udf__() -> object -.. py:class:: ScalarUDF(name: str, func: Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) +.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) Class for performing scalar user-defined functions (UDF). @@ -244,8 +255,8 @@ Module Contents - .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, ScalarUDF] - udf(func: Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: Optional[str] = None) -> ScalarUDF + .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] + udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> ScalarUDF udf(func: ScalarUDFExportable) -> ScalarUDF :staticmethod: @@ -308,7 +319,7 @@ Module Contents .. py:method:: __datafusion_scalar_udf__() -> object -.. py:class:: TableFunction(name: str, func: Callable[[], any]) +.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any]) Class for performing user-defined table functions (UDTF). @@ -333,7 +344,7 @@ Module Contents - .. py:method:: _create_table_udf(func: Callable[Ellipsis, Any], name: str) -> TableFunction + .. py:method:: _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) -> TableFunction :staticmethod: @@ -341,7 +352,7 @@ Module Contents - .. py:method:: _create_table_udf_decorator(name: Optional[str] = None) -> Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]] + .. py:method:: _create_table_udf_decorator(name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] :staticmethod: @@ -349,8 +360,8 @@ Module Contents - .. py:method:: udtf(name: str) -> Callable[Ellipsis, Any] - udtf(func: Callable[[], Any], name: str) -> TableFunction + .. py:method:: udtf(name: str) -> collections.abc.Callable[Ellipsis, Any] + udtf(func: collections.abc.Callable[[], Any], name: str) -> TableFunction :staticmethod: @@ -589,7 +600,7 @@ Module Contents -.. py:class:: WindowUDF(name: str, func: Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) +.. py:class:: WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) Class for performing window user-defined functions (UDF). @@ -617,7 +628,7 @@ Module Contents - .. py:method:: _create_window_udf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF + .. py:method:: _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF :staticmethod: @@ -625,7 +636,7 @@ Module Contents - .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]] + .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] :staticmethod: @@ -633,7 +644,7 @@ Module Contents - .. py:method:: _get_default_name(func: Callable) -> str + .. py:method:: _get_default_name(func: collections.abc.Callable) -> str :staticmethod: @@ -660,8 +671,8 @@ Module Contents - .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> Callable[Ellipsis, WindowUDF] - udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: Optional[str] = None) -> WindowUDF + .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, WindowUDF] + udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF :staticmethod: @@ -728,6 +739,11 @@ Module Contents .. py:method:: __datafusion_window_udf__() -> object +.. py:function:: _is_pycapsule(value: object) -> TypeGuard[_typeshed.CapsuleType] + + Return ``True`` when ``value`` is a CPython ``PyCapsule``. + + .. py:data:: _R .. py:data:: udaf diff --git a/_sources/user-guide/common-operations/joins.rst.txt b/_sources/user-guide/common-operations/joins.rst.txt index 40d922150..1d9d70385 100644 --- a/_sources/user-guide/common-operations/joins.rst.txt +++ b/_sources/user-guide/common-operations/joins.rst.txt @@ -101,4 +101,36 @@ the right table. .. ipython:: python - left.join(right, left_on="customer_id", right_on="id", how="anti") \ No newline at end of file + left.join(right, left_on="customer_id", right_on="id", how="anti") + +Duplicate Keys +-------------- + +It is common to join two DataFrames on a common column name. Starting in +version 51.0.0, ``datafusion-python``` will now coalesce on column with identical names by +default. This reduces problems with ambiguous column selection after joins. +You can disable this feature by setting the parameter ``coalesce_duplicate_keys`` +to ``False``. + +.. ipython:: python + + left = ctx.from_pydict( + { + "id": [1, 2, 3], + "customer": ["Alice", "Bob", "Charlie"], + } + ) + + right = ctx.from_pylist([ + {"id": 1, "name": "CityCabs"}, + {"id": 2, "name": "MetroRide"}, + {"id": 5, "name": "UrbanGo"}, + ]) + + left.join(right, "id", how="inner") + +In contrast to the above example, if we wish to get both columns: + +.. ipython:: python + + left.join(right, "id", how="inner", coalesce_duplicate_keys=False) diff --git a/_sources/user-guide/configuration.rst.txt b/_sources/user-guide/configuration.rst.txt index 5425a040d..f8e613cd4 100644 --- a/_sources/user-guide/configuration.rst.txt +++ b/_sources/user-guide/configuration.rst.txt @@ -15,6 +15,8 @@ .. specific language governing permissions and limitations .. under the License. +.. _configuration: + Configuration ============= diff --git a/_sources/user-guide/dataframe/index.rst.txt b/_sources/user-guide/dataframe/index.rst.txt index 1387db0bd..510bcbc68 100644 --- a/_sources/user-guide/dataframe/index.rst.txt +++ b/_sources/user-guide/dataframe/index.rst.txt @@ -95,8 +95,9 @@ DataFusion's DataFrame API offers a wide range of operations: # Select with expressions df = df.select(column("a") + column("b"), column("a") - column("b")) - # Filter rows + # Filter rows (expressions or SQL strings) df = df.filter(column("age") > literal(25)) + df = df.filter("age > 25") # Add computed columns df = df.with_column("full_name", column("first_name") + literal(" ") + column("last_name")) @@ -195,10 +196,121 @@ To materialize the results of your DataFrame operations: # Display results df.show() # Print tabular format to console - + # Count rows count = df.count() + # Collect a single column of data as a PyArrow Array + arr = df.collect_column("age") + +Zero-copy streaming to Arrow-based Python libraries +--------------------------------------------------- + +DataFusion DataFrames implement the ``__arrow_c_stream__`` protocol, enabling +zero-copy, lazy streaming into Arrow-based Python libraries. With the streaming +protocol, batches are produced on demand. + +.. note:: + + The protocol is implementation-agnostic and works with any Python library + that understands the Arrow C streaming interface (for example, PyArrow + or other Arrow-compatible implementations). The sections below provide a + short PyArrow-specific example and general guidance for other + implementations. + +PyArrow +------- + +.. code-block:: python + + import pyarrow as pa + + # Create a PyArrow RecordBatchReader without materializing all batches + reader = pa.RecordBatchReader.from_stream(df) + for batch in reader: + ... # process each batch as it is produced + +DataFrames are also iterable, yielding :class:`datafusion.RecordBatch` +objects lazily so you can loop over results directly without importing +PyArrow: + +.. code-block:: python + + for batch in df: + ... # each batch is a ``datafusion.RecordBatch`` + +Each batch exposes ``to_pyarrow()``, allowing conversion to a PyArrow +table. ``pa.table(df)`` collects the entire DataFrame eagerly into a +PyArrow table: + +.. code-block:: python + + import pyarrow as pa + table = pa.table(df) + +Asynchronous iteration is supported as well, allowing integration with +``asyncio`` event loops: + +.. code-block:: python + + async for batch in df: + ... # process each batch as it is produced + +To work with the stream directly, use ``execute_stream()``, which returns a +:class:`~datafusion.RecordBatchStream`. + +.. code-block:: python + + stream = df.execute_stream() + for batch in stream: + ... + +Execute as Stream +^^^^^^^^^^^^^^^^^ + +For finer control over streaming execution, use +:py:meth:`~datafusion.DataFrame.execute_stream` to obtain a +:py:class:`datafusion.RecordBatchStream`: + +.. code-block:: python + + stream = df.execute_stream() + for batch in stream: + ... # process each batch as it is produced + +.. tip:: + + To get a PyArrow reader instead, call + + ``pa.RecordBatchReader.from_stream(df)``. + +When partition boundaries are important, +:py:meth:`~datafusion.DataFrame.execute_stream_partitioned` +returns an iterable of :py:class:`datafusion.RecordBatchStream` objects, one per +partition: + +.. code-block:: python + + for stream in df.execute_stream_partitioned(): + for batch in stream: + ... # each stream yields RecordBatches + +To process partitions concurrently, first collect the streams into a list +and then poll each one in a separate ``asyncio`` task: + +.. code-block:: python + + import asyncio + + async def consume(stream): + async for batch in stream: + ... + + streams = list(df.execute_stream_partitioned()) + await asyncio.gather(*(consume(s) for s in streams)) + +See :doc:`../io/arrow` for additional details on the Arrow interface. + HTML Rendering -------------- diff --git a/_sources/user-guide/io/arrow.rst.txt b/_sources/user-guide/io/arrow.rst.txt index d571aa99c..9196fcea7 100644 --- a/_sources/user-guide/io/arrow.rst.txt +++ b/_sources/user-guide/io/arrow.rst.txt @@ -60,14 +60,16 @@ Exporting from DataFusion DataFusion DataFrames implement ``__arrow_c_stream__`` PyCapsule interface, so any Python library that accepts these can import a DataFusion DataFrame directly. -.. warning:: - It is important to note that this will cause the DataFrame execution to happen, which may be - a time consuming task. That is, you will cause a - :py:func:`datafusion.dataframe.DataFrame.collect` operation call to occur. +Invoking ``__arrow_c_stream__`` triggers execution of the underlying query, but +batches are yielded incrementally rather than materialized all at once in memory. +Consumers can process the stream as it arrives. The stream executes lazily, +letting downstream readers pull batches on demand. .. ipython:: python + from datafusion import col, lit + df = df.select((col("a") * lit(1.5)).alias("c"), lit("df").alias("d")) pa.table(df) diff --git a/_sources/user-guide/sql.rst.txt b/_sources/user-guide/sql.rst.txt index 6fa7f0c6a..b4bfb9611 100644 --- a/_sources/user-guide/sql.rst.txt +++ b/_sources/user-guide/sql.rst.txt @@ -23,17 +23,100 @@ DataFusion also offers a SQL API, read the full reference `here `_, +but allow passing named parameters into a SQL query. Consider this simple +example. + +.. ipython:: python + + def show_attacks(ctx: SessionContext, threshold: int) -> None: + ctx.sql( + 'SELECT "Name", "Attack" FROM pokemon WHERE "Attack" > $val', val=threshold + ).show(num=5) + show_attacks(ctx, 75) + +When passing parameters like the example above we convert the Python objects +into their string representation. We also have special case handling +for :py:class:`~datafusion.dataframe.DataFrame` objects, since they cannot simply +be turned into string representations for an SQL query. In these cases we +will register a temporary view in the :py:class:`~datafusion.context.SessionContext` +using a generated table name. + +The formatting for passing string replacement objects is to precede the +variable name with a single ``$``. This works for all dialects in +the SQL parser except ``hive`` and ``mysql``. Since these dialects do not +support named placeholders, we are unable to do this type of replacement. +We recommend either switching to another dialect or using Python +f-string style replacement. + +.. warning:: + + To support DataFrame parameterized queries, your session must support + registration of temporary views. The default + :py:class:`~datafusion.catalog.CatalogProvider` and + :py:class:`~datafusion.catalog.SchemaProvider` do have this capability. + If you have implemented custom providers, it is important that temporary + views do not persist across :py:class:`~datafusion.context.SessionContext` + or you may get unintended consequences. + +The following example shows passing in both a :py:class:`~datafusion.dataframe.DataFrame` +object as well as a Python object to be used in parameterized replacement. + +.. ipython:: python + + def show_column( + ctx: SessionContext, column: str, df: DataFrame, threshold: int + ) -> None: + ctx.sql( + 'SELECT "Name", $col FROM $df WHERE $col > $val', + col=column, + df=df, + val=threshold, + ).show(num=5) + df = ctx.table("pokemon") + show_column(ctx, '"Defense"', df, 75) + +The approach implemented for conversion of variables into a SQL query +relies on string conversion. This has the potential for data loss, +specifically for cases like floating point numbers. If you need to pass +variables into a parameterized query and it is important to maintain the +original value without conversion to a string, then you can use the +optional parameter ``param_values`` to specify these. This parameter +expects a dictionary mapping from the parameter name to a Python +object. Those objects will be cast into a +`PyArrow Scalar Value `_. + +Using ``param_values`` will rely on the SQL dialect you have configured +for your session. This can be set using the :ref:`configuration options ` +of your :py:class:`~datafusion.context.SessionContext`. Similar to how +`prepared statements `_ +work, these parameters are limited to places where you would pass in a +scalar value, such as a comparison. + +.. ipython:: python + + def param_attacks(ctx: SessionContext, threshold: int) -> None: + ctx.sql( + 'SELECT "Name", "Attack" FROM pokemon WHERE "Attack" > $val', + param_values={"val": threshold}, + ).show(num=5) + param_attacks(ctx, 75) diff --git a/autoapi/datafusion/context/index.html b/autoapi/datafusion/context/index.html index cfd76c86e..f8aefac95 100644 --- a/autoapi/datafusion/context/index.html +++ b/autoapi/datafusion/context/index.html @@ -2282,8 +2282,11 @@

      Module Contents
      -sql(query: str, options: SQLOptions | None = None) datafusion.dataframe.DataFrame
      +sql(query: str, options: SQLOptions | None = None, param_values: dict[str, Any] | None = None, **named_params: Any) datafusion.dataframe.DataFrame

      Create a DataFrame from SQL query text.

      +

      See the online documentation for a description of how to perform +parameterized substitution via either the param_values option +or passing in named_params.

      Note: This API implements DDL statements such as CREATE TABLE and CREATE VIEW and DML statements such as INSERT INTO with in-memory default implementation.See @@ -2293,6 +2296,9 @@

      Module Contents
      • query – SQL query text.

      • options – If provided, the query will be validated against these options.

      • +
      • param_values – Provides substitution of scalar values in the query +after parsing.

      • +
      • named_params – Provides string or DataFrame substitution in the query string.

      Returns:
      @@ -2303,7 +2309,7 @@

      Module Contents
      -sql_with_options(query: str, options: SQLOptions) datafusion.dataframe.DataFrame
      +sql_with_options(query: str, options: SQLOptions, param_values: dict[str, Any] | None = None, **named_params: Any) datafusion.dataframe.DataFrame

      Create a DataFrame from SQL query text.

      This function will first validate that the query is allowed by the provided options.

      @@ -2312,6 +2318,9 @@

      Module Contents
      • query – SQL query text.

      • options – SQL options.

      • +
      • param_values – Provides substitution of scalar values in the query +after parsing.

      • +
      • named_params – Provides string or DataFrame substitution in the query string.

      Returns:
      diff --git a/autoapi/datafusion/dataframe/index.html b/autoapi/datafusion/dataframe/index.html index b302fbec6..15d90ff7d 100644 --- a/autoapi/datafusion/dataframe/index.html +++ b/autoapi/datafusion/dataframe/index.html @@ -518,6 +518,15 @@
      @@ -1966,12 +2042,13 @@

      Module Contents
      -repartition_by_hash(*exprs: datafusion.expr.Expr, num: int) DataFrame
      +repartition_by_hash(*exprs: datafusion.expr.Expr | str, num: int) DataFrame

      Repartition a DataFrame using a hash partitioning scheme.

      Parameters:
        -
      • exprs – Expressions to evaluate and perform hashing on.

      • +
      • exprs – Expressions or a SQL expression string to evaluate +and perform hashing on.

      • num – Number of partitions to repartition the DataFrame into.

      @@ -2027,6 +2104,19 @@

      Module Contents +
      +select_exprs(*args: str) DataFrame
      +

      Project arbitrary list of expression strings into a new DataFrame.

      +

      This method will parse string expressions into logical plan expressions. +The output DataFrame has one column for each expression.

      +
      +
      Returns:
      +

      DataFrame only containing the specified columns.

      +
      +
      +

      +
      show(num: int = 20) None
      @@ -2127,7 +2217,7 @@

      Module Contents
      -transform(func: Callable[Ellipsis, DataFrame], *args: Any) DataFrame
      +transform(func: collections.abc.Callable[Ellipsis, DataFrame], *args: Any) DataFrame

      Apply a function to the current DataFrame which returns another DataFrame.

      This is useful for chaining together multiple functions. For example:

      def add_3(df: DataFrame) -> DataFrame:
      @@ -2209,10 +2299,11 @@ 

      Module Contents
      -with_column(name: str, expr: datafusion.expr.Expr) DataFrame
      +with_column(name: str, expr: datafusion.expr.Expr | str) DataFrame

      Add an additional column to the DataFrame.

      The expr must be an Expr constructed with -datafusion.col() or datafusion.lit().

      +datafusion.col() or datafusion.lit(), or a SQL expression +string that will be parsed against the DataFrame schema.

      Example:

      from datafusion import col, lit
       df.with_column("b", col("a") + lit(1))
      @@ -2253,11 +2344,12 @@ 

      Module Contents
      -with_columns(*exprs: datafusion.expr.Expr | Iterable[datafusion.expr.Expr], **named_exprs: datafusion.expr.Expr) DataFrame
      +with_columns(*exprs: datafusion.expr.Expr | str | collections.abc.Iterable[datafusion.expr.Expr | str], **named_exprs: datafusion.expr.Expr | str) DataFrame

      Add columns to the DataFrame.

      -

      By passing expressions, iterables of expressions, or named expressions. +

      By passing expressions, iterables of expressions, string SQL expressions, +or named expressions. All expressions must be Expr objects created via -datafusion.col() or datafusion.lit(). +datafusion.col() or datafusion.lit(), or SQL expression strings. To pass named expressions use the form name=Expr.

      Example usage: The following will add 4 columns labeled a, b, c, and d:

      @@ -2267,12 +2359,21 @@

      Module Contents[lit(1).alias("b"), col("y").alias("c")], d=lit(3) ) + +Equivalent example using just SQL strings: + +df = df.with_columns( + "x as a", + ["1 as b", "y as c"], + d="3" +)

      Parameters:
        -
      • exprs – Either a single expression or an iterable of expressions to add.

      • +
      • exprs – Either a single expression, an iterable of expressions to add or +SQL expression strings.

      • named_exprs – Named expressions in the form of name=expr

      diff --git a/autoapi/datafusion/dataframe_formatter/index.html b/autoapi/datafusion/dataframe_formatter/index.html index 2fa77cd18..615c37da5 100644 --- a/autoapi/datafusion/dataframe_formatter/index.html +++ b/autoapi/datafusion/dataframe_formatter/index.html @@ -1181,7 +1181,7 @@

      Module Contents
      -set_custom_cell_builder(builder: Callable[[Any, int, int, str], str]) None
      +set_custom_cell_builder(builder: collections.abc.Callable[[Any, int, int, str], str]) None

      Set a custom cell builder function.

      Parameters:
      @@ -1192,7 +1192,7 @@

      Module Contents
      -set_custom_header_builder(builder: Callable[[Any], str]) None
      +set_custom_header_builder(builder: collections.abc.Callable[[Any], str]) None

      Set a custom header builder function.

      Parameters:
      @@ -1203,12 +1203,12 @@

      Module Contents
      -_custom_cell_builder: Callable[[Any, int, int, str], str] | None = None
      +_custom_cell_builder: collections.abc.Callable[[Any, int, int, str], str] | None = None

      -_custom_header_builder: Callable[[Any], str] | None = None
      +_custom_header_builder: collections.abc.Callable[[Any], str] | None = None
      diff --git a/autoapi/datafusion/expr/index.html b/autoapi/datafusion/expr/index.html index 692067365..e55ea8720 100644 --- a/autoapi/datafusion/expr/index.html +++ b/autoapi/datafusion/expr/index.html @@ -3518,7 +3518,7 @@

      Returns:
      python_value() Any
      -

      Extracts the Expr value into a PyObject.

      +

      Extracts the Expr value into Any.

      This is only valid for literal expressions.

      Returns:
      @@ -3948,7 +3948,7 @@

      Returns:
      -datafusion.expr.ensure_expr_list(exprs: Iterable[Expr | Iterable[Expr]]) list[datafusion._internal.expr.Expr]
      +datafusion.expr.ensure_expr_list(exprs: collections.abc.Iterable[Expr | collections.abc.Iterable[Expr]]) list[datafusion._internal.expr.Expr]

      Flatten an iterable of expressions, validating each via ensure_expr.

      Parameters:
      diff --git a/autoapi/datafusion/index.html b/autoapi/datafusion/index.html index fab8b5105..d306bc467 100644 --- a/autoapi/datafusion/index.html +++ b/autoapi/datafusion/index.html @@ -2252,6 +2252,15 @@
      -static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[[Callable[[], WindowEvaluator]], Callable[Ellipsis, datafusion.expr.Expr]]
      +static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]]

      Create a decorator for a WindowUDF.

      -static _get_default_name(func: Callable) str
      +static _get_default_name(func: collections.abc.Callable) str

      Get the default name for a function based on its attributes.

      @@ -1661,9 +1691,9 @@

      Module Contents
      -static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) Callable[Ellipsis, WindowUDF]
      +static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, WindowUDF]
      -static udwf(func: Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
      +static udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF

      Create a new User-Defined Window Function (UDWF).

      This class can be used both as either a function or a decorator.

      @@ -1738,6 +1768,12 @@

      Module Contents +
      +datafusion.user_defined._is_pycapsule(value: object) TypeGuard[_typeshed.CapsuleType]
      +

      Return True when value is a CPython PyCapsule.

      +

      +
      datafusion.user_defined._R
      diff --git a/genindex.html b/genindex.html index b07a6ea90..a36dc3da4 100644 --- a/genindex.html +++ b/genindex.html @@ -445,9 +445,11 @@

      _

    • (datafusion.expr.Expr method)
  • -
  • __aiter__() (datafusion.record_batch.RecordBatchStream method) +
  • __aiter__() (datafusion.dataframe.DataFrame method)
  • @@ -464,7 +466,13 @@

    _

  • __arrow_c_array__() (datafusion.context.ArrowArrayExportable method) + +
  • __arrow_c_stream__() (datafusion.context.ArrowStreamExportable method)
  • -
  • __iter__() (datafusion.record_batch.RecordBatchStream method) +
  • __iter__() (datafusion.dataframe.DataFrame method)
  • @@ -769,6 +779,8 @@

    _

  • (datafusion.Table attribute)
  • +
  • _is_pycapsule() (in module datafusion.user_defined) +
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method)
  • Functions
      diff --git a/user-guide/common-operations/joins.html b/user-guide/common-operations/joins.html index 56ae4eaaa..20fb374e6 100644 --- a/user-guide/common-operations/joins.html +++ b/user-guide/common-operations/joins.html @@ -432,6 +432,11 @@ Left Anti Join +
    • + + Duplicate Keys + +
    @@ -571,6 +576,52 @@

    Left Anti Join +

    Duplicate Keys

    +

    It is common to join two DataFrames on a common column name. Starting in +version 51.0.0, datafusion-python` will now coalesce on column with identical names by +default. This reduces problems with ambiguous column selection after joins. +You can disable this feature by setting the parameter coalesce_duplicate_keys +to False.

    +
    In [10]: left = ctx.from_pydict(
    +   ....:     {
    +   ....:         "id": [1, 2, 3],
    +   ....:         "customer": ["Alice", "Bob", "Charlie"],
    +   ....:     }
    +   ....: )
    +   ....: 
    +
    +In [11]: right = ctx.from_pylist([
    +   ....:     {"id": 1, "name": "CityCabs"},
    +   ....:     {"id": 2, "name": "MetroRide"},
    +   ....:     {"id": 5, "name": "UrbanGo"},
    +   ....: ])
    +   ....: 
    +
    +In [12]: left.join(right, "id", how="inner")
    +Out[12]: 
    +DataFrame()
    ++----+----------+-----------+
    +| id | customer | name      |
    ++----+----------+-----------+
    +| 1  | Alice    | CityCabs  |
    +| 2  | Bob      | MetroRide |
    ++----+----------+-----------+
    +
    +
    +

    In contrast to the above example, if we wish to get both columns:

    +
    In [13]: left.join(right, "id", how="inner", coalesce_duplicate_keys=False)
    +Out[13]: 
    +DataFrame()
    ++----+----------+----+-----------+
    +| id | customer | id | name      |
    ++----+----------+----+-----------+
    +| 1  | Alice    | 1  | CityCabs  |
    +| 2  | Bob      | 2  | MetroRide |
    ++----+----------+----+-----------+
    +
    +
    + diff --git a/user-guide/configuration.html b/user-guide/configuration.html index 87ebc3ee6..c26e0b53f 100644 --- a/user-guide/configuration.html +++ b/user-guide/configuration.html @@ -448,7 +448,7 @@
    -

    Configuration

    +

    Configuration

    Let’s look at how we can configure DataFusion. When creating a SessionContext, you can pass in a SessionConfig and RuntimeEnvBuilder object. These two cover a wide range of options.

    from datafusion import RuntimeEnvBuilder, SessionConfig, SessionContext
    diff --git a/user-guide/dataframe/index.html b/user-guide/dataframe/index.html
    index cf5c2acd0..69a344d86 100644
    --- a/user-guide/dataframe/index.html
    +++ b/user-guide/dataframe/index.html
    @@ -432,6 +432,23 @@
        Terminal Operations
       
      

  • +
  • + + Zero-copy streaming to Arrow-based Python libraries + +
  • +
  • + + PyArrow + + +
  • HTML Rendering @@ -543,8 +560,9 @@

    Common DataFrame Operations# Select with expressions df = df.select(column("a") + column("b"), column("a") - column("b")) -# Filter rows +# Filter rows (expressions or SQL strings) df = df.filter(column("age") > literal(25)) +df = df.filter("age > 25") # Add computed columns df = df.with_column("full_name", column("first_name") + literal(" ") + column("last_name")) @@ -634,8 +652,101 @@

    Terminal Operations# Count rows count = df.count() + +# Collect a single column of data as a PyArrow Array +arr = df.collect_column("age") + + + +
    +

    Zero-copy streaming to Arrow-based Python libraries

    +

    DataFusion DataFrames implement the __arrow_c_stream__ protocol, enabling +zero-copy, lazy streaming into Arrow-based Python libraries. With the streaming +protocol, batches are produced on demand.

    +
    +

    Note

    +

    The protocol is implementation-agnostic and works with any Python library +that understands the Arrow C streaming interface (for example, PyArrow +or other Arrow-compatible implementations). The sections below provide a +short PyArrow-specific example and general guidance for other +implementations.

    +
    +
    +
    +

    PyArrow

    +
    import pyarrow as pa
    +
    +# Create a PyArrow RecordBatchReader without materializing all batches
    +reader = pa.RecordBatchReader.from_stream(df)
    +for batch in reader:
    +    ...  # process each batch as it is produced
    +
    +
    +

    DataFrames are also iterable, yielding datafusion.RecordBatch +objects lazily so you can loop over results directly without importing +PyArrow:

    +
    for batch in df:
    +    ...  # each batch is a ``datafusion.RecordBatch``
     
    +

    Each batch exposes to_pyarrow(), allowing conversion to a PyArrow +table. pa.table(df) collects the entire DataFrame eagerly into a +PyArrow table:

    +
    import pyarrow as pa
    +table = pa.table(df)
    +
    +
    +

    Asynchronous iteration is supported as well, allowing integration with +asyncio event loops:

    +
    async for batch in df:
    +    ...  # process each batch as it is produced
    +
    +
    +

    To work with the stream directly, use execute_stream(), which returns a +RecordBatchStream.

    +
    stream = df.execute_stream()
    +for batch in stream:
    +    ...
    +
    +
    +
    +

    Execute as Stream

    +

    For finer control over streaming execution, use +execute_stream() to obtain a +datafusion.RecordBatchStream:

    +
    stream = df.execute_stream()
    +for batch in stream:
    +    ...  # process each batch as it is produced
    +
    +
    +
    +

    Tip

    +

    To get a PyArrow reader instead, call

    +

    pa.RecordBatchReader.from_stream(df).

    +
    +

    When partition boundaries are important, +execute_stream_partitioned() +returns an iterable of datafusion.RecordBatchStream objects, one per +partition:

    +
    for stream in df.execute_stream_partitioned():
    +    for batch in stream:
    +        ...  # each stream yields RecordBatches
    +
    +
    +

    To process partitions concurrently, first collect the streams into a list +and then poll each one in a separate asyncio task:

    +
    import asyncio
    +
    +async def consume(stream):
    +    async for batch in stream:
    +        ...
    +
    +streams = list(df.execute_stream_partitioned())
    +await asyncio.gather(*(consume(s) for s in streams))
    +
    +
    +

    See Arrow for additional details on the Arrow interface.

    +

    HTML Rendering

    diff --git a/user-guide/introduction.html b/user-guide/introduction.html index cf5fd7719..9e1434734 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -447,7 +447,7 @@

    Installation
    In [1]: import datafusion
     
     In [2]: datafusion.__version__
    -Out[2]: '50.1.0'
    +Out[2]: '51.0.0'
     

    In this documentation we will also show some examples for how DataFusion integrates diff --git a/user-guide/io/arrow.html b/user-guide/io/arrow.html index a4786dfe2..046a0ade6 100644 --- a/user-guide/io/arrow.html +++ b/user-guide/io/arrow.html @@ -489,16 +489,16 @@

    Importing to DataFusionExporting from DataFusion

    DataFusion DataFrames implement __arrow_c_stream__ PyCapsule interface, so any Python library that accepts these can import a DataFusion DataFrame directly.

    -
    -

    Warning

    -

    It is important to note that this will cause the DataFrame execution to happen, which may be -a time consuming task. That is, you will cause a -datafusion.dataframe.DataFrame.collect() operation call to occur.

    -
    -
    In [8]: df = df.select((col("a") * lit(1.5)).alias("c"), lit("df").alias("d"))
    +

    Invoking __arrow_c_stream__ triggers execution of the underlying query, but +batches are yielded incrementally rather than materialized all at once in memory. +Consumers can process the stream as it arrives. The stream executes lazily, +letting downstream readers pull batches on demand.

    +
    In [8]: from datafusion import col, lit
    +
    +In [9]: df = df.select((col("a") * lit(1.5)).alias("c"), lit("df").alias("d"))
     
    -In [9]: pa.table(df)
    -Out[9]: 
    +In [10]: pa.table(df)
    +Out[10]: 
     pyarrow.Table
     c: double
     d: string_view not null
    diff --git a/user-guide/sql.html b/user-guide/sql.html
    index 865fe2607..6dd6e0a48 100644
    --- a/user-guide/sql.html
    +++ b/user-guide/sql.html
    @@ -401,9 +401,19 @@
                   
                   
    +
    + On this page +
    @@ -428,22 +438,20 @@

    SQL

    DataFusion also offers a SQL API, read the full reference here

    In [1]: import datafusion
     
    -In [2]: from datafusion import col
    -
    -In [3]: import pyarrow
    +In [2]: from datafusion import DataFrame, SessionContext
     
     # create a context
    -In [4]: ctx = datafusion.SessionContext()
    +In [3]: ctx = datafusion.SessionContext()
     
     # register a CSV
    -In [5]: ctx.register_csv('pokemon', 'pokemon.csv')
    +In [4]: ctx.register_csv("pokemon", "pokemon.csv")
     
     # create a new statement via SQL
    -In [6]: df = ctx.sql('SELECT "Attack"+"Defense", "Attack"-"Defense" FROM pokemon')
    +In [5]: df = ctx.sql('SELECT "Attack"+"Defense", "Attack"-"Defense" FROM pokemon')
     
     # collect and convert to pandas DataFrame
    -In [7]: df.to_pandas()
    -Out[7]: 
    +In [6]: df.to_pandas()
    +Out[6]: 
          pokemon.Attack + pokemon.Defense  pokemon.Attack - pokemon.Defense
     0                                  98                                 0
     1                                 125                                -1
    @@ -460,6 +468,114 @@ 

    SQL

    [163 rows x 2 columns]
    +
    +

    Parameterized queries

    +

    In DataFusion-Python 51.0.0 we introduced the ability to pass parameters +in a SQL query. These are similar in concept to +prepared statements, +but allow passing named parameters into a SQL query. Consider this simple +example.

    +
    In [7]: def show_attacks(ctx: SessionContext, threshold: int) -> None:
    +   ...:     ctx.sql(
    +   ...:         'SELECT "Name", "Attack" FROM pokemon WHERE "Attack" > $val', val=threshold
    +   ...:     ).show(num=5)
    +   ...: show_attacks(ctx, 75)
    +   ...: 
    +DataFrame()
    ++---------------------------+--------+
    +| Name                      | Attack |
    ++---------------------------+--------+
    +| Venusaur                  | 82     |
    +| VenusaurMega Venusaur     | 100    |
    +| Charizard                 | 84     |
    +| CharizardMega Charizard X | 130    |
    +| CharizardMega Charizard Y | 104    |
    ++---------------------------+--------+
    +
    +
    +

    When passing parameters like the example above we convert the Python objects +into their string representation. We also have special case handling +for DataFrame objects, since they cannot simply +be turned into string representations for an SQL query. In these cases we +will register a temporary view in the SessionContext +using a generated table name.

    +

    The formatting for passing string replacement objects is to precede the +variable name with a single $. This works for all dialects in +the SQL parser except hive and mysql. Since these dialects do not +support named placeholders, we are unable to do this type of replacement. +We recommend either switching to another dialect or using Python +f-string style replacement.

    +
    +

    Warning

    +

    To support DataFrame parameterized queries, your session must support +registration of temporary views. The default +CatalogProvider and +SchemaProvider do have this capability. +If you have implemented custom providers, it is important that temporary +views do not persist across SessionContext +or you may get unintended consequences.

    +
    +

    The following example shows passing in both a DataFrame +object as well as a Python object to be used in parameterized replacement.

    +
    In [8]: def show_column(
    +   ...:     ctx: SessionContext, column: str, df: DataFrame, threshold: int
    +   ...: ) -> None:
    +   ...:     ctx.sql(
    +   ...:         'SELECT "Name", $col FROM $df WHERE $col > $val',
    +   ...:         col=column,
    +   ...:         df=df,
    +   ...:         val=threshold,
    +   ...:     ).show(num=5)
    +   ...: df = ctx.table("pokemon")
    +   ...: show_column(ctx, '"Defense"', df, 75)
    +   ...: 
    +DataFrame()
    ++---------------------------+---------+
    +| Name                      | Defense |
    ++---------------------------+---------+
    +| Venusaur                  | 83      |
    +| VenusaurMega Venusaur     | 123     |
    +| Charizard                 | 78      |
    +| CharizardMega Charizard X | 111     |
    +| CharizardMega Charizard Y | 78      |
    ++---------------------------+---------+
    +
    +
    +

    The approach implemented for conversion of variables into a SQL query +relies on string conversion. This has the potential for data loss, +specifically for cases like floating point numbers. If you need to pass +variables into a parameterized query and it is important to maintain the +original value without conversion to a string, then you can use the +optional parameter param_values to specify these. This parameter +expects a dictionary mapping from the parameter name to a Python +object. Those objects will be cast into a +PyArrow Scalar Value.

    +

    Using param_values will rely on the SQL dialect you have configured +for your session. This can be set using the configuration options +of your SessionContext. Similar to how +prepared statements +work, these parameters are limited to places where you would pass in a +scalar value, such as a comparison.

    +
    In [9]: def param_attacks(ctx: SessionContext, threshold: int) -> None:
    +   ...:     ctx.sql(
    +   ...:         'SELECT "Name", "Attack" FROM pokemon WHERE "Attack" > $val',
    +   ...:         param_values={"val": threshold},
    +   ...:     ).show(num=5)
    +   ...: param_attacks(ctx, 75)
    +   ...: 
    +DataFrame()
    ++---------------------------+--------+
    +| Name                      | Attack |
    ++---------------------------+--------+
    +| Venusaur                  | 82     |
    +| VenusaurMega Venusaur     | 100    |
    +| Charizard                 | 84     |
    +| CharizardMega Charizard X | 130    |
    +| CharizardMega Charizard Y | 104    |
    ++---------------------------+--------+
    +
    +
    +

    From 1c410707bf4fdea4e1230c37ed990ac5f848ceff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 9 Feb 2026 15:58:15 +0000 Subject: [PATCH 32/36] Publish built docs triggered by aa88d6540ca0b037347b959788ea32700509b98a --- .../autoapi/datafusion/catalog/index.rst.txt | 12 +- .../autoapi/datafusion/context/index.rst.txt | 33 +- .../dataframe_formatter/index.rst.txt | 94 +- _sources/autoapi/datafusion/index.rst.txt | 582 +++----- _sources/autoapi/datafusion/io/index.rst.txt | 4 +- .../autoapi/datafusion/options/index.rst.txt | 242 ++++ .../datafusion/user_defined/index.rst.txt | 40 +- _sources/contributor-guide/ffi.rst.txt | 2 + _sources/index.rst.txt | 1 + .../common-operations/udf-and-udfa.rst.txt | 11 + .../user-guide/dataframe/rendering.rst.txt | 8 +- _sources/user-guide/io/csv.rst.txt | 22 + _sources/user-guide/upgrade-guides.rst.txt | 96 ++ autoapi/datafusion/catalog/index.html | 31 +- autoapi/datafusion/context/index.html | 69 +- autoapi/datafusion/dataframe/index.html | 10 + .../datafusion/dataframe_formatter/index.html | 166 ++- autoapi/datafusion/expr/index.html | 10 + autoapi/datafusion/functions/index.html | 10 + autoapi/datafusion/html_formatter/index.html | 10 + autoapi/datafusion/index.html | 1277 +++++++---------- autoapi/datafusion/input/base/index.html | 10 + autoapi/datafusion/input/index.html | 10 + autoapi/datafusion/input/location/index.html | 10 + autoapi/datafusion/io/index.html | 14 +- autoapi/datafusion/object_store/index.html | 16 +- autoapi/datafusion/options/index.html | 1039 ++++++++++++++ autoapi/datafusion/plan/index.html | 16 +- autoapi/datafusion/record_batch/index.html | 10 + autoapi/datafusion/substrait/index.html | 10 + autoapi/datafusion/unparser/index.html | 10 + autoapi/datafusion/user_defined/index.html | 69 +- autoapi/index.html | 11 + contributor-guide/ffi.html | 12 +- contributor-guide/introduction.html | 16 +- genindex.html | 444 +++--- index.html | 10 + objects.inv | Bin 8815 -> 9168 bytes py-modindex.html | 15 + search.html | 10 + searchindex.js | 2 +- user-guide/basics.html | 10 + .../common-operations/aggregations.html | 48 +- user-guide/common-operations/basic-info.html | 56 +- user-guide/common-operations/expressions.html | 10 + user-guide/common-operations/functions.html | 50 +- user-guide/common-operations/index.html | 10 + user-guide/common-operations/joins.html | 10 + .../common-operations/select-and-filter.html | 10 + .../common-operations/udf-and-udfa.html | 19 + user-guide/common-operations/views.html | 10 + user-guide/common-operations/windows.html | 10 + user-guide/configuration.html | 10 + user-guide/data-sources.html | 10 + user-guide/dataframe/index.html | 10 + user-guide/dataframe/rendering.html | 18 +- user-guide/introduction.html | 10 + user-guide/io/arrow.html | 10 + user-guide/io/avro.html | 10 + user-guide/io/csv.html | 29 + user-guide/io/index.html | 10 + user-guide/io/json.html | 10 + user-guide/io/parquet.html | 10 + user-guide/io/table_provider.html | 10 + user-guide/sql.html | 16 +- user-guide/upgrade-guides.html | 571 ++++++++ 66 files changed, 3911 insertions(+), 1530 deletions(-) create mode 100644 _sources/autoapi/datafusion/options/index.rst.txt create mode 100644 _sources/user-guide/upgrade-guides.rst.txt create mode 100644 autoapi/datafusion/options/index.html create mode 100644 user-guide/upgrade-guides.html diff --git a/_sources/autoapi/datafusion/catalog/index.rst.txt b/_sources/autoapi/datafusion/catalog/index.rst.txt index 50fec8af3..aa511f3e0 100644 --- a/_sources/autoapi/datafusion/catalog/index.rst.txt +++ b/_sources/autoapi/datafusion/catalog/index.rst.txt @@ -49,7 +49,7 @@ Module Contents - .. py:method:: memory_catalog() -> Catalog + .. py:method:: memory_catalog(ctx: datafusion.SessionContext | None = None) -> Catalog :staticmethod: @@ -148,7 +148,7 @@ Module Contents - .. py:method:: memory_schema() -> Schema + .. py:method:: memory_schema(ctx: datafusion.SessionContext | None = None) -> Schema :staticmethod: @@ -174,6 +174,12 @@ Module Contents + .. py:method:: table_exist(name: str) -> bool + + Determines if a table exists in this schema. + + + .. py:method:: table_names() -> set[str] Returns the list of all tables in this schema. @@ -241,7 +247,7 @@ Module Contents -.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) +.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset, ctx: datafusion.SessionContext | None = None) A DataFusion table. diff --git a/_sources/autoapi/datafusion/context/index.rst.txt b/_sources/autoapi/datafusion/context/index.rst.txt index 50c3a9d4e..3c2be3ae2 100644 --- a/_sources/autoapi/datafusion/context/index.rst.txt +++ b/_sources/autoapi/datafusion/context/index.rst.txt @@ -64,7 +64,7 @@ Module Contents https://docs.rs/datafusion/latest/datafusion/catalog/trait.CatalogProvider.html - .. py:method:: __datafusion_catalog_provider__() -> object + .. py:method:: __datafusion_catalog_provider__(session: Any) -> object .. py:class:: RuntimeConfig @@ -425,6 +425,18 @@ Module Contents df = ctx.read_csv("data.csv") + .. py:method:: __datafusion_logical_extension_codec__() -> Any + + Access the PyCapsule FFI_LogicalExtensionCodec. + + + + .. py:method:: __datafusion_task_context_provider__() -> Any + + Access the PyCapsule FFI_TaskContextProvider. + + + .. py:method:: __repr__() -> str Print a string representation of the Session Context. @@ -600,7 +612,7 @@ Module Contents - .. py:method:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame + .. py:method:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -617,6 +629,8 @@ Module Contents selected for data input. :param table_partition_cols: Partition columns. :param file_compression_type: File compression type. + :param options: Set advanced options for CSV reading. This cannot be + combined with any of the other options in this method. :returns: DataFrame representation of the read CSV files @@ -690,7 +704,7 @@ Module Contents - .. py:method:: register_csv(name: str, path: str | pathlib.Path | list[str | pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', file_compression_type: str | None = None) -> None + .. py:method:: register_csv(name: str, path: str | pathlib.Path | list[str | pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) -> None Register a CSV file as a table. @@ -709,6 +723,8 @@ Module Contents :param file_extension: File extension; only files with this extension are selected for data input. :param file_compression_type: File compression type. + :param options: Set advanced options for CSV reading. This cannot be + combined with any of the other options in this method. @@ -918,6 +934,15 @@ Module Contents + .. py:method:: with_logical_extension_codec(codec: Any) -> SessionContext + + Create a new session context with specified codec. + + This only supports codecs that have been implemented using the + FFI interface. + + + .. py:attribute:: ctx @@ -931,6 +956,6 @@ Module Contents https://datafusion.apache.org/python/user-guide/io/table_provider.html - .. py:method:: __datafusion_table_provider__() -> object + .. py:method:: __datafusion_table_provider__(session: Any) -> object diff --git a/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt index 7f5b3f530..243627a96 100644 --- a/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe_formatter/index.rst.txt @@ -28,6 +28,7 @@ Functions datafusion.dataframe_formatter._refresh_formatter_reference datafusion.dataframe_formatter._validate_bool + datafusion.dataframe_formatter._validate_formatter_parameters datafusion.dataframe_formatter._validate_positive_int datafusion.dataframe_formatter.configure_formatter datafusion.dataframe_formatter.get_formatter @@ -52,7 +53,7 @@ Module Contents -.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: str | None = None, show_truncation_message: bool = True, style_provider: StyleProvider | None = None, use_shared_styles: bool = True) +.. py:class:: DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows: int = 10, max_rows: int | None = None, repr_rows: int | None = None, enable_cell_expansion: bool = True, custom_css: str | None = None, show_truncation_message: bool = True, style_provider: StyleProvider | None = None, use_shared_styles: bool = True) Configurable HTML formatter for DataFusion DataFrames. @@ -68,8 +69,9 @@ Module Contents :param max_width: Maximum width of the HTML table in pixels :param max_height: Maximum height of the HTML table in pixels :param max_memory_bytes: Maximum memory in bytes for rendered data (default: 2MB) - :param min_rows_display: Minimum number of rows to display - :param repr_rows: Default number of rows to display in repr output + :param min_rows: Minimum number of rows to display (must be <= max_rows) + :param max_rows: Maximum number of rows to display in repr output + :param repr_rows: Deprecated alias for max_rows :param enable_cell_expansion: Whether to add expand/collapse buttons for long cell values :param custom_css: Additional CSS to include in the HTML output @@ -81,36 +83,30 @@ Module Contents Initialize the HTML formatter. :param max_cell_length: Maximum length of cell content before truncation. - :type max_cell_length: int, default 25 :param max_width: Maximum width of the displayed table in pixels. - :type max_width: int, default 1000 :param max_height: Maximum height of the displayed table in pixels. - :type max_height: int, default 300 - :param max_memory_bytes: Maximum memory in bytes for rendered data. - :type max_memory_bytes: int, default 2097152 (2MB) - :param min_rows_display: Minimum number of rows to display. - :type min_rows_display: int, default 20 - :param repr_rows: Default number of rows to display in repr output. - :type repr_rows: int, default 10 + :param max_memory_bytes: Maximum memory in bytes for rendered data. Helps prevent performance + issues with large datasets. + :param min_rows: Minimum number of rows to display even if memory limit is reached. + Must not exceed ``max_rows``. + :param max_rows: Maximum number of rows to display. Takes precedence over memory limits + when fewer rows are requested. + :param repr_rows: Deprecated alias for ``max_rows``. Use ``max_rows`` instead. :param enable_cell_expansion: Whether to allow cells to expand when clicked. - :type enable_cell_expansion: bool, default True :param custom_css: Custom CSS to apply to the HTML table. - :type custom_css: str, optional :param show_truncation_message: Whether to show a message indicating that content has been truncated. - :type show_truncation_message: bool, default True :param style_provider: Provider of CSS styles for the HTML table. If None, DefaultStyleProvider is used. - :type style_provider: StyleProvider, optional - :param use_shared_styles: Whether to use shared styles across multiple tables. - :type use_shared_styles: bool, default True + :param use_shared_styles: Whether to use shared styles across multiple tables. This improves + performance when displaying many DataFrames in a single notebook. :param Raises: :param ------: :param ValueError: If max_cell_length, max_width, max_height, max_memory_bytes, - min_rows_display, or repr_rows is not a positive integer. + min_rows or max_rows is not a positive integer, or if min_rows + exceeds max_rows. :param TypeError: If enable_cell_expansion, show_truncation_message, or use_shared_styles is - not a boolean, - or if custom_css is provided but is not a string, - or if style_provider is provided but does not implement the StyleProvider + not a boolean, or if custom_css is provided but is not a string, or if + style_provider is provided but does not implement the StyleProvider protocol. @@ -265,6 +261,11 @@ Module Contents + .. py:attribute:: _max_rows + :value: None + + + .. py:attribute:: _type_formatters :type: dict[type, CellFormatter] @@ -294,19 +295,36 @@ Module Contents + .. py:property:: max_rows + :type: int + + + Get the maximum number of rows to display. + + :returns: The maximum number of rows to display in repr output + + .. py:attribute:: max_width :value: 1000 - .. py:attribute:: min_rows_display - :value: 20 + .. py:attribute:: min_rows + :value: 10 + + .. py:property:: repr_rows + :type: int - .. py:attribute:: repr_rows - :value: 10 + Get the maximum number of rows (deprecated name). + + .. deprecated:: + Use :attr:`max_rows` instead. This property is provided for + backward compatibility. + + :returns: The maximum number of rows to display .. py:attribute:: show_truncation_message @@ -410,6 +428,30 @@ Module Contents :raises TypeError: If the value is not a boolean +.. py:function:: _validate_formatter_parameters(max_cell_length: int, max_width: int, max_height: int, max_memory_bytes: int, min_rows: int, max_rows: int | None, repr_rows: int | None, enable_cell_expansion: bool, show_truncation_message: bool, use_shared_styles: bool, custom_css: str | None, style_provider: Any) -> int + + Validate all formatter parameters and return resolved max_rows value. + + :param max_cell_length: Maximum cell length value to validate + :param max_width: Maximum width value to validate + :param max_height: Maximum height value to validate + :param max_memory_bytes: Maximum memory bytes value to validate + :param min_rows: Minimum rows to display value to validate + :param max_rows: Maximum rows value to validate (None means use default) + :param repr_rows: Deprecated repr_rows value to validate + :param enable_cell_expansion: Boolean expansion flag to validate + :param show_truncation_message: Boolean message flag to validate + :param use_shared_styles: Boolean styles flag to validate + :param custom_css: Custom CSS string to validate + :param style_provider: Style provider object to validate + + :returns: The resolved max_rows value after handling repr_rows deprecation + + :raises ValueError: If any numeric parameter is invalid or constraints are violated + :raises TypeError: If any parameter has invalid type + :raises DeprecationWarning: If repr_rows parameter is used + + .. py:function:: _validate_positive_int(value: Any, param_name: str) -> None Validate that a parameter is a positive integer. diff --git a/_sources/autoapi/datafusion/index.rst.txt b/_sources/autoapi/datafusion/index.rst.txt index 59e6d2915..8afeae253 100644 --- a/_sources/autoapi/datafusion/index.rst.txt +++ b/_sources/autoapi/datafusion/index.rst.txt @@ -28,6 +28,7 @@ Submodules /autoapi/datafusion/input/index /autoapi/datafusion/io/index /autoapi/datafusion/object_store/index + /autoapi/datafusion/options/index /autoapi/datafusion/plan/index /autoapi/datafusion/record_batch/index /autoapi/datafusion/substrait/index @@ -43,10 +44,6 @@ Attributes datafusion.DFSchema datafusion.col datafusion.column - datafusion.udaf - datafusion.udf - datafusion.udtf - datafusion.udwf Classes @@ -54,9 +51,8 @@ Classes .. autoapisummary:: - datafusion.Accumulator - datafusion.AggregateUDF datafusion.Catalog + datafusion.CsvReadOptions datafusion.DataFrameWriteOptions datafusion.Database datafusion.ExecutionPlan @@ -69,12 +65,9 @@ Classes datafusion.RecordBatchStream datafusion.RuntimeEnvBuilder datafusion.SQLOptions - datafusion.ScalarUDF datafusion.SessionConfig datafusion.Table - datafusion.TableFunction datafusion.WindowFrame - datafusion.WindowUDF Functions @@ -94,221 +87,284 @@ Functions Package Contents ---------------- -.. py:class:: Accumulator +.. py:class:: Catalog(catalog: datafusion._internal.catalog.RawCatalog) - Defines how an :py:class:`AggregateUDF` accumulates values. + DataFusion data catalog. + This constructor is not typically called by the end user. - .. py:method:: evaluate() -> pyarrow.Scalar - :abstractmethod: + .. py:method:: __repr__() -> str - Return the resultant value. + Print a string representation of the catalog. - .. py:method:: merge(states: list[pyarrow.Array]) -> None - :abstractmethod: + .. py:method:: database(name: str = 'public') -> Schema + Returns the database with the given ``name`` from this catalog. - Merge a set of states. + .. py:method:: deregister_schema(name: str, cascade: bool = True) -> Schema | None - .. py:method:: state() -> list[pyarrow.Scalar] - :abstractmethod: + Deregister a schema from this catalog. - Return the current state. + .. py:method:: memory_catalog(ctx: datafusion.SessionContext | None = None) -> Catalog + :staticmethod: - .. py:method:: update(*values: pyarrow.Array) -> None - :abstractmethod: + Create an in-memory catalog provider. - Evaluate an array of values and update state. + .. py:method:: names() -> set[str] + This is an alias for `schema_names`. -.. py:class:: AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) - AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...) - Class for performing scalar user-defined functions (UDF). - Aggregate UDFs operate on a group of rows and return a single value. See - also :py:class:`ScalarUDF` for operating on a row by row basis. + .. py:method:: register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) -> Schema | None - Instantiate a user-defined aggregate function (UDAF). + Register a schema with this catalog. - See :py:func:`udaf` for a convenience function and argument - descriptions. - .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr + .. py:method:: schema(name: str = 'public') -> Schema - Execute the UDAF. + Returns the database with the given ``name`` from this catalog. - This function is not typically called by an end user. These calls will - occur during the evaluation of the dataframe. + .. py:method:: schema_names() -> set[str] - .. py:method:: __repr__() -> str + Returns the list of schemas in this catalog. - Print a string representation of the Aggregate UDF. + .. py:attribute:: catalog - .. py:method:: from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) -> AggregateUDF - :staticmethod: +.. py:class:: CsvReadOptions(*, has_header: bool = True, delimiter: str = ',', quote: str = '"', terminator: str | None = None, escape: str | None = None, comment: str | None = None, newlines_in_values: bool = False, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', table_partition_cols: list[tuple[str, pyarrow.DataType]] | None = None, file_compression_type: str = '', file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None, null_regex: str | None = None, truncated_rows: bool = False) + + Options for reading CSV files. + + This class provides a builder pattern for configuring CSV reading options. + All methods starting with ``with_`` return ``self`` to allow method chaining. + + Initialize CsvReadOptions. + + :param has_header: Does the CSV file have a header row? If schema inference + is run on a file with no headers, default column names are created. + :param delimiter: Column delimiter character. Must be a single ASCII character. + :param quote: Quote character for fields containing delimiters or newlines. + Must be a single ASCII character. + :param terminator: Optional line terminator character. If ``None``, uses CRLF. + Must be a single ASCII character. + :param escape: Optional escape character for quotes. Must be a single ASCII + character. + :param comment: If specified, lines beginning with this character are ignored. + Must be a single ASCII character. + :param newlines_in_values: Whether newlines in quoted values are supported. + Parsing newlines in quoted values may be affected by execution + behavior such as parallel file scanning. Setting this to ``True`` + ensures that newlines in values are parsed successfully, which may + reduce performance. + :param schema: Optional PyArrow schema representing the CSV files. If ``None``, + the CSV reader will try to infer it based on data in the file. + :param schema_infer_max_records: Maximum number of rows to read from CSV files + for schema inference if needed. + :param file_extension: File extension; only files with this extension are + selected for data input. + :param table_partition_cols: Partition columns as a list of tuples of + (column_name, data_type). + :param file_compression_type: File compression type. Supported values are + ``"gzip"``, ``"bz2"``, ``"xz"``, ``"zstd"``, or empty string for + uncompressed. + :param file_sort_order: Optional sort order of the files as a list of sort + expressions per file. + :param null_regex: Optional regex pattern to match null values in the CSV. + :param truncated_rows: Whether to allow truncated rows when parsing. By default + this is ``False`` and will error if the CSV rows have different + lengths. When set to ``True``, it will allow records with less than + the expected number of columns and fill the missing columns with + nulls. If the record's schema is not nullable, it will still return + an error. - Create an Aggregate UDF from AggregateUDF PyCapsule object. - This function will instantiate a Aggregate UDF that uses a DataFusion - AggregateUDF that is exported via the FFI bindings. + .. py:method:: to_inner() -> datafusion._internal.options.CsvReadOptions + Convert this object into the underlying Rust structure. + This is intended for internal use only. - .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, AggregateUDF] - udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> AggregateUDF - udaf(accum: AggregateUDFExportable) -> AggregateUDF - udaf(accum: _typeshed.CapsuleType) -> AggregateUDF - :staticmethod: - Create a new User-Defined Aggregate Function (UDAF). + .. py:method:: with_comment(comment: str | None) -> CsvReadOptions - This class allows you to define an aggregate function that can be used in - data aggregation or window function calls. + Configure the comment character. - Usage: - - As a function: ``udaf(accum, input_types, return_type, state_type, volatility, name)``. - - As a decorator: ``@udaf(input_types, return_type, state_type, volatility, name)``. - When using ``udaf`` as a decorator, do not pass ``accum`` explicitly. - Function example: - If your :py:class:`Accumulator` can be instantiated with no arguments, you - can simply pass it's type as `accum`. If you need to pass additional - arguments to it's constructor, you can define a lambda or a factory method. - During runtime the :py:class:`Accumulator` will be constructed for every - instance in which this UDAF is used. The following examples are all valid:: + .. py:method:: with_delimiter(delimiter: str) -> CsvReadOptions - import pyarrow as pa - import pyarrow.compute as pc + Configure the column delimiter. - class Summarize(Accumulator): - def __init__(self, bias: float = 0.0): - self._sum = pa.scalar(bias) - def state(self) -> list[pa.Scalar]: - return [self._sum] - def update(self, values: pa.Array) -> None: - self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py()) + .. py:method:: with_escape(escape: str | None) -> CsvReadOptions - def merge(self, states: list[pa.Array]) -> None: - self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py()) + Configure the escape character. - def evaluate(self) -> pa.Scalar: - return self._sum - def sum_bias_10() -> Summarize: - return Summarize(10.0) - udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()], - "immutable") - udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()], - "immutable") - udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(), - [pa.float64()], "immutable") + .. py:method:: with_file_compression_type(file_compression_type: str) -> CsvReadOptions - Decorator example::: + Configure file compression type. - @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable") - def udf4() -> Summarize: - return Summarize(10.0) - :param accum: The accumulator python function. Only needed when calling as a - function. Skip this argument when using ``udaf`` as a decorator. - If you have a Rust backed AggregateUDF within a PyCapsule, you can - pass this parameter and ignore the rest. They will be determined - directly from the underlying function. See the online documentation - for more information. - :param input_types: The data types of the arguments to ``accum``. - :param return_type: The data type of the return value. - :param state_type: The data types of the intermediate accumulation. - :param volatility: See :py:class:`Volatility` for allowed values. - :param name: A descriptive name for the function. - :returns: A user-defined aggregate function, which can be used in either data - aggregation or window function calls. + .. py:method:: with_file_extension(file_extension: str) -> CsvReadOptions + Configure the file extension filter. - .. py:attribute:: _udaf + .. py:method:: with_file_sort_order(file_sort_order: list[list[datafusion.expr.SortExpr]]) -> CsvReadOptions -.. py:class:: Catalog(catalog: datafusion._internal.catalog.RawCatalog) + Configure file sort order. - DataFusion data catalog. - This constructor is not typically called by the end user. + .. py:method:: with_has_header(has_header: bool) -> CsvReadOptions - .. py:method:: __repr__() -> str + Configure whether the CSV has a header row. - Print a string representation of the catalog. + .. py:method:: with_newlines_in_values(newlines_in_values: bool) -> CsvReadOptions - .. py:method:: database(name: str = 'public') -> Schema + Configure whether newlines in values are supported. - Returns the database with the given ``name`` from this catalog. + .. py:method:: with_null_regex(null_regex: str | None) -> CsvReadOptions - .. py:method:: deregister_schema(name: str, cascade: bool = True) -> Schema | None + Configure null value regex pattern. - Deregister a schema from this catalog. + .. py:method:: with_quote(quote: str) -> CsvReadOptions - .. py:method:: memory_catalog() -> Catalog - :staticmethod: + Configure the quote character. - Create an in-memory catalog provider. + .. py:method:: with_schema(schema: pyarrow.Schema | None) -> CsvReadOptions + Configure the schema. - .. py:method:: names() -> set[str] - This is an alias for `schema_names`. + .. py:method:: with_schema_infer_max_records(schema_infer_max_records: int) -> CsvReadOptions + Configure maximum records for schema inference. - .. py:method:: register_schema(name: str, schema: Schema | SchemaProvider | SchemaProviderExportable) -> Schema | None - Register a schema with this catalog. + .. py:method:: with_table_partition_cols(table_partition_cols: list[tuple[str, pyarrow.DataType]]) -> CsvReadOptions + Configure table partition columns. - .. py:method:: schema(name: str = 'public') -> Schema - Returns the database with the given ``name`` from this catalog. + .. py:method:: with_terminator(terminator: str | None) -> CsvReadOptions + Configure the line terminator character. - .. py:method:: schema_names() -> set[str] - Returns the list of schemas in this catalog. + .. py:method:: with_truncated_rows(truncated_rows: bool) -> CsvReadOptions + Configure whether to allow truncated rows. + + + + .. py:attribute:: comment + :value: None + + + + .. py:attribute:: delimiter + :value: ',' + + + + .. py:attribute:: escape + :value: None + + + + .. py:attribute:: file_compression_type + :value: '' + + + + .. py:attribute:: file_extension + :value: '.csv' + + + + .. py:attribute:: file_sort_order + :value: [] + + + + .. py:attribute:: has_header + :value: True + + + + .. py:attribute:: newlines_in_values + :value: False + + + + .. py:attribute:: null_regex + :value: None + + + + .. py:attribute:: quote + :value: '"' + + + + .. py:attribute:: schema + :value: None + + + + .. py:attribute:: schema_infer_max_records + :value: 1000 + + + + .. py:attribute:: table_partition_cols + :value: [] + + + + .. py:attribute:: terminator + :value: None + + + + .. py:attribute:: truncated_rows + :value: False - .. py:attribute:: catalog .. py:class:: DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None) @@ -1841,97 +1897,6 @@ Package Contents .. py:attribute:: options_internal -.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) - - Class for performing scalar user-defined functions (UDF). - - Scalar UDFs operate on a row by row basis. See also :py:class:`AggregateUDF` for - operating on a group of rows. - - Instantiate a scalar user-defined function (UDF). - - See helper method :py:func:`udf` for argument details. - - - .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr - - Execute the UDF. - - This function is not typically called by an end user. These calls will - occur during the evaluation of the dataframe. - - - - .. py:method:: __repr__() -> str - - Print a string representation of the Scalar UDF. - - - - .. py:method:: from_pycapsule(func: ScalarUDFExportable) -> ScalarUDF - :staticmethod: - - - Create a Scalar UDF from ScalarUDF PyCapsule object. - - This function will instantiate a Scalar UDF that uses a DataFusion - ScalarUDF that is exported via the FFI bindings. - - - - .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] - udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> ScalarUDF - udf(func: ScalarUDFExportable) -> ScalarUDF - :staticmethod: - - - Create a new User-Defined Function (UDF). - - This class can be used both as either a function or a decorator. - - Usage: - - As a function: ``udf(func, input_types, return_type, volatility, name)``. - - As a decorator: ``@udf(input_types, return_type, volatility, name)``. - When used a decorator, do **not** pass ``func`` explicitly. - - :param func: Only needed when calling as a function. - Skip this argument when using `udf` as a decorator. If you have a Rust - backed ScalarUDF within a PyCapsule, you can pass this parameter - and ignore the rest. They will be determined directly from the - underlying function. See the online documentation for more information. - :type func: Callable, optional - :param input_types: The data types of the arguments - to ``func``. This list must be of the same length as the number of - arguments. - :type input_types: list[pa.DataType] - :param return_type: The data type of the return value from the function. - :type return_type: _R - :param volatility: See `Volatility` for allowed values. - :type volatility: Volatility | str - :param name: A descriptive name for the function. - :type name: Optional[str] - - :returns: A user-defined function that can be used in SQL expressions, - data aggregation, or window function calls. - - Example: Using ``udf`` as a function:: - - def double_func(x): - return x * 2 - double_udf = udf(double_func, [pa.int32()], pa.int32(), - "volatile", "double_it") - - Example: Using ``udf`` as a decorator:: - - @udf([pa.int32()], pa.int32(), "volatile", "double_it") - def double_udf(x): - return x * 2 - - - - .. py:attribute:: _udf - - .. py:class:: SessionConfig(config_options: dict[str, str] | None = None) Session configuration options. @@ -2088,7 +2053,7 @@ Package Contents .. py:attribute:: config_internal -.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset) +.. py:class:: Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset, ctx: datafusion.SessionContext | None = None) A DataFusion table. @@ -2140,59 +2105,6 @@ Package Contents Returns the schema associated with this table. -.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any]) - - Class for performing user-defined table functions (UDTF). - - Table functions generate new table providers based on the - input expressions. - - Instantiate a user-defined table function (UDTF). - - See :py:func:`udtf` for a convenience function and argument - descriptions. - - - .. py:method:: __call__(*args: datafusion.expr.Expr) -> Any - - Execute the UDTF and return a table provider. - - - - .. py:method:: __repr__() -> str - - User printable representation. - - - - .. py:method:: _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) -> TableFunction - :staticmethod: - - - Create a TableFunction instance from function arguments. - - - - .. py:method:: _create_table_udf_decorator(name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] - :staticmethod: - - - Create a decorator for a WindowUDF. - - - - .. py:method:: udtf(name: str) -> collections.abc.Callable[Ellipsis, Any] - udtf(func: collections.abc.Callable[[], Any], name: str) -> TableFunction - :staticmethod: - - - Create a new User-Defined Table Function (UDTF). - - - - .. py:attribute:: _udtf - - .. py:class:: WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None) Defines a window frame for performing window operations. @@ -2235,134 +2147,6 @@ Package Contents .. py:attribute:: window_frame -.. py:class:: WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) - - Class for performing window user-defined functions (UDF). - - Window UDFs operate on a partition of rows. See - also :py:class:`ScalarUDF` for operating on a row by row basis. - - Instantiate a user-defined window function (UDWF). - - See :py:func:`udwf` for a convenience function and argument - descriptions. - - - .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr - - Execute the UDWF. - - This function is not typically called by an end user. These calls will - occur during the evaluation of the dataframe. - - - - .. py:method:: __repr__() -> str - - Print a string representation of the Window UDF. - - - - .. py:method:: _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF - :staticmethod: - - - Create a WindowUDF instance from function arguments. - - - - .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] - :staticmethod: - - - Create a decorator for a WindowUDF. - - - - .. py:method:: _get_default_name(func: collections.abc.Callable) -> str - :staticmethod: - - - Get the default name for a function based on its attributes. - - - - .. py:method:: _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) -> list[pyarrow.DataType] - :staticmethod: - - - Convert a single DataType to a list if needed. - - - - .. py:method:: from_pycapsule(func: WindowUDFExportable) -> WindowUDF - :staticmethod: - - - Create a Window UDF from WindowUDF PyCapsule object. - - This function will instantiate a Window UDF that uses a DataFusion - WindowUDF that is exported via the FFI bindings. - - - - .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, WindowUDF] - udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF - :staticmethod: - - - Create a new User-Defined Window Function (UDWF). - - This class can be used both as either a function or a decorator. - - Usage: - - As a function: ``udwf(func, input_types, return_type, volatility, name)``. - - As a decorator: ``@udwf(input_types, return_type, volatility, name)``. - When using ``udwf`` as a decorator, do not pass ``func`` explicitly. - - Function example:: - - import pyarrow as pa - - class BiasedNumbers(WindowEvaluator): - def __init__(self, start: int = 0) -> None: - self.start = start - - def evaluate_all(self, values: list[pa.Array], - num_rows: int) -> pa.Array: - return pa.array([self.start + i for i in range(num_rows)]) - - def bias_10() -> BiasedNumbers: - return BiasedNumbers(10) - - udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable") - udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable") - udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable") - - - Decorator example:: - - @udwf(pa.int64(), pa.int64(), "immutable") - def biased_numbers() -> BiasedNumbers: - return BiasedNumbers(10) - - :param func: Only needed when calling as a function. Skip this argument when - using ``udwf`` as a decorator. If you have a Rust backed WindowUDF - within a PyCapsule, you can pass this parameter and ignore the rest. - They will be determined directly from the underlying function. See - the online documentation for more information. - :param input_types: The data types of the arguments. - :param return_type: The data type of the return value. - :param volatility: See :py:class:`Volatility` for allowed values. - :param name: A descriptive name for the function. - - :returns: A user-defined window function that can be used in window function calls. - - - - .. py:attribute:: _udwf - - .. py:function:: configure_formatter(**kwargs: Any) -> None Configure the global DataFrame HTML formatter. @@ -2412,7 +2196,7 @@ Package Contents :returns: DataFrame representation of the read Avro file -.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -2433,6 +2217,8 @@ Package Contents selected for data input. :param table_partition_cols: Partition columns. :param file_compression_type: File compression type. + :param options: Set advanced options for CSV reading. This cannot be + combined with any of the other options in this method. :returns: DataFrame representation of the read CSV files @@ -2490,11 +2276,3 @@ Package Contents .. py:data:: column :type: Col -.. py:data:: udaf - -.. py:data:: udf - -.. py:data:: udtf - -.. py:data:: udwf - diff --git a/_sources/autoapi/datafusion/io/index.rst.txt b/_sources/autoapi/datafusion/io/index.rst.txt index bb80c1cd3..453d6fa04 100644 --- a/_sources/autoapi/datafusion/io/index.rst.txt +++ b/_sources/autoapi/datafusion/io/index.rst.txt @@ -39,7 +39,7 @@ Module Contents :returns: DataFrame representation of the read Avro file -.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) -> datafusion.dataframe.DataFrame +.. py:function:: read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) -> datafusion.dataframe.DataFrame Read a CSV data source. @@ -60,6 +60,8 @@ Module Contents selected for data input. :param table_partition_cols: Partition columns. :param file_compression_type: File compression type. + :param options: Set advanced options for CSV reading. This cannot be + combined with any of the other options in this method. :returns: DataFrame representation of the read CSV files diff --git a/_sources/autoapi/datafusion/options/index.rst.txt b/_sources/autoapi/datafusion/options/index.rst.txt new file mode 100644 index 000000000..25a6d6464 --- /dev/null +++ b/_sources/autoapi/datafusion/options/index.rst.txt @@ -0,0 +1,242 @@ +datafusion.options +================== + +.. py:module:: datafusion.options + +.. autoapi-nested-parse:: + + Options for reading various file formats. + + + +Classes +------- + +.. autoapisummary:: + + datafusion.options.CsvReadOptions + + +Module Contents +--------------- + +.. py:class:: CsvReadOptions(*, has_header: bool = True, delimiter: str = ',', quote: str = '"', terminator: str | None = None, escape: str | None = None, comment: str | None = None, newlines_in_values: bool = False, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', table_partition_cols: list[tuple[str, pyarrow.DataType]] | None = None, file_compression_type: str = '', file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None, null_regex: str | None = None, truncated_rows: bool = False) + + Options for reading CSV files. + + This class provides a builder pattern for configuring CSV reading options. + All methods starting with ``with_`` return ``self`` to allow method chaining. + + Initialize CsvReadOptions. + + :param has_header: Does the CSV file have a header row? If schema inference + is run on a file with no headers, default column names are created. + :param delimiter: Column delimiter character. Must be a single ASCII character. + :param quote: Quote character for fields containing delimiters or newlines. + Must be a single ASCII character. + :param terminator: Optional line terminator character. If ``None``, uses CRLF. + Must be a single ASCII character. + :param escape: Optional escape character for quotes. Must be a single ASCII + character. + :param comment: If specified, lines beginning with this character are ignored. + Must be a single ASCII character. + :param newlines_in_values: Whether newlines in quoted values are supported. + Parsing newlines in quoted values may be affected by execution + behavior such as parallel file scanning. Setting this to ``True`` + ensures that newlines in values are parsed successfully, which may + reduce performance. + :param schema: Optional PyArrow schema representing the CSV files. If ``None``, + the CSV reader will try to infer it based on data in the file. + :param schema_infer_max_records: Maximum number of rows to read from CSV files + for schema inference if needed. + :param file_extension: File extension; only files with this extension are + selected for data input. + :param table_partition_cols: Partition columns as a list of tuples of + (column_name, data_type). + :param file_compression_type: File compression type. Supported values are + ``"gzip"``, ``"bz2"``, ``"xz"``, ``"zstd"``, or empty string for + uncompressed. + :param file_sort_order: Optional sort order of the files as a list of sort + expressions per file. + :param null_regex: Optional regex pattern to match null values in the CSV. + :param truncated_rows: Whether to allow truncated rows when parsing. By default + this is ``False`` and will error if the CSV rows have different + lengths. When set to ``True``, it will allow records with less than + the expected number of columns and fill the missing columns with + nulls. If the record's schema is not nullable, it will still return + an error. + + + .. py:method:: to_inner() -> datafusion._internal.options.CsvReadOptions + + Convert this object into the underlying Rust structure. + + This is intended for internal use only. + + + + .. py:method:: with_comment(comment: str | None) -> CsvReadOptions + + Configure the comment character. + + + + .. py:method:: with_delimiter(delimiter: str) -> CsvReadOptions + + Configure the column delimiter. + + + + .. py:method:: with_escape(escape: str | None) -> CsvReadOptions + + Configure the escape character. + + + + .. py:method:: with_file_compression_type(file_compression_type: str) -> CsvReadOptions + + Configure file compression type. + + + + .. py:method:: with_file_extension(file_extension: str) -> CsvReadOptions + + Configure the file extension filter. + + + + .. py:method:: with_file_sort_order(file_sort_order: list[list[datafusion.expr.SortExpr]]) -> CsvReadOptions + + Configure file sort order. + + + + .. py:method:: with_has_header(has_header: bool) -> CsvReadOptions + + Configure whether the CSV has a header row. + + + + .. py:method:: with_newlines_in_values(newlines_in_values: bool) -> CsvReadOptions + + Configure whether newlines in values are supported. + + + + .. py:method:: with_null_regex(null_regex: str | None) -> CsvReadOptions + + Configure null value regex pattern. + + + + .. py:method:: with_quote(quote: str) -> CsvReadOptions + + Configure the quote character. + + + + .. py:method:: with_schema(schema: pyarrow.Schema | None) -> CsvReadOptions + + Configure the schema. + + + + .. py:method:: with_schema_infer_max_records(schema_infer_max_records: int) -> CsvReadOptions + + Configure maximum records for schema inference. + + + + .. py:method:: with_table_partition_cols(table_partition_cols: list[tuple[str, pyarrow.DataType]]) -> CsvReadOptions + + Configure table partition columns. + + + + .. py:method:: with_terminator(terminator: str | None) -> CsvReadOptions + + Configure the line terminator character. + + + + .. py:method:: with_truncated_rows(truncated_rows: bool) -> CsvReadOptions + + Configure whether to allow truncated rows. + + + + .. py:attribute:: comment + :value: None + + + + .. py:attribute:: delimiter + :value: ',' + + + + .. py:attribute:: escape + :value: None + + + + .. py:attribute:: file_compression_type + :value: '' + + + + .. py:attribute:: file_extension + :value: '.csv' + + + + .. py:attribute:: file_sort_order + :value: [] + + + + .. py:attribute:: has_header + :value: True + + + + .. py:attribute:: newlines_in_values + :value: False + + + + .. py:attribute:: null_regex + :value: None + + + + .. py:attribute:: quote + :value: '"' + + + + .. py:attribute:: schema + :value: None + + + + .. py:attribute:: schema_infer_max_records + :value: 1000 + + + + .. py:attribute:: table_partition_cols + :value: [] + + + + .. py:attribute:: terminator + :value: None + + + + .. py:attribute:: truncated_rows + :value: False + + + diff --git a/_sources/autoapi/datafusion/user_defined/index.rst.txt b/_sources/autoapi/datafusion/user_defined/index.rst.txt index 784a39c75..1a7a93d34 100644 --- a/_sources/autoapi/datafusion/user_defined/index.rst.txt +++ b/_sources/autoapi/datafusion/user_defined/index.rst.txt @@ -44,6 +44,8 @@ Functions .. autoapisummary:: datafusion.user_defined._is_pycapsule + datafusion.user_defined.data_type_or_field_to_field + datafusion.user_defined.data_types_or_fields_to_field_list Module Contents @@ -217,7 +219,7 @@ Module Contents .. py:method:: __datafusion_aggregate_udf__() -> object -.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str) +.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_fields: list[pyarrow.Field], return_field: _R, volatility: Volatility | str) Class for performing scalar user-defined functions (UDF). @@ -255,8 +257,8 @@ Module Contents - .. py:method:: udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] - udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) -> ScalarUDF + .. py:method:: udf(input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] + udf(func: collections.abc.Callable[Ellipsis, _R], input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) -> ScalarUDF udf(func: ScalarUDFExportable) -> ScalarUDF :staticmethod: @@ -266,22 +268,26 @@ Module Contents This class can be used both as either a function or a decorator. Usage: - - As a function: ``udf(func, input_types, return_type, volatility, name)``. - - As a decorator: ``@udf(input_types, return_type, volatility, name)``. + - As a function: ``udf(func, input_fields, return_field, volatility, name)``. + - As a decorator: ``@udf(input_fields, return_field, volatility, name)``. When used a decorator, do **not** pass ``func`` explicitly. + In lieu of passing a PyArrow Field, you can pass a DataType for simplicity. + When you do so, it will be assumed that the nullability of the inputs and + output are True and that they have no metadata. + :param func: Only needed when calling as a function. Skip this argument when using `udf` as a decorator. If you have a Rust backed ScalarUDF within a PyCapsule, you can pass this parameter and ignore the rest. They will be determined directly from the underlying function. See the online documentation for more information. :type func: Callable, optional - :param input_types: The data types of the arguments - to ``func``. This list must be of the same length as the number of - arguments. - :type input_types: list[pa.DataType] - :param return_type: The data type of the return value from the function. - :type return_type: _R + :param input_fields: The data types or Fields + of the arguments to ``func``. This list must be of the same length + as the number of arguments. + :type input_fields: list[pa.Field | pa.DataType] + :param return_field: The field of the return value from the function. + :type return_field: _R :param volatility: See `Volatility` for allowed values. :type volatility: Volatility | str :param name: A descriptive name for the function. @@ -319,7 +325,7 @@ Module Contents .. py:method:: __datafusion_scalar_udf__() -> object -.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any]) +.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any], ctx: datafusion.SessionContext | None = None) Class for performing user-defined table functions (UDTF). @@ -744,6 +750,16 @@ Module Contents Return ``True`` when ``value`` is a CPython ``PyCapsule``. +.. py:function:: data_type_or_field_to_field(value: pyarrow.DataType | pyarrow.Field, name: str) -> pyarrow.Field + + Helper function to return a Field from either a Field or DataType. + + +.. py:function:: data_types_or_fields_to_field_list(inputs: collections.abc.Sequence[pyarrow.Field | pyarrow.DataType] | pyarrow.Field | pyarrow.DataType) -> list[pyarrow.Field] + + Helper function to return a list of Fields. + + .. py:data:: _R .. py:data:: udaf diff --git a/_sources/contributor-guide/ffi.rst.txt b/_sources/contributor-guide/ffi.rst.txt index 64413866f..5006b0ca4 100644 --- a/_sources/contributor-guide/ffi.rst.txt +++ b/_sources/contributor-guide/ffi.rst.txt @@ -15,6 +15,8 @@ .. specific language governing permissions and limitations .. under the License. +.. _ffi: + Python Extensions ================= diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt index adec60f48..134d41cb6 100644 --- a/_sources/index.rst.txt +++ b/_sources/index.rst.txt @@ -77,6 +77,7 @@ Example user-guide/io/index user-guide/configuration user-guide/sql + user-guide/upgrade-guides .. _toc.contributor_guide: diff --git a/_sources/user-guide/common-operations/udf-and-udfa.rst.txt b/_sources/user-guide/common-operations/udf-and-udfa.rst.txt index 0830fa81c..d554e1e25 100644 --- a/_sources/user-guide/common-operations/udf-and-udfa.rst.txt +++ b/_sources/user-guide/common-operations/udf-and-udfa.rst.txt @@ -90,6 +90,17 @@ converting to Python objects to do the evaluation. df.select(col("a"), is_null_arr(col("a")).alias("is_null")).show() +In this example we passed the PyArrow ``DataType`` when we defined the function +by calling ``udf()``. If you need additional control, such as specifying +metadata or nullability of the input or output, you can instead specify a +PyArrow ``Field``. + +If you need to write a custom function but do not want to incur the performance +cost of converting to Python objects and back, a more advanced approach is to +write Rust based UDFs and to expose them to Python. There is an example in the +`DataFusion blog `_ +describing how to do this. + Aggregate Functions ------------------- diff --git a/_sources/user-guide/dataframe/rendering.rst.txt b/_sources/user-guide/dataframe/rendering.rst.txt index 4c37c7471..9dea948bb 100644 --- a/_sources/user-guide/dataframe/rendering.rst.txt +++ b/_sources/user-guide/dataframe/rendering.rst.txt @@ -57,8 +57,8 @@ You can customize how DataFrames are rendered by configuring the formatter: max_width=1000, # Maximum width in pixels max_height=300, # Maximum height in pixels max_memory_bytes=2097152, # Maximum memory for rendering (2MB) - min_rows_display=20, # Minimum number of rows to display - repr_rows=10, # Number of rows to display in __repr__ + min_rows=10, # Minimum number of rows to display + max_rows=10, # Maximum rows to display in __repr__ enable_cell_expansion=True,# Allow expanding truncated cells custom_css=None, # Additional custom CSS show_truncation_message=True, # Show message when data is truncated @@ -190,8 +190,8 @@ You can control how much data is displayed and how much memory is used for rende configure_formatter( max_memory_bytes=4 * 1024 * 1024, # 4MB maximum memory for display - min_rows_display=50, # Always show at least 50 rows - repr_rows=20 # Show 20 rows in __repr__ output + min_rows=20, # Always show at least 20 rows + max_rows=50 # Show up to 50 rows in output ) These parameters help balance comprehensive data display against performance considerations. diff --git a/_sources/user-guide/io/csv.rst.txt b/_sources/user-guide/io/csv.rst.txt index 144b6615c..9c23c291b 100644 --- a/_sources/user-guide/io/csv.rst.txt +++ b/_sources/user-guide/io/csv.rst.txt @@ -36,3 +36,25 @@ An alternative is to use :py:func:`~datafusion.context.SessionContext.register_c ctx.register_csv("file", "file.csv") df = ctx.table("file") + +If you require additional control over how to read the CSV file, you can use +:py:class:`~datafusion.options.CsvReadOptions` to set a variety of options. + +.. code-block:: python + + from datafusion import CsvReadOptions + options = ( + CsvReadOptions() + .with_has_header(True) # File contains a header row + .with_delimiter(";") # Use ; as the delimiter instead of , + .with_comment("#") # Skip lines starting with # + .with_escape("\\") # Escape character + .with_null_regex(r"^(null|NULL|N/A)$") # Treat these as NULL + .with_truncated_rows(True) # Allow rows to have incomplete columns + .with_file_compression_type("gzip") # Read gzipped CSV + .with_file_extension(".gz") # File extension other than .csv + ) + df = ctx.read_csv("data.csv.gz", options=options) + +Details for all CSV reading options can be found on the +`DataFusion documentation site `_. diff --git a/_sources/user-guide/upgrade-guides.rst.txt b/_sources/user-guide/upgrade-guides.rst.txt new file mode 100644 index 000000000..a77f60776 --- /dev/null +++ b/_sources/user-guide/upgrade-guides.rst.txt @@ -0,0 +1,96 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at + +.. http://www.apache.org/licenses/LICENSE-2.0 + +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +Upgrade Guides +============== + +DataFusion 52.0.0 +----------------- + +This version includes a major update to the :ref:`ffi` due to upgrades +to the `Foreign Function Interface `_. +Users who contribute their own ``CatalogProvider``, ``SchemaProvider``, +``TableProvider`` or ``TableFunction`` via FFI must now provide access to a +``LogicalExtensionCodec`` and a ``TaskContextProvider``. The function signatures +for the methods to get these ``PyCapsule`` objects now requires an additional +parameter, which is a Python object that can be used to extract the +``FFI_LogicalExtensionCodec`` that is necessary. + +A complete example can be found in the `FFI example `_. +Your methods need to be updated to take an additional parameter like in this +example. + +.. code-block:: rust + + #[pymethods] + impl MyCatalogProvider { + pub fn __datafusion_catalog_provider__<'py>( + &self, + py: Python<'py>, + session: Bound, + ) -> PyResult> { + let name = cr"datafusion_catalog_provider".into(); + + let provider = Arc::clone(&self.inner) as Arc; + + let codec = ffi_logical_codec_from_pycapsule(session)?; + let provider = FFI_CatalogProvider::new_with_ffi_codec(provider, None, codec); + + PyCapsule::new(py, provider, Some(name)) + } + } + +To extract the logical extension codec FFI object from the provided object you +can implement a helper method such as: + +.. code-block:: rust + + pub(crate) fn ffi_logical_codec_from_pycapsule( + obj: Bound, + ) -> PyResult { + let attr_name = "__datafusion_logical_extension_codec__"; + let capsule = if obj.hasattr(attr_name)? { + obj.getattr(attr_name)?.call0()? + } else { + obj + }; + + let capsule = capsule.downcast::()?; + validate_pycapsule(capsule, "datafusion_logical_extension_codec")?; + + let codec = unsafe { capsule.reference::() }; + + Ok(codec.clone()) + } + + +The DataFusion FFI interface updates no longer depend directly on the +``datafusion`` core crate. You can improve your build times and potentially +reduce your library binary size by removing this dependency and instead +using the specific datafusion project crates. + +For example, instead of including expressions like: + +.. code-block:: rust + + use datafusion::catalog::MemTable; + +Instead you can now write: + +.. code-block:: rust + + use datafusion_catalog::MemTable; diff --git a/autoapi/datafusion/catalog/index.html b/autoapi/datafusion/catalog/index.html index 862ded08f..e99ff9e4e 100644 --- a/autoapi/datafusion/catalog/index.html +++ b/autoapi/datafusion/catalog/index.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -619,6 +629,15 @@
  • +
  • + + + + Schema.table_exist() + + + +
  • @@ -844,7 +863,7 @@

    Module Contents
    -static memory_catalog() Catalog
    +static memory_catalog(ctx: datafusion.SessionContext | None = None) Catalog

    Create an in-memory catalog provider.

    @@ -941,7 +960,7 @@

    Module Contents
    -static memory_schema() Schema
    +static memory_schema(ctx: datafusion.SessionContext | None = None) Schema

    Create an in-memory schema provider.

    @@ -963,6 +982,12 @@

    Module Contentsname from this schema.

    +
    +
    +table_exist(name: str) bool
    +

    Determines if a table exists in this schema.

    +
    +
    table_names() set[str]
    @@ -1026,7 +1051,7 @@

    Module Contents
    -class datafusion.catalog.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset)
    +class datafusion.catalog.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset, ctx: datafusion.SessionContext | None = None)

    A DataFusion table.

    Internally we currently support the following types of tables:

      diff --git a/autoapi/datafusion/context/index.html b/autoapi/datafusion/context/index.html index f8aefac95..677e2937f 100644 --- a/autoapi/datafusion/context/index.html +++ b/autoapi/datafusion/context/index.html @@ -243,6 +243,11 @@ SQL +
    • + + Upgrade Guides + +

    @@ -354,6 +359,11 @@ datafusion.object_store

  • +
  • + + datafusion.options + +
  • datafusion.plan @@ -762,6 +772,24 @@

    @@ -354,6 +359,11 @@ datafusion.object_store

  • +
  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/dataframe_formatter/index.html b/autoapi/datafusion/dataframe_formatter/index.html index 615c37da5..f611c472a 100644 --- a/autoapi/datafusion/dataframe_formatter/index.html +++ b/autoapi/datafusion/dataframe_formatter/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -613,6 +623,15 @@
  • +
  • + + + + DataFrameHtmlFormatter._max_rows + + + +
  • @@ -667,6 +686,15 @@
  • +
  • + + + + DataFrameHtmlFormatter.max_rows + + + +
  • @@ -677,10 +705,10 @@
  • - + - DataFrameHtmlFormatter.min_rows_display + DataFrameHtmlFormatter.min_rows @@ -837,6 +865,15 @@
  • +
  • + + + + _validate_formatter_parameters() + + + +
  • @@ -940,19 +977,22 @@

    Functions

    _validate_bool(→ None)

    Validate that a parameter is a boolean.

    -

    _validate_positive_int(→ None)

    +

    _validate_formatter_parameters(→ int)

    +

    Validate all formatter parameters and return resolved max_rows value.

    + +

    _validate_positive_int(→ None)

    Validate that a parameter is a positive integer.

    -

    configure_formatter(→ None)

    +

    configure_formatter(→ None)

    Configure the global DataFrame HTML formatter.

    -

    get_formatter(→ DataFrameHtmlFormatter)

    +

    get_formatter(→ DataFrameHtmlFormatter)

    Get the current global DataFrame HTML formatter.

    -

    reset_formatter(→ None)

    +

    reset_formatter(→ None)

    Reset the global DataFrame HTML formatter to default settings.

    -

    set_formatter(→ None)

    +

    set_formatter(→ None)

    Set the global DataFrame HTML formatter.

    @@ -975,7 +1015,7 @@

    Module Contents
    -class datafusion.dataframe_formatter.DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows_display: int = 20, repr_rows: int = 10, enable_cell_expansion: bool = True, custom_css: str | None = None, show_truncation_message: bool = True, style_provider: StyleProvider | None = None, use_shared_styles: bool = True)
    +class datafusion.dataframe_formatter.DataFrameHtmlFormatter(max_cell_length: int = 25, max_width: int = 1000, max_height: int = 300, max_memory_bytes: int = 2 * 1024 * 1024, min_rows: int = 10, max_rows: int | None = None, repr_rows: int | None = None, enable_cell_expansion: bool = True, custom_css: str | None = None, show_truncation_message: bool = True, style_provider: StyleProvider | None = None, use_shared_styles: bool = True)

    Configurable HTML formatter for DataFusion DataFrames.

    This class handles the HTML rendering of DataFrames for display in Jupyter notebooks and other rich display contexts.

    @@ -990,8 +1030,9 @@

    Module Contents
    Parameters:
    @@ -1211,6 +1257,11 @@

    Module Contents_custom_header_builder: collections.abc.Callable[[Any], str] | None = None
    +
    +
    +_max_rows = None
    +
    +
    _type_formatters: dict[type, CellFormatter]
    @@ -1241,20 +1292,41 @@

    Module Contentsmax_memory_bytes = 2097152

    +
    +
    +property max_rows: int
    +

    Get the maximum number of rows to display.

    +
    +
    Returns:
    +

    The maximum number of rows to display in repr output

    +
    +
    +
    +
    max_width = 1000
    -
    -min_rows_display = 20
    +
    +min_rows = 10
    -
    +
    -repr_rows = 10
    -
    +property repr_rows: int +

    Get the maximum number of rows (deprecated name).

    +
    +

    Deprecated since version Use: max_rows instead. This property is provided for +backward compatibility.

    +
    +
    +
    Returns:
    +

    The maximum number of rows to display

    +
    +
    +
    @@ -1378,6 +1450,40 @@

    Module Contents +
    +datafusion.dataframe_formatter._validate_formatter_parameters(max_cell_length: int, max_width: int, max_height: int, max_memory_bytes: int, min_rows: int, max_rows: int | None, repr_rows: int | None, enable_cell_expansion: bool, show_truncation_message: bool, use_shared_styles: bool, custom_css: str | None, style_provider: Any) int
    +

    Validate all formatter parameters and return resolved max_rows value.

    +
    +
    Parameters:
    +
      +
    • max_cell_length – Maximum cell length value to validate

    • +
    • max_width – Maximum width value to validate

    • +
    • max_height – Maximum height value to validate

    • +
    • max_memory_bytes – Maximum memory bytes value to validate

    • +
    • min_rows – Minimum rows to display value to validate

    • +
    • max_rows – Maximum rows value to validate (None means use default)

    • +
    • repr_rows – Deprecated repr_rows value to validate

    • +
    • enable_cell_expansion – Boolean expansion flag to validate

    • +
    • show_truncation_message – Boolean message flag to validate

    • +
    • use_shared_styles – Boolean styles flag to validate

    • +
    • custom_css – Custom CSS string to validate

    • +
    • style_provider – Style provider object to validate

    • +
    +
    +
    Returns:
    +

    The resolved max_rows value after handling repr_rows deprecation

    +
    +
    Raises:
    +
      +
    • ValueError – If any numeric parameter is invalid or constraints are violated

    • +
    • TypeError – If any parameter has invalid type

    • +
    • DeprecationWarning – If repr_rows parameter is used

    • +
    +
    +
    +

    +
    datafusion.dataframe_formatter._validate_positive_int(value: Any, param_name: str) None
    diff --git a/autoapi/datafusion/expr/index.html b/autoapi/datafusion/expr/index.html index e55ea8720..44cae0131 100644 --- a/autoapi/datafusion/expr/index.html +++ b/autoapi/datafusion/expr/index.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/functions/index.html b/autoapi/datafusion/functions/index.html index c50a7b543..bc1a0b1f8 100644 --- a/autoapi/datafusion/functions/index.html +++ b/autoapi/datafusion/functions/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/html_formatter/index.html b/autoapi/datafusion/html_formatter/index.html index 3bb3d0f09..d344fefca 100644 --- a/autoapi/datafusion/html_formatter/index.html +++ b/autoapi/datafusion/html_formatter/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/index.html b/autoapi/datafusion/index.html index d306bc467..21512f265 100644 --- a/autoapi/datafusion/index.html +++ b/autoapi/datafusion/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -433,102 +443,91 @@
  • - + - TableFunction + WindowFrame -
  • -
  • - - - - WindowFrame - - - -
  • -
  • - - - - WindowUDF - - - - -
  • @@ -3037,42 +3021,6 @@
  • -
  • - - - - udaf - - - -
  • -
  • - - - - udf - - - -
  • -
  • - - - - udtf - - - -
  • -
  • - - - - udwf - - - -
  • @@ -3115,6 +3063,7 @@

    Submodulesdatafusion.input
  • datafusion.io
  • datafusion.object_store
  • +
  • datafusion.options
  • datafusion.plan
  • datafusion.record_batch
  • datafusion.substrait
  • @@ -3136,18 +3085,6 @@

    Attributes

    column

    -

    udaf

    -

    - -

    udf

    -

    - -

    udtf

    -

    - -

    udwf

    -

    - @@ -3155,69 +3092,57 @@

    Attributes

    - - - - - - - + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + - - -

    Accumulator

    Defines how an AggregateUDF accumulates values.

    AggregateUDF

    Class for performing scalar user-defined functions (UDF).

    Catalog

    DataFusion data catalog.

    DataFrameWriteOptions

    CsvReadOptions

    Options for reading CSV files.

    DataFrameWriteOptions

    Writer options for DataFrame.

    Database

    Database

    See Schema.

    ExecutionPlan

    ExecutionPlan

    Represent nodes in the DataFusion Physical Plan.

    Expr

    Expr

    Expression object.

    InsertOp

    InsertOp

    Insert operation mode.

    LogicalPlan

    LogicalPlan

    Logical Plan.

    ParquetColumnOptions

    ParquetColumnOptions

    Parquet options for individual columns.

    ParquetWriterOptions

    ParquetWriterOptions

    Advanced parquet writer options.

    RecordBatch

    RecordBatch

    This class is essentially a wrapper for pa.RecordBatch.

    RecordBatchStream

    RecordBatchStream

    This class represents a stream of record batches.

    RuntimeEnvBuilder

    RuntimeEnvBuilder

    Runtime configuration options.

    SQLOptions

    SQLOptions

    Options to be used when performing SQL queries.

    ScalarUDF

    Class for performing scalar user-defined functions (UDF).

    SessionConfig

    Session configuration options.

    Table

    A DataFusion table.

    TableFunction

    Class for performing user-defined table functions (UDTF).

    WindowFrame

    WindowFrame

    Defines a window frame for performing window operations.

    WindowUDF

    Class for performing window user-defined functions (UDF).

    @@ -3251,161 +3176,6 @@

    Functions

    Package Contents

    -
    -
    -class datafusion.Accumulator
    -

    Defines how an AggregateUDF accumulates values.

    -
    -
    -abstract evaluate() pyarrow.Scalar
    -

    Return the resultant value.

    -
    - -
    -
    -abstract merge(states: list[pyarrow.Array]) None
    -

    Merge a set of states.

    -
    - -
    -
    -abstract state() list[pyarrow.Scalar]
    -

    Return the current state.

    -
    - -
    -
    -abstract update(*values: pyarrow.Array) None
    -

    Evaluate an array of values and update state.

    -
    - -
    - -
    -
    -class datafusion.AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    -
    -class datafusion.AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...)
    -

    Class for performing scalar user-defined functions (UDF).

    -

    Aggregate UDFs operate on a group of rows and return a single value. See -also ScalarUDF for operating on a row by row basis.

    -

    Instantiate a user-defined aggregate function (UDAF).

    -

    See udaf() for a convenience function and argument -descriptions.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDAF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -__repr__() str
    -

    Print a string representation of the Aggregate UDF.

    -
    - -
    -
    -static from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) AggregateUDF
    -

    Create an Aggregate UDF from AggregateUDF PyCapsule object.

    -

    This function will instantiate a Aggregate UDF that uses a DataFusion -AggregateUDF that is exported via the FFI bindings.

    -
    - -
    -
    -static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, AggregateUDF]
    -
    -static udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    -
    -static udaf(accum: AggregateUDFExportable) AggregateUDF
    -
    -static udaf(accum: _typeshed.CapsuleType) AggregateUDF
    -

    Create a new User-Defined Aggregate Function (UDAF).

    -

    This class allows you to define an aggregate function that can be used in -data aggregation or window function calls.

    -
    -
    Usage:
      -
    • As a function: udaf(accum, input_types, return_type, state_type, volatility, name).

    • -
    • As a decorator: @udaf(input_types, return_type, state_type, volatility, name). -When using udaf as a decorator, do not pass accum explicitly.

    • -
    -
    -
    -

    Function example:

    -

    If your Accumulator can be instantiated with no arguments, you -can simply pass it’s type as accum. If you need to pass additional -arguments to it’s constructor, you can define a lambda or a factory method. -During runtime the Accumulator will be constructed for every -instance in which this UDAF is used. The following examples are all valid:

    -
    import pyarrow as pa
    -import pyarrow.compute as pc
    -
    -class Summarize(Accumulator):
    -    def __init__(self, bias: float = 0.0):
    -        self._sum = pa.scalar(bias)
    -
    -    def state(self) -> list[pa.Scalar]:
    -        return [self._sum]
    -
    -    def update(self, values: pa.Array) -> None:
    -        self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())
    -
    -    def merge(self, states: list[pa.Array]) -> None:
    -        self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())
    -
    -    def evaluate(self) -> pa.Scalar:
    -        return self._sum
    -
    -def sum_bias_10() -> Summarize:
    -    return Summarize(10.0)
    -
    -udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],
    -    "immutable")
    -udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],
    -    "immutable")
    -udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),
    -    [pa.float64()], "immutable")
    -
    -
    -

    Decorator example::

    -
    @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable")
    -def udf4() -> Summarize:
    -    return Summarize(10.0)
    -
    -
    -
    -
    Parameters:
    -
      -
    • accum – The accumulator python function. Only needed when calling as a -function. Skip this argument when using udaf as a decorator. -If you have a Rust backed AggregateUDF within a PyCapsule, you can -pass this parameter and ignore the rest. They will be determined -directly from the underlying function. See the online documentation -for more information.

    • -
    • input_types – The data types of the arguments to accum.

    • -
    • return_type – The data type of the return value.

    • -
    • state_type – The data types of the intermediate accumulation.

    • -
    • volatility – See Volatility for allowed values.

    • -
    • name – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined aggregate function, which can be used in either data -aggregation or window function calls.

    -
    -
    -
    - -
    -
    -_udaf
    -
    - -
    -
    class datafusion.Catalog(catalog: datafusion._internal.catalog.RawCatalog)
    @@ -3431,7 +3201,7 @@

    Package Contents
    -static memory_catalog() Catalog
    +static memory_catalog(ctx: datafusion.SessionContext | None = None) Catalog

    Create an in-memory catalog provider.

    @@ -3466,6 +3236,229 @@

    Package Contents +
    +class datafusion.CsvReadOptions(*, has_header: bool = True, delimiter: str = ',', quote: str = '"', terminator: str | None = None, escape: str | None = None, comment: str | None = None, newlines_in_values: bool = False, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', table_partition_cols: list[tuple[str, pyarrow.DataType]] | None = None, file_compression_type: str = '', file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None, null_regex: str | None = None, truncated_rows: bool = False)
    +

    Options for reading CSV files.

    +

    This class provides a builder pattern for configuring CSV reading options. +All methods starting with with_ return self to allow method chaining.

    +

    Initialize CsvReadOptions.

    +
    +
    Parameters:
    +
      +
    • has_header – Does the CSV file have a header row? If schema inference +is run on a file with no headers, default column names are created.

    • +
    • delimiter – Column delimiter character. Must be a single ASCII character.

    • +
    • quote – Quote character for fields containing delimiters or newlines. +Must be a single ASCII character.

    • +
    • terminator – Optional line terminator character. If None, uses CRLF. +Must be a single ASCII character.

    • +
    • escape – Optional escape character for quotes. Must be a single ASCII +character.

    • +
    • comment – If specified, lines beginning with this character are ignored. +Must be a single ASCII character.

    • +
    • newlines_in_values – Whether newlines in quoted values are supported. +Parsing newlines in quoted values may be affected by execution +behavior such as parallel file scanning. Setting this to True +ensures that newlines in values are parsed successfully, which may +reduce performance.

    • +
    • schema – Optional PyArrow schema representing the CSV files. If None, +the CSV reader will try to infer it based on data in the file.

    • +
    • schema_infer_max_records – Maximum number of rows to read from CSV files +for schema inference if needed.

    • +
    • file_extension – File extension; only files with this extension are +selected for data input.

    • +
    • table_partition_cols – Partition columns as a list of tuples of +(column_name, data_type).

    • +
    • file_compression_type – File compression type. Supported values are +"gzip", "bz2", "xz", "zstd", or empty string for +uncompressed.

    • +
    • file_sort_order – Optional sort order of the files as a list of sort +expressions per file.

    • +
    • null_regex – Optional regex pattern to match null values in the CSV.

    • +
    • truncated_rows – Whether to allow truncated rows when parsing. By default +this is False and will error if the CSV rows have different +lengths. When set to True, it will allow records with less than +the expected number of columns and fill the missing columns with +nulls. If the record’s schema is not nullable, it will still return +an error.

    • +
    +
    +
    +
    +
    +to_inner() datafusion._internal.options.CsvReadOptions
    +

    Convert this object into the underlying Rust structure.

    +

    This is intended for internal use only.

    +
    + +
    +
    +with_comment(comment: str | None) CsvReadOptions
    +

    Configure the comment character.

    +
    + +
    +
    +with_delimiter(delimiter: str) CsvReadOptions
    +

    Configure the column delimiter.

    +
    + +
    +
    +with_escape(escape: str | None) CsvReadOptions
    +

    Configure the escape character.

    +
    + +
    +
    +with_file_compression_type(file_compression_type: str) CsvReadOptions
    +

    Configure file compression type.

    +
    + +
    +
    +with_file_extension(file_extension: str) CsvReadOptions
    +

    Configure the file extension filter.

    +
    + +
    +
    +with_file_sort_order(file_sort_order: list[list[datafusion.expr.SortExpr]]) CsvReadOptions
    +

    Configure file sort order.

    +
    + +
    +
    +with_has_header(has_header: bool) CsvReadOptions
    +

    Configure whether the CSV has a header row.

    +
    + +
    +
    +with_newlines_in_values(newlines_in_values: bool) CsvReadOptions
    +

    Configure whether newlines in values are supported.

    +
    + +
    +
    +with_null_regex(null_regex: str | None) CsvReadOptions
    +

    Configure null value regex pattern.

    +
    + +
    +
    +with_quote(quote: str) CsvReadOptions
    +

    Configure the quote character.

    +
    + +
    +
    +with_schema(schema: pyarrow.Schema | None) CsvReadOptions
    +

    Configure the schema.

    +
    + +
    +
    +with_schema_infer_max_records(schema_infer_max_records: int) CsvReadOptions
    +

    Configure maximum records for schema inference.

    +
    + +
    +
    +with_table_partition_cols(table_partition_cols: list[tuple[str, pyarrow.DataType]]) CsvReadOptions
    +

    Configure table partition columns.

    +
    + +
    +
    +with_terminator(terminator: str | None) CsvReadOptions
    +

    Configure the line terminator character.

    +
    + +
    +
    +with_truncated_rows(truncated_rows: bool) CsvReadOptions
    +

    Configure whether to allow truncated rows.

    +
    + +
    +
    +comment = None
    +
    + +
    +
    +delimiter = ','
    +
    + +
    +
    +escape = None
    +
    + +
    +
    +file_compression_type = ''
    +
    + +
    +
    +file_extension = '.csv'
    +
    + +
    +
    +file_sort_order = []
    +
    + +
    +
    +has_header = True
    +
    + +
    +
    +newlines_in_values = False
    +
    + +
    +
    +null_regex = None
    +
    + +
    +
    +quote = '"'
    +
    + +
    +
    +schema = None
    +
    + +
    +
    +schema_infer_max_records = 1000
    +
    + +
    +
    +table_partition_cols = []
    +
    + +
    +
    +terminator = None
    +
    + +
    +
    +truncated_rows = False
    +
    + +
    +
    class datafusion.DataFrameWriteOptions(insert_operation: InsertOp | None = None, single_file_output: bool = False, partition_by: str | collections.abc.Sequence[str] | None = None, sort_by: datafusion.expr.Expr | datafusion.expr.SortExpr | collections.abc.Sequence[datafusion.expr.Expr] | collections.abc.Sequence[datafusion.expr.SortExpr] | None = None)
    @@ -5045,96 +5038,6 @@

    Returns:

    -
    -
    -class datafusion.ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    -

    Class for performing scalar user-defined functions (UDF).

    -

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for -operating on a group of rows.

    -

    Instantiate a scalar user-defined function (UDF).

    -

    See helper method udf() for argument details.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -__repr__() str
    -

    Print a string representation of the Scalar UDF.

    -
    - -
    -
    -static from_pycapsule(func: ScalarUDFExportable) ScalarUDF
    -

    Create a Scalar UDF from ScalarUDF PyCapsule object.

    -

    This function will instantiate a Scalar UDF that uses a DataFusion -ScalarUDF that is exported via the FFI bindings.

    -
    - -
    -
    -static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, ScalarUDF]
    -
    -static udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    -
    -static udf(func: ScalarUDFExportable) ScalarUDF
    -

    Create a new User-Defined Function (UDF).

    -

    This class can be used both as either a function or a decorator.

    -
    -
    Usage:
      -
    • As a function: udf(func, input_types, return_type, volatility, name).

    • -
    • As a decorator: @udf(input_types, return_type, volatility, name). -When used a decorator, do not pass func explicitly.

    • -
    -
    -
    -
    -
    Parameters:
    -
      -
    • func (Callable, optional) – Only needed when calling as a function. -Skip this argument when using udf as a decorator. If you have a Rust -backed ScalarUDF within a PyCapsule, you can pass this parameter -and ignore the rest. They will be determined directly from the -underlying function. See the online documentation for more information.

    • -
    • input_types (list[pa.DataType]) – The data types of the arguments -to func. This list must be of the same length as the number of -arguments.

    • -
    • return_type (_R) – The data type of the return value from the function.

    • -
    • volatility (Volatility | str) – See Volatility for allowed values.

    • -
    • name (Optional[str]) – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined function that can be used in SQL expressions, -data aggregation, or window function calls.

    -
    -
    -

    Example: Using udf as a function:

    -
    def double_func(x):
    -    return x * 2
    -double_udf = udf(double_func, [pa.int32()], pa.int32(),
    -"volatile", "double_it")
    -
    -
    -

    Example: Using udf as a decorator:

    -
    @udf([pa.int32()], pa.int32(), "volatile", "double_it")
    -def double_udf(x):
    -    return x * 2
    -
    -
    -
    - -
    -
    -_udf
    -
    - -
    -
    class datafusion.SessionConfig(config_options: dict[str, str] | None = None)
    @@ -5345,7 +5248,7 @@

    Returns:
    -class datafusion.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset)
    +class datafusion.Table(table: Table | datafusion.context.TableProviderExportable | datafusion.DataFrame | pyarrow.dataset.Dataset, ctx: datafusion.SessionContext | None = None)

    A DataFusion table.

    Internally we currently support the following types of tables:

      @@ -5393,54 +5296,6 @@

      Returns:

    -
    -
    -class datafusion.TableFunction(name: str, func: collections.abc.Callable[[], any])
    -

    Class for performing user-defined table functions (UDTF).

    -

    Table functions generate new table providers based on the -input expressions.

    -

    Instantiate a user-defined table function (UDTF).

    -

    See udtf() for a convenience function and argument -descriptions.

    -
    -
    -__call__(*args: datafusion.expr.Expr) Any
    -

    Execute the UDTF and return a table provider.

    -
    - -
    -
    -__repr__() str
    -

    User printable representation.

    -
    - -
    -
    -static _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) TableFunction
    -

    Create a TableFunction instance from function arguments.

    -
    - -
    -
    -static _create_table_udf_decorator(name: str | None = None) collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]]
    -

    Create a decorator for a WindowUDF.

    -
    - -
    -
    -static udtf(name: str) collections.abc.Callable[Ellipsis, Any]
    -
    -static udtf(func: collections.abc.Callable[[], Any], name: str) TableFunction
    -

    Create a new User-Defined Table Function (UDTF).

    -
    - -
    -
    -_udtf
    -
    - -
    -
    class datafusion.WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None)
    @@ -5490,128 +5345,6 @@

    Returns:

    -
    -
    -class datafusion.WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
    -

    Class for performing window user-defined functions (UDF).

    -

    Window UDFs operate on a partition of rows. See -also ScalarUDF for operating on a row by row basis.

    -

    Instantiate a user-defined window function (UDWF).

    -

    See udwf() for a convenience function and argument -descriptions.

    -
    -
    -__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    -

    Execute the UDWF.

    -

    This function is not typically called by an end user. These calls will -occur during the evaluation of the dataframe.

    -
    - -
    -
    -__repr__() str
    -

    Print a string representation of the Window UDF.

    -
    - -
    -
    -static _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    -

    Create a WindowUDF instance from function arguments.

    -
    - -
    -
    -static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]]
    -

    Create a decorator for a WindowUDF.

    -
    - -
    -
    -static _get_default_name(func: collections.abc.Callable) str
    -

    Get the default name for a function based on its attributes.

    -
    - -
    -
    -static _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) list[pyarrow.DataType]
    -

    Convert a single DataType to a list if needed.

    -
    - -
    -
    -static from_pycapsule(func: WindowUDFExportable) WindowUDF
    -

    Create a Window UDF from WindowUDF PyCapsule object.

    -

    This function will instantiate a Window UDF that uses a DataFusion -WindowUDF that is exported via the FFI bindings.

    -
    - -
    -
    -static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, WindowUDF]
    -
    -static udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    -

    Create a new User-Defined Window Function (UDWF).

    -

    This class can be used both as either a function or a decorator.

    -
    -
    Usage:
      -
    • As a function: udwf(func, input_types, return_type, volatility, name).

    • -
    • As a decorator: @udwf(input_types, return_type, volatility, name). -When using udwf as a decorator, do not pass func explicitly.

    • -
    -
    -
    -

    Function example:

    -
    import pyarrow as pa
    -
    -class BiasedNumbers(WindowEvaluator):
    -    def __init__(self, start: int = 0) -> None:
    -        self.start = start
    -
    -    def evaluate_all(self, values: list[pa.Array],
    -        num_rows: int) -> pa.Array:
    -        return pa.array([self.start + i for i in range(num_rows)])
    -
    -def bias_10() -> BiasedNumbers:
    -    return BiasedNumbers(10)
    -
    -udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable")
    -udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable")
    -udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable")
    -
    -
    -

    Decorator example:

    -
    @udwf(pa.int64(), pa.int64(), "immutable")
    -def biased_numbers() -> BiasedNumbers:
    -    return BiasedNumbers(10)
    -
    -
    -
    -
    Parameters:
    -
      -
    • func – Only needed when calling as a function. Skip this argument when -using udwf as a decorator. If you have a Rust backed WindowUDF -within a PyCapsule, you can pass this parameter and ignore the rest. -They will be determined directly from the underlying function. See -the online documentation for more information.

    • -
    • input_types – The data types of the arguments.

    • -
    • return_type – The data type of the return value.

    • -
    • volatility – See Volatility for allowed values.

    • -
    • name – A descriptive name for the function.

    • -
    -
    -
    Returns:
    -

    A user-defined window function that can be used in window function calls.

    -
    -
    -
    - -
    -
    -_udwf
    -
    - -
    -
    datafusion.configure_formatter(**kwargs: Any) None
    @@ -5675,7 +5408,7 @@

    Returns:
    -datafusion.read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) datafusion.dataframe.DataFrame
    +datafusion.read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) datafusion.dataframe.DataFrame

    Read a CSV data source.

    This function will use the global context. Any functions or tables registered with another context may not be accessible when used with a DataFrame created @@ -5696,6 +5429,8 @@

    Returns:
  • table_partition_cols – Partition columns.

  • file_compression_type – File compression type.

  • +
  • options – Set advanced options for CSV reading. This cannot be +combined with any of the other options in this method.

  • Returns:
    @@ -5776,26 +5511,6 @@

    Returns:datafusion.column: Col

    -
    -
    -datafusion.udaf
    -
    - -
    -
    -datafusion.udf
    -
    - -
    -
    -datafusion.udtf
    -
    - -
    -
    -datafusion.udwf
    -
    - diff --git a/autoapi/datafusion/input/base/index.html b/autoapi/datafusion/input/base/index.html index c3af14fc7..0a4a58427 100644 --- a/autoapi/datafusion/input/base/index.html +++ b/autoapi/datafusion/input/base/index.html @@ -243,6 +243,11 @@ SQL +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/input/index.html b/autoapi/datafusion/input/index.html index 8be1dcc2b..ea03669e9 100644 --- a/autoapi/datafusion/input/index.html +++ b/autoapi/datafusion/input/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/input/location/index.html b/autoapi/datafusion/input/location/index.html index 65c4af52b..29dc97743 100644 --- a/autoapi/datafusion/input/location/index.html +++ b/autoapi/datafusion/input/location/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/io/index.html b/autoapi/datafusion/io/index.html index d2a42167e..ce57fb983 100644 --- a/autoapi/datafusion/io/index.html +++ b/autoapi/datafusion/io/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -524,7 +534,7 @@

    Module Contents
    -datafusion.io.read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None) datafusion.dataframe.DataFrame
    +datafusion.io.read_csv(path: str | pathlib.Path | list[str] | list[pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = 1000, file_extension: str = '.csv', table_partition_cols: list[tuple[str, str | pyarrow.DataType]] | None = None, file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) datafusion.dataframe.DataFrame

    Read a CSV data source.

    This function will use the global context. Any functions or tables registered with another context may not be accessible when used with a DataFrame created @@ -545,6 +555,8 @@

    Module ContentsReturns: diff --git a/autoapi/datafusion/object_store/index.html b/autoapi/datafusion/object_store/index.html index 9a4a9595e..8b1ad2c2d 100644 --- a/autoapi/datafusion/object_store/index.html +++ b/autoapi/datafusion/object_store/index.html @@ -34,7 +34,7 @@ - + @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -553,10 +563,10 @@

    Module Contentsdatafusion.io

    - +

    next

    -

    datafusion.plan

    +

    datafusion.options

    diff --git a/autoapi/datafusion/options/index.html b/autoapi/datafusion/options/index.html new file mode 100644 index 000000000..e436b87f5 --- /dev/null +++ b/autoapi/datafusion/options/index.html @@ -0,0 +1,1039 @@ + + + + + + + + datafusion.options — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + +
    + + + + +
    + + +
    + +
    + On this page +
    + + +
    + +
    + +
    + + +
    + + + + + + +
    + +
    + +
    +

    datafusion.options

    +

    Options for reading various file formats.

    +
    +

    Classes

    + + + + + + +

    CsvReadOptions

    Options for reading CSV files.

    +
    +
    +

    Module Contents

    +
    +
    +class datafusion.options.CsvReadOptions(*, has_header: bool = True, delimiter: str = ',', quote: str = '"', terminator: str | None = None, escape: str | None = None, comment: str | None = None, newlines_in_values: bool = False, schema: pyarrow.Schema | None = None, schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', table_partition_cols: list[tuple[str, pyarrow.DataType]] | None = None, file_compression_type: str = '', file_sort_order: list[list[datafusion.expr.SortExpr]] | None = None, null_regex: str | None = None, truncated_rows: bool = False)
    +

    Options for reading CSV files.

    +

    This class provides a builder pattern for configuring CSV reading options. +All methods starting with with_ return self to allow method chaining.

    +

    Initialize CsvReadOptions.

    +
    +
    Parameters:
    +
      +
    • has_header – Does the CSV file have a header row? If schema inference +is run on a file with no headers, default column names are created.

    • +
    • delimiter – Column delimiter character. Must be a single ASCII character.

    • +
    • quote – Quote character for fields containing delimiters or newlines. +Must be a single ASCII character.

    • +
    • terminator – Optional line terminator character. If None, uses CRLF. +Must be a single ASCII character.

    • +
    • escape – Optional escape character for quotes. Must be a single ASCII +character.

    • +
    • comment – If specified, lines beginning with this character are ignored. +Must be a single ASCII character.

    • +
    • newlines_in_values – Whether newlines in quoted values are supported. +Parsing newlines in quoted values may be affected by execution +behavior such as parallel file scanning. Setting this to True +ensures that newlines in values are parsed successfully, which may +reduce performance.

    • +
    • schema – Optional PyArrow schema representing the CSV files. If None, +the CSV reader will try to infer it based on data in the file.

    • +
    • schema_infer_max_records – Maximum number of rows to read from CSV files +for schema inference if needed.

    • +
    • file_extension – File extension; only files with this extension are +selected for data input.

    • +
    • table_partition_cols – Partition columns as a list of tuples of +(column_name, data_type).

    • +
    • file_compression_type – File compression type. Supported values are +"gzip", "bz2", "xz", "zstd", or empty string for +uncompressed.

    • +
    • file_sort_order – Optional sort order of the files as a list of sort +expressions per file.

    • +
    • null_regex – Optional regex pattern to match null values in the CSV.

    • +
    • truncated_rows – Whether to allow truncated rows when parsing. By default +this is False and will error if the CSV rows have different +lengths. When set to True, it will allow records with less than +the expected number of columns and fill the missing columns with +nulls. If the record’s schema is not nullable, it will still return +an error.

    • +
    +
    +
    +
    +
    +to_inner() datafusion._internal.options.CsvReadOptions
    +

    Convert this object into the underlying Rust structure.

    +

    This is intended for internal use only.

    +
    + +
    +
    +with_comment(comment: str | None) CsvReadOptions
    +

    Configure the comment character.

    +
    + +
    +
    +with_delimiter(delimiter: str) CsvReadOptions
    +

    Configure the column delimiter.

    +
    + +
    +
    +with_escape(escape: str | None) CsvReadOptions
    +

    Configure the escape character.

    +
    + +
    +
    +with_file_compression_type(file_compression_type: str) CsvReadOptions
    +

    Configure file compression type.

    +
    + +
    +
    +with_file_extension(file_extension: str) CsvReadOptions
    +

    Configure the file extension filter.

    +
    + +
    +
    +with_file_sort_order(file_sort_order: list[list[datafusion.expr.SortExpr]]) CsvReadOptions
    +

    Configure file sort order.

    +
    + +
    +
    +with_has_header(has_header: bool) CsvReadOptions
    +

    Configure whether the CSV has a header row.

    +
    + +
    +
    +with_newlines_in_values(newlines_in_values: bool) CsvReadOptions
    +

    Configure whether newlines in values are supported.

    +
    + +
    +
    +with_null_regex(null_regex: str | None) CsvReadOptions
    +

    Configure null value regex pattern.

    +
    + +
    +
    +with_quote(quote: str) CsvReadOptions
    +

    Configure the quote character.

    +
    + +
    +
    +with_schema(schema: pyarrow.Schema | None) CsvReadOptions
    +

    Configure the schema.

    +
    + +
    +
    +with_schema_infer_max_records(schema_infer_max_records: int) CsvReadOptions
    +

    Configure maximum records for schema inference.

    +
    + +
    +
    +with_table_partition_cols(table_partition_cols: list[tuple[str, pyarrow.DataType]]) CsvReadOptions
    +

    Configure table partition columns.

    +
    + +
    +
    +with_terminator(terminator: str | None) CsvReadOptions
    +

    Configure the line terminator character.

    +
    + +
    +
    +with_truncated_rows(truncated_rows: bool) CsvReadOptions
    +

    Configure whether to allow truncated rows.

    +
    + +
    +
    +comment = None
    +
    + +
    +
    +delimiter = ','
    +
    + +
    +
    +escape = None
    +
    + +
    +
    +file_compression_type = ''
    +
    + +
    +
    +file_extension = '.csv'
    +
    + +
    +
    +file_sort_order = []
    +
    + +
    +
    +has_header = True
    +
    + +
    +
    +newlines_in_values = False
    +
    + +
    +
    +null_regex = None
    +
    + +
    +
    +quote = '"'
    +
    + +
    +
    +schema = None
    +
    + +
    +
    +schema_infer_max_records = 1000
    +
    + +
    +
    +table_partition_cols = []
    +
    + +
    +
    +terminator = None
    +
    + +
    +
    +truncated_rows = False
    +
    + +
    + +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file diff --git a/autoapi/datafusion/plan/index.html b/autoapi/datafusion/plan/index.html index 53fa3a57d..da7b1c25d 100644 --- a/autoapi/datafusion/plan/index.html +++ b/autoapi/datafusion/plan/index.html @@ -35,7 +35,7 @@ - + @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -787,11 +797,11 @@

    Module Contents +

    previous

    -

    datafusion.object_store

    +

    datafusion.options

    diff --git a/autoapi/datafusion/record_batch/index.html b/autoapi/datafusion/record_batch/index.html index e36e3aa65..473630d11 100644 --- a/autoapi/datafusion/record_batch/index.html +++ b/autoapi/datafusion/record_batch/index.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/substrait/index.html b/autoapi/datafusion/substrait/index.html index a835be508..748f75d20 100644 --- a/autoapi/datafusion/substrait/index.html +++ b/autoapi/datafusion/substrait/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/unparser/index.html b/autoapi/datafusion/unparser/index.html index f6704c9d3..f88e76e22 100644 --- a/autoapi/datafusion/unparser/index.html +++ b/autoapi/datafusion/unparser/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/autoapi/datafusion/user_defined/index.html b/autoapi/datafusion/user_defined/index.html index df04d4b83..0686e59c0 100644 --- a/autoapi/datafusion/user_defined/index.html +++ b/autoapi/datafusion/user_defined/index.html @@ -242,6 +242,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -353,6 +358,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -950,6 +960,24 @@
  • +
  • + + + + data_type_or_field_to_field() + + + +
  • +
  • + + + + data_types_or_fields_to_field_list() + + + +
  • @@ -1087,6 +1115,12 @@

    Functions

    _is_pycapsule(→ TypeGuard[_typeshed.CapsuleType])

    Return True when value is a CPython PyCapsule.

    +

    data_type_or_field_to_field(→ pyarrow.Field)

    +

    Helper function to return a Field from either a Field or DataType.

    + +

    data_types_or_fields_to_field_list(→ list[pyarrow.Field])

    +

    Helper function to return a list of Fields.

    + @@ -1261,7 +1295,7 @@

    Module Contents
    -class datafusion.user_defined.ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: _R, volatility: Volatility | str)
    +class datafusion.user_defined.ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_fields: list[pyarrow.Field], return_field: _R, volatility: Volatility | str)

    Class for performing scalar user-defined functions (UDF).

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for operating on a group of rows.

    @@ -1291,21 +1325,24 @@

    Module Contents
    -static udf(input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, ScalarUDF]
    +static udf(input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, ScalarUDF]
    -static udf(func: collections.abc.Callable[Ellipsis, _R], input_types: list[pyarrow.DataType], return_type: _R, volatility: Volatility | str, name: str | None = None) ScalarUDF
    +static udf(func: collections.abc.Callable[Ellipsis, _R], input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) ScalarUDF
    static udf(func: ScalarUDFExportable) ScalarUDF

    Create a new User-Defined Function (UDF).

    This class can be used both as either a function or a decorator.

    Usage:
      -
    • As a function: udf(func, input_types, return_type, volatility, name).

    • -
    • As a decorator: @udf(input_types, return_type, volatility, name). +

    • As a function: udf(func, input_fields, return_field, volatility, name).

    • +
    • As a decorator: @udf(input_fields, return_field, volatility, name). When used a decorator, do not pass func explicitly.

    +

    In lieu of passing a PyArrow Field, you can pass a DataType for simplicity. +When you do so, it will be assumed that the nullability of the inputs and +output are True and that they have no metadata.

    Parameters:
    @@ -1363,7 +1400,7 @@

    Module Contents
    -class datafusion.user_defined.TableFunction(name: str, func: collections.abc.Callable[[], any])
    +class datafusion.user_defined.TableFunction(name: str, func: collections.abc.Callable[[], any], ctx: datafusion.SessionContext | None = None)

    Class for performing user-defined table functions (UDTF).

    Table functions generate new table providers based on the input expressions.

    @@ -1774,6 +1811,18 @@

    Module ContentsTrue when value is a CPython PyCapsule.

    +
    +
    +datafusion.user_defined.data_type_or_field_to_field(value: pyarrow.DataType | pyarrow.Field, name: str) pyarrow.Field
    +

    Helper function to return a Field from either a Field or DataType.

    +
    + +
    +
    +datafusion.user_defined.data_types_or_fields_to_field_list(inputs: collections.abc.Sequence[pyarrow.Field | pyarrow.DataType] | pyarrow.Field | pyarrow.DataType) list[pyarrow.Field]
    +

    Helper function to return a list of Fields.

    +
    +
    datafusion.user_defined._R
    diff --git a/autoapi/index.html b/autoapi/index.html index b79037d04..f209f86f6 100644 --- a/autoapi/index.html +++ b/autoapi/index.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -443,6 +453,7 @@

    API Referencedatafusion.io

  • datafusion.object_store
  • +
  • datafusion.options
  • datafusion.plan
  • datafusion.record_batch
  • datafusion.substrait
  • diff --git a/contributor-guide/ffi.html b/contributor-guide/ffi.html index 1c61dffea..e48533bb9 100644 --- a/contributor-guide/ffi.html +++ b/contributor-guide/ffi.html @@ -243,6 +243,11 @@ SQL +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -464,7 +474,7 @@
    -

    Python Extensions

    +

    Python Extensions

    The DataFusion in Python project is designed to allow users to extend its functionality in a few core areas. Ideally many users would like to package their extensions as a Python package and easily integrate that package with this project. This page serves to describe some of the challenges we face diff --git a/contributor-guide/introduction.html b/contributor-guide/introduction.html index 255f40973..d9cc00b36 100644 --- a/contributor-guide/introduction.html +++ b/contributor-guide/introduction.html @@ -35,7 +35,7 @@ - + @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -571,11 +581,11 @@

    Improving Build Speed

  • +
  • + + Upgrade Guides + +
  • @@ -351,6 +356,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -427,6 +437,7 @@

    Index

    |
    N | O | P + | Q | R | S | T @@ -479,15 +490,9 @@

    _

  • (datafusion.dataframe.DataFrame method)
  • -
  • __call__() (datafusion.AggregateUDF method) +
  • __call__() (datafusion.dataframe_formatter.CellFormatter method)
  • __datafusion_aggregate_udf__() (datafusion.user_defined.AggregateUDFExportable method)
  • __datafusion_catalog_provider__() (datafusion.context.CatalogProviderExportable method) +
  • +
  • __datafusion_logical_extension_codec__() (datafusion.context.SessionContext method)
  • __datafusion_scalar_udf__() (datafusion.user_defined.ScalarUDFExportable method)
  • __datafusion_table_provider__() (datafusion.context.TableProviderExportable method) +
  • +
  • __datafusion_task_context_provider__() (datafusion.context.SessionContext method)
  • __datafusion_window_udf__() (datafusion.user_defined.WindowUDFExportable method)
  • @@ -603,11 +610,9 @@

    _

  • (datafusion.expr.Expr attribute)
  • -
  • __repr__() (datafusion.AggregateUDF method) +
  • __repr__() (datafusion.Catalog method)
  • @@ -729,30 +728,14 @@

    _

  • _convert_table_partition_cols() (datafusion.context.SessionContext static method)
  • -
  • _create_table_udf() (datafusion.TableFunction static method) - -
  • -
  • _create_table_udf_decorator() (datafusion.TableFunction static method) - -
  • _create_window_udf() (datafusion.user_defined.WindowUDF static method) - -
  • _create_window_udf_decorator() (datafusion.user_defined.WindowUDF static method) - -
  • _custom_cell_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _custom_header_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) @@ -766,11 +749,7 @@

    _

  • _get_default_css() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _get_default_name() (datafusion.user_defined.WindowUDF static method) - -
  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _inner (datafusion.catalog.Table attribute) @@ -780,13 +759,11 @@

    _

  • _is_pycapsule() (in module datafusion.user_defined) +
  • +
  • _max_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method) - -
  • _null_treatment (datafusion.expr.Window attribute)
  • _order_by (datafusion.expr.Window attribute) @@ -825,31 +802,17 @@

    _

  • _type_formatters (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _udaf (datafusion.AggregateUDF attribute) - -
  • -
  • _udf (datafusion.ScalarUDF attribute) - -
  • -
  • _udtf (datafusion.TableFunction attribute) - -
  • _udwf (datafusion.user_defined.WindowUDF attribute) - -
  • _validate_bool() (in module datafusion.dataframe_formatter) +
  • +
  • _validate_formatter_parameters() (in module datafusion.dataframe_formatter)
  • _validate_positive_int() (in module datafusion.dataframe_formatter)
  • @@ -869,12 +832,8 @@

    A

  • (in module datafusion.functions)
  • -
  • Accumulator (class in datafusion) - -
  • acos() (datafusion.Expr method) - + - +
  • +
  • data_type_or_field_to_field() (in module datafusion.user_defined) +
  • +
  • data_types_or_fields_to_field_list() (in module datafusion.user_defined) +
  • Database (class in datafusion)
  • database() (datafusion.Catalog method) @@ -1590,6 +1561,13 @@

    D

  • +
  • + datafusion.options + +
  • @@ -1636,11 +1614,11 @@

    D

  • datepart() (in module datafusion.functions)
  • datetrunc() (in module datafusion.functions) -
  • -
  • Deallocate (in module datafusion.expr)
  • +
  • delimiter (datafusion.CsvReadOptions attribute) + +
  • dense_rank() (in module datafusion.functions) @@ -1817,20 +1801,24 @@

    E

  • ensure_expr_list() (in module datafusion.expr)
  • -
  • evaluate() (datafusion.Accumulator method) +
  • escape (datafusion.CsvReadOptions attribute)
  • +
  • evaluate() (datafusion.user_defined.Accumulator method) + +
  • evaluate_all() (datafusion.user_defined.WindowEvaluator method) -
  • -
  • evaluate_all_with_rank() (datafusion.user_defined.WindowEvaluator method)
  • +
  • file_compression_type (datafusion.CsvReadOptions attribute) + +
  • +
  • file_extension (datafusion.CsvReadOptions attribute) + +
  • +
  • file_sort_order (datafusion.CsvReadOptions attribute) + +
  • FileType (in module datafusion.expr) @@ -1943,14 +1949,14 @@

    F

  • (in module datafusion.functions)
  • + + - -
  • from_pycapsule() (datafusion.AggregateUDF static method) +
  • from_pycapsule() (datafusion.user_defined.AggregateUDF static method)
  • from_pydict() (datafusion.context.SessionContext method) @@ -2073,10 +2073,16 @@

    G

    H

    @@ -2441,6 +2447,8 @@

    M

  • (datafusion.ParquetWriterOptions attribute)
  • +
  • max_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter property) +
  • max_width (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • maximum_buffered_record_batches_per_stream (datafusion.dataframe.ParquetWriterOptions attribute) @@ -2477,19 +2485,15 @@

    M

  • memory_schema() (datafusion.catalog.Schema static method)
  • -
  • merge() (datafusion.Accumulator method) - -
  • +

    Q

    + + +
    +

    R

    + - @@ -728,14 +748,30 @@

    _

  • _convert_table_partition_cols() (datafusion.context.SessionContext static method)
  • -
  • _create_table_udf() (datafusion.user_defined.TableFunction static method) +
  • _create_table_udf() (datafusion.TableFunction static method) + +
  • +
  • _create_table_udf_decorator() (datafusion.TableFunction static method) + +
  • _create_window_udf() (datafusion.user_defined.WindowUDF static method) + +
  • _create_window_udf_decorator() (datafusion.user_defined.WindowUDF static method) + +
  • _custom_cell_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _custom_header_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) @@ -749,7 +785,11 @@

    _

  • _get_default_css() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _get_default_name() (datafusion.user_defined.WindowUDF static method) + +
  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _inner (datafusion.catalog.Table attribute) @@ -763,7 +803,11 @@

    _

  • _max_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method) + +
  • _null_treatment (datafusion.expr.Window attribute)
  • _order_by (datafusion.expr.Window attribute) @@ -802,14 +846,30 @@

    _

  • _type_formatters (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _udaf (datafusion.user_defined.AggregateUDF attribute) +
  • _udaf (datafusion.AggregateUDF attribute) + +
  • +
  • _udf (datafusion.ScalarUDF attribute) + +
  • +
  • _udtf (datafusion.TableFunction attribute) + +
  • _udwf (datafusion.user_defined.WindowUDF attribute) + +
  • _validate_bool() (in module datafusion.dataframe_formatter)
  • _validate_formatter_parameters() (in module datafusion.dataframe_formatter) @@ -832,8 +892,12 @@

    A

  • (in module datafusion.functions)
  • -
  • Accumulator (class in datafusion.user_defined) +
  • Accumulator (class in datafusion) + +
  • acos() (datafusion.Expr method)
  • + - + - @@ -748,30 +732,14 @@

    _

  • _convert_table_partition_cols() (datafusion.context.SessionContext static method)
  • -
  • _create_table_udf() (datafusion.TableFunction static method) - -
  • -
  • _create_table_udf_decorator() (datafusion.TableFunction static method) - -
  • _create_window_udf() (datafusion.user_defined.WindowUDF static method) - -
  • _create_window_udf_decorator() (datafusion.user_defined.WindowUDF static method) - -
  • _custom_cell_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _custom_header_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) @@ -785,11 +753,7 @@

    _

  • _get_default_css() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _get_default_name() (datafusion.user_defined.WindowUDF static method) - -
  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _inner (datafusion.catalog.Table attribute) @@ -803,11 +767,7 @@

    _

  • _max_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method) - -
  • _null_treatment (datafusion.expr.Window attribute)
  • _order_by (datafusion.expr.Window attribute) @@ -846,30 +806,14 @@

    _

  • _type_formatters (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _udaf (datafusion.AggregateUDF attribute) - -
  • -
  • _udf (datafusion.ScalarUDF attribute) - -
  • -
  • _udtf (datafusion.TableFunction attribute) - -
  • _udwf (datafusion.user_defined.WindowUDF attribute) - -
  • _validate_bool() (in module datafusion.dataframe_formatter)
  • _validate_formatter_parameters() (in module datafusion.dataframe_formatter) @@ -892,12 +836,8 @@

    A

  • (in module datafusion.functions)
  • -
  • Accumulator (class in datafusion) - -
  • acos() (datafusion.Expr method) -
  • + - + @@ -732,14 +748,30 @@

    _

  • _convert_table_partition_cols() (datafusion.context.SessionContext static method)
  • -
  • _create_table_udf() (datafusion.user_defined.TableFunction static method) +
  • _create_table_udf() (datafusion.TableFunction static method) + +
  • +
  • _create_table_udf_decorator() (datafusion.TableFunction static method) + +
  • _create_window_udf() (datafusion.user_defined.WindowUDF static method) + +
  • _create_window_udf_decorator() (datafusion.user_defined.WindowUDF static method) + +
  • _custom_cell_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _custom_header_builder (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) @@ -753,7 +785,11 @@

    _

  • _get_default_css() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _get_default_name() (datafusion.user_defined.WindowUDF static method) + +
  • _get_javascript() (datafusion.dataframe_formatter.DataFrameHtmlFormatter method)
  • _inner (datafusion.catalog.Table attribute) @@ -767,7 +803,11 @@

    _

  • _max_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • _normalize_input_types() (datafusion.user_defined.WindowUDF static method) + +
  • _null_treatment (datafusion.expr.Window attribute)
  • _order_by (datafusion.expr.Window attribute) @@ -806,14 +846,30 @@

    _

  • _type_formatters (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • -
  • _udaf (datafusion.user_defined.AggregateUDF attribute) +
  • _udaf (datafusion.AggregateUDF attribute) + +
  • +
  • _udf (datafusion.ScalarUDF attribute) + +
  • +
  • _udtf (datafusion.TableFunction attribute) + +
  • _udwf (datafusion.user_defined.WindowUDF attribute) + +
  • _validate_bool() (in module datafusion.dataframe_formatter)
  • _validate_formatter_parameters() (in module datafusion.dataframe_formatter) @@ -836,8 +892,12 @@

    A

  • (in module datafusion.functions)
  • -
  • Accumulator (class in datafusion.user_defined) +
  • Accumulator (class in datafusion) + +
  • acos() (datafusion.Expr method)
  • + -
      @@ -2874,7 +2904,7 @@

      R

  • replace() (in module datafusion.functions)
  • -
  • repr_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute) +
  • repr_rows (datafusion.dataframe_formatter.DataFrameHtmlFormatter property)
  • reset_formatter() (in module datafusion.dataframe_formatter)
  • @@ -2936,12 +2966,8 @@

    S

    +
  • schema_infer_max_records (datafusion.CsvReadOptions attribute) + +
  • schema_name() (datafusion.Expr method) @@ -3058,6 +3094,8 @@

    S

  • show_truncation_message (datafusion.dataframe_formatter.DataFrameHtmlFormatter attribute)
  • +
    -
  • TableFunction (class in datafusion) +
  • table_partition_cols (datafusion.CsvReadOptions attribute)
  • +
  • TableFunction (class in datafusion.user_defined) +
  • TableProviderExportable (class in datafusion.context)
  • TableScan (in module datafusion.expr) @@ -3250,6 +3286,12 @@

    T

  • (datafusion.expr.Expr method)
  • (in module datafusion.functions) +
  • + +
  • terminator (datafusion.CsvReadOptions attribute) + +
  • to_arrow_table() (datafusion.dataframe.DataFrame method) @@ -3260,6 +3302,12 @@

    T

  • (datafusion.expr.Expr method)
  • (in module datafusion.functions) +
  • + +
  • to_inner() (datafusion.CsvReadOptions method) + +
  • to_pandas() (datafusion.dataframe.DataFrame method) @@ -3336,6 +3384,12 @@

    T

  • trunc() (in module datafusion.functions)
  • +
  • truncated_rows (datafusion.CsvReadOptions attribute) + +
  • TryCast (in module datafusion.expr)
  • types() (datafusion.Expr method) @@ -3350,56 +3404,22 @@

    T

    U

    - + - + + + + - + + + + + + + @@ -898,6 +1016,54 @@

    Module Contents +
    +class datafusion.catalog.CatalogList(catalog_list: datafusion._internal.catalog.RawCatalogList)
    +

    DataFusion data catalog list.

    +

    This constructor is not typically called by the end user.

    +
    +
    +__repr__() str
    +

    Print a string representation of the catalog list.

    +
    + +
    +
    +catalog(name: str = 'datafusion') Catalog
    +

    Returns the catalog with the given name from this catalog.

    +
    + +
    +
    +catalog_names() set[str]
    +

    Returns the list of schemas in this catalog.

    +
    + +
    +
    +static memory_catalog(ctx: datafusion.SessionContext | None = None) CatalogList
    +

    Create an in-memory catalog provider list.

    +
    + +
    +
    +names() set[str]
    +

    This is an alias for catalog_names.

    +
    + +
    +
    +register_catalog(name: str, catalog: Catalog | CatalogProvider | CatalogProviderExportable) Catalog | None
    +

    Register a catalog with this catalog list.

    +
    + +
    +
    +catalog_list
    +
    + +
    +
    class datafusion.catalog.CatalogProvider
    @@ -941,6 +1107,33 @@

    Module Contents +
    +class datafusion.catalog.CatalogProviderList
    +

    Bases: abc.ABC

    +

    Abstract class for defining a Python based Catalog Provider List.

    +
    +
    +abstract catalog(name: str) CatalogProviderExportable | CatalogProvider | Catalog | None
    +

    Retrieve a specific catalog from this catalog list.

    +
    + +
    +
    +abstract catalog_names() set[str]
    +

    Set of the names of all catalogs in this catalog list.

    +
    + +
    +
    +register_catalog(name: str, catalog: CatalogProviderExportable | CatalogProvider | Catalog) None
    +

    Add a catalog to this catalog list.

    +

    This method is optional. If your catalog provides a fixed list of catalogs, you +do not need to implement this method.

    +
    + +

    +
    class datafusion.catalog.Schema(schema: datafusion._internal.catalog.RawSchema)
    diff --git a/autoapi/datafusion/context/index.html b/autoapi/datafusion/context/index.html index 677e2937f..fba3608b3 100644 --- a/autoapi/datafusion/context/index.html +++ b/autoapi/datafusion/context/index.html @@ -467,26 +467,6 @@ -
  • - - - - CatalogProviderExportable - - - - -
  • @@ -1015,6 +995,15 @@
  • +
  • + + + + SessionContext.register_catalog_provider_list() + + + +
  • @@ -1262,25 +1251,22 @@

    Classes

  • - - - - + - + - + - + - + - + @@ -1314,19 +1300,6 @@

    Module Contents -
    -class datafusion.context.CatalogProviderExportable
    -

    Bases: Protocol

    -

    Type hint for object that has __datafusion_catalog_provider__ PyCapsule.

    -

    https://docs.rs/datafusion/latest/datafusion/catalog/trait.CatalogProvider.html

    -
    -
    -__datafusion_catalog_provider__(session: Any) object
    -
    - -
    -
    class datafusion.context.RuntimeConfig
    @@ -2115,10 +2088,16 @@

    Module Contents
    -register_catalog_provider(name: str, provider: CatalogProviderExportable | datafusion.catalog.CatalogProvider | datafusion.catalog.Catalog) None
    +register_catalog_provider(name: str, provider: datafusion.catalog.CatalogProviderExportable | datafusion.catalog.CatalogProvider | datafusion.catalog.Catalog) None

    Register a catalog provider.

    +
    +
    +register_catalog_provider_list(provider: datafusion.catalog.CatalogProviderListExportable | datafusion.catalog.CatalogProviderList | datafusion.catalog.CatalogList) None
    +

    Register a catalog provider list.

    +
    +
    register_csv(name: str, path: str | pathlib.Path | list[str | pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) None
    diff --git a/autoapi/datafusion/dataframe/index.html b/autoapi/datafusion/dataframe/index.html index c5697fafd..75b0c0c40 100644 --- a/autoapi/datafusion/dataframe/index.html +++ b/autoapi/datafusion/dataframe/index.html @@ -1449,7 +1449,7 @@

    Classes

    Module Contents

    -class datafusion.dataframe.Compression(*args, **kwds)
    +class datafusion.dataframe.Compression

    Bases: enum.Enum

    Enum representing the available compression types for Parquet files.

    @@ -2504,7 +2504,7 @@

    Module Contents
    -class datafusion.dataframe.InsertOp(*args, **kwds)
    +class datafusion.dataframe.InsertOp

    Bases: enum.Enum

    Insert operation mode.

    These modes are used by the table writing feature to define how record diff --git a/autoapi/datafusion/functions/index.html b/autoapi/datafusion/functions/index.html index bc1a0b1f8..3ca535bb4 100644 --- a/autoapi/datafusion/functions/index.html +++ b/autoapi/datafusion/functions/index.html @@ -2056,6 +2056,15 @@ +

  • + + + + regexp_instr() + + + +
  • @@ -3110,7 +3119,7 @@

    Functions

  • - + @@ -3169,184 +3178,187 @@

    Functions

    - + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3515,7 +3527,7 @@

    Returns:

    For example:

    -
    df.select(array_agg(col("a"), order_by="b"))
    +
    df.aggregate([], array_agg(col("a"), order_by="b"))
     
    @@ -4301,7 +4313,7 @@

    Returns:

    For example:

    -
    df.select(first_value(col("a"), order_by="ts"))
    +
    df.aggregate([], first_value(col("a"), order_by="ts"))
     
    @@ -4413,7 +4425,7 @@

    Returns:

    For example:

    -
    df.select(last_value(col("a"), order_by="ts"))
    +
    df.aggregate([], last_value(col("a"), order_by="ts"))
     
    @@ -4810,7 +4822,7 @@

    Returns:
    datafusion.functions.min(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) datafusion.expr.Expr
    -

    Returns the minimum value of the argument.

    +

    Aggregate function that returns the minimum value of the argument.

    If using the builder functions described in ref:_aggregation this function ignores the options order_by, null_treatment, and distinct.

    @@ -4862,7 +4874,7 @@

    Returns:

    For example:

    -
    df.select(nth_value(col("a"), 2, order_by="ts"))
    +
    df.aggregate([], nth_value(col("a"), 2, order_by="ts"))
     
    @@ -5044,12 +5056,22 @@

    Returns:
    -datafusion.functions.regexp_count(string: datafusion.expr.Expr, pattern: datafusion.expr.Expr, start: datafusion.expr.Expr, flags: datafusion.expr.Expr | None = None) datafusion.expr.Expr
    +datafusion.functions.regexp_count(string: datafusion.expr.Expr, pattern: datafusion.expr.Expr, start: datafusion.expr.Expr | None = None, flags: datafusion.expr.Expr | None = None) datafusion.expr.Expr

    Returns the number of matches in a string.

    Optional start position (the first position is 1) to search for the regular expression.

    +
    +
    +datafusion.functions.regexp_instr(values: datafusion.expr.Expr, regex: datafusion.expr.Expr, start: datafusion.expr.Expr | None = None, n: datafusion.expr.Expr | None = None, flags: datafusion.expr.Expr | None = None, sub_expr: datafusion.expr.Expr | None = None) datafusion.expr.Expr
    +

    Returns the position of a regular expression match in a string.

    +

    Searches values for the n-th occurrence of regex, starting at position +start (the first position is 1). Returns the starting or ending position based +on end_position. Use flags to control regex behavior and sub_expr to +return the position of a specific capture group instead of the entire match.

    +
    +
    datafusion.functions.regexp_like(string: datafusion.expr.Expr, regex: datafusion.expr.Expr, flags: datafusion.expr.Expr | None = None) datafusion.expr.Expr
    @@ -5447,7 +5469,7 @@

    Returns:

    For example:

    -
    df.select(string_agg(col("a"), ",", order_by="b"))
    +
    df.aggregate([], string_agg(col("a"), ",", order_by="b"))
     
    diff --git a/autoapi/datafusion/index.html b/autoapi/datafusion/index.html index 21512f265..49b2d73fe 100644 --- a/autoapi/datafusion/index.html +++ b/autoapi/datafusion/index.html @@ -442,6 +442,109 @@ Package Contents +
  • + + + + TableFunction + + + + +
  • @@ -2931,6 +3164,98 @@
  • +
  • + + + + WindowUDF + + + + +
  • @@ -3021,6 +3346,42 @@
  • +
  • + + + + udaf + + + +
  • +
  • + + + + udf + + + +
  • +
  • + + + + udtf + + + +
  • +
  • + + + + udwf + + + +
  • @@ -3085,6 +3446,18 @@

    Attributes

    + + + + + + + + + + + +
  • with_pretty() (datafusion.unparser.Unparser method)
  • +
  • with_quote() (datafusion.CsvReadOptions method) + +
  • with_repartition_aggregations() (datafusion.context.SessionConfig method)

    @@ -353,6 +358,11 @@ datafusion.object_store

  • +
  • + + datafusion.options + +
  • datafusion.plan diff --git a/objects.inv b/objects.inv index a9e3c5ffe2ce5adf3ffb34eccbc0c0e9e742b273..0f2e7e824db867e817d3d0061b4572e34918ea2b 100644 GIT binary patch delta 9111 zcmV;IBWT?3M9@c&hksjl+cvhx-}NcH)|^+X({wuPta(cur{hkVcM3ZHunBZ6C?jME7s+?Z^^@>zlkdpn7 zwLkyBct*GLwJ!3%_+Z!nb9Fu22bkZOKXb9NoHQp&UHv$KIe-5CJV_)iWsPbVxV ziA|>3JW!H-EVcQUnqKdFn0YFSf^r>KY5T~G=B!|*ARwVsrKF^g#3jpVVv=7bIo_iRJM{x&FllyVscnMl?CHO3(yLug~=7} zD=|cOJJ+(}=7UGGM2aWS40vLCopickkmx#SuOo)T?ti;tIOfUD7+9j$9Rsub9Wore z-zCFwk9W#|{9d;V$89@iIArul?}8&VQ;tGhMShlaxcnF=NWaa0iS_Z1|YLK%cslqDV?9w16UZyPL{K)bL9x^)3!< zhHcRiEoDT7E~Tl*B+KHev8Qkd3jGEESy2#(DRWvtkTd{<@r|i(0H7Qqb8?876au2g z6jcsD;SjkZBmhLV%`xI5P?I@XOoLdMUbu*4q=XC3Qj)uk#Aukz7&qNwbhnWb72A^1g^Wf}md7I2 zM8cG|C6UzbL<8YuEJ5T|!9gG(l`ncs05Bv-MQokR=t@!=o0MkF2OwX8h7=Hk3A!!g z2{L{JyEN@kNJe5ihb7Bxzso@|RSpoHsDEue56Mm5Mt>uhxe(DYu`84nXIssp8v)}? zrzE!aF_mzkA&Sb9ASm&bkE!oeMlP++LB43Y>8K!PQZ)yp*K;hm)NzpHnMNMnb=8!_ zZMqo_ahqh3%-Fh^i`9>Rjc2@yMm$A#qdCCXzQ}%#B)H9XEh*6jjh@;HGk67R41dlZ zB3ZG8MqfmETQK>(clZ`qW!2I?7{q2XhQELh<>*MdY4}Uz|eY%CgJ>1^Ee|-}NdoNaY zbvVkRtHS`;>(BEMBs-?(M*ShLY%u=yevra=5!UqZRH^v$B0&#=m}ERhv>wt-jZoE(6M zXDqdU5V^xE1j^9pkoJM53T~gv5}oTs^~E6F$`B-(!?A8Ma*Wq*ls(6O7DDc zzY7w{$F||e=AtLrymaN907lQ9lc8G;4aJBkd^{}?k|!5&o$iAfp0I-6^39uy<@JH% zX|?B&WQKEm$yR3YXn#tE`$cHDc-H6LnfjU(gquNwwEt*3?}_;vpb}%r7Q(MbzX-`# z5@zw%AgL502j^ScxNMiyzJgFBG%d^K1h{u1wkDV{?5%YRB z1k;{6T$ge`1FCCFQPWGOOMe0F@A_m#HBeH0KK6%( zU|2t`PBOYARjwOvVeVLL?4tD%wF}8Gz7(<`&Wr>BU;5#7QkqFYJu3xcOS-p!AuH28 zuSnY)p@_JixnLZ=YCTg?DM3ug7r_we)#EmK8pw8w45_)L0F}ePB-GiQS^jZfScKBKc40QZ@1bdzr zT#Lq&!yUtpXNNk9oj@MzICi|mI7hPM`9U66$79j+1%H>D;AG3a6dN|YW;B_5feP75 zT}Rq$YIB zhL5yQWTRv@c+cC%qF3-%NIY?CA`@UQJXzvGDY*b0r=A{Y0N2-$>HbI>!e?Xra=>VI z=<>i=@PC-)g0bwd<%6-*(B*^xuHT)R;sbW?AY z3L;u>yj4WB-c`>5Q|oh?XeOCBm&RMktN2%9uz+?axPB zZA?XvwBm@8iMHy9Qhy=Y@m3#EawDxkqO_)3g@B2UvJ!z+4YC>mlMJ#V0aFXIDgjdq zw0|;*(i?4cGDWSKcmscG+&_EMtlXbQ-d{+Sq#~m!OB(=T%?;U zV4k}RAx2)s6)!mD2ByiXp=|#*(H_Cv4z}iLwI~wy?=s^Z~;gl=au&cVn*0RA!~@7NNkOrJyndY zk%w%^P1RWCVqrS1x?e$&Fui4#kj=1@*f@n$ZEyv?D8X?R>M0to2yXjszaPj2UaK7L zD_lSkwVKr;p?j^-LdbQxR>_?+<<+ICo>+XLsZNv@@&ao3jkXr*yJ5iByHIJ>Gk=|n zHQ*{E%S)(SL_}Xi<>>+{8%FVlx2nGXn`L+s-*Qa0ceLK|R)ivi+vLX>m`&Ai*>qwV z3{KP;86jF#oZug>wskvBh*hxu(#aVsp*G;KolqNee$#iScP68b;zPLeHxC~_y}t`s zBAG7n%YX0gQ3c-r_ixzzU8(y`CPlUANS5A3+fUBW>`eD+S+pJzWAjv%+>=Ci5NM zhDMWU_M|D6KuXLU4G%s%fSSw}c}`Pod=hqdV5~~JeKu_KH(jdYXt~vN*?*=}a*YB{ zN2TV|hE`$yTp0BG*?|Y%)HRteMTy0x+mx2tTD##XxV@>4!%lpaOSC($Xs1CT`>oSe z44t9jgD-B35D2)@aVmXH30nC&+ewA^B{BjcXwhk^fVIrRWG4a*-?~Lcfse40n5tpd z$qM$JX2~VgOn0YD-}lWfIDg@Nq&t>z7m!F6yJSs7W|6POr*Ap4gnfe_=D$pVsaWo_`W z1S*c$Svz=wJ^QIRrwYBV^M^oC*91BeW-e_lQL_t3;pLd~zaL;U3mu~e6jBV;8lMB`q~R=0%T>&z3($jC=^6LmQG;^yLc6TFC!d;?epeQ|e_S@`Y@O zwG1s^utnF?8-Mkp6;jTg9~)H+mU62!@VO-IZ9%i`CUS4r5O8 zKu5v07FQ_aCtw&+SyQ%J>z9s2?J{<;(^S25T$--zyjyzIC_J(3g=+@mFW#lM=g#{R z?U!h??zqzn*9&EbKgY+bFOnyn_&gu4zD$hP)+ErcZ+}_CtAZ*;R`ez7u+qB&&lxWj zlgipZuZdj+c9FVJ)Ar-!N2?fkTM>@vyq!I`)L)>Eo{B`>SS}QewgUX-UF@T0{-NN! zoh$XaarBz^EFSK9*UNoLp6RR0>R-0Wy=+^1=|+}Fx|CF{_mAuoDk)Ft@P$AC`Wuq7 z%x>x|>VG>IE~mIpvfb4)`CL!FFBgMSD5lwlT4(;3P@Z(_Q@rf6{tH{s)aXk~q6)Sr zzs_vc*)YRD$8&iDyyon&ieKbLJ1OL}EC}ci#b$_=f5yN&yn~hFPnT z+qx{{SU2_k+3}RH3#dlYtQQG7Vi#a6o(^9fKYtb}^qR^iHheAlSn$)Dav-J#DDr@7 z1H(Aw?vnuEICHt1y^nZ6-2TpI2o)tmH}&o<1oO@Yf`a|#mPB7Y@XNOubbQoYqfDGzemxV=>mLTb2#m zl#StWSRVZbid#`&T%e=6F-#4LWB#%nNMsJ1i8*ZS%#;z9SLL8Q4x4*Ig5qS`AplHv zS|*2Q2KiSU17ztsElOBsTNeQn-quGzW`9$O0FkO%fHSqMXvQ|s+%~E}#omi14AVLK zsC};N%An1|U^rPQu!xdWz{1vWv}Q#Ph9)K1B^fK=kzw9SMq=GJ~1Ra8Q*p21sKZ6b4v`6A%6g4XK!JtINNFl*yI>zIwf%RnyG{f4O`5X3Cn}5 z)=Yh;!&iw0}N2R?E@3*utqm~?;u!VrV!vwPe^wr25#&nHh^W^^?xD{2i+M6 z4?CY743#8fgv0e;l3Ir_fbpYS?;6FP3L`vINMsE-kg{aE$_EDo?K1q$1F#b-wI;7# z{S6fN^WPzHKm9Lg?0)_c?(?G9idTTe3%G&{x_}#UA3`|n8zjuMFTP5k$6k;N)}ZUv zS|n?4E(wL(5NSRma3uoT;eWMzsvxwgECELfb;iN=#!n`YcuMv+8An6wYoz1t+upI9 zeyYEX(WH89CXVxq^^jlJ%ipy8%Fbk`+{}KJ%|!JaG^jPy(S+2bQ#71p}ho2yVXOgnvQUj9VT|9|hAJ zyl*`B#$wvxO&sWhJx#|p04e(*0Mhl*&EMK%C9fsG8J+uP0$+PEj-=%zrEAd~G>e3} zOX?^DNPM9{rx+e+T1jQ<#J^!aHV^%~{^DSdW|~hV+?UYvezzkxkaHVmw z?!PERYlCaIH3{hSwmY?D`T~F+>XW^QkND45no^~H6Bz}?n(<_n&0r27Qpn39q zhYO&mYvA22DM0MuUJ@YsaGeMY4O5Lg>s=E&kUHS6D1;n8bh*xpjB}Y%ai$dp-fc!F z3sJ$impH_`)lD2cT5WUqH%*k`s)<9+eR;Myf)Hz$@nX4DR0HR^$1|0f*_kvwp7pYc zC9xFt`ZS>7^M5gcQqq)WhyoRNrA$F;KIO_fv1*3@=Upw01SZX;&{5RpWi{lssSP;n zyQvM@oI5)o!=vQW$l8z^nz;stHWLg`Xjw|J?HR@);0tQ)L6G3)(_*IBn$;I(Tt>y4 zzCE>$xIq=|Nih^?LRKpzu=&FKPZ>NrB^n7VI2yaL-+#m)Behk3=reD9K60i!G2plt6lnIup4hKkZgY&7W|~a z-#A6!Kfw;{F0aHOW5pOJ!ZfXoOJS+4`!855SJb+g24B3)*owk8Xq0U;$}vie@=UqC zaer{|wuDEbZ0q%Wnt_5%poH6S+W0Ypq~>G=kHl(Wc?!P1l2ekwGnX2kiLsWD(~TJ+tTlxni#q3S zIL1;Ajj#&fxhM+^JvV;{U>rj!2S>7#@_%d;Tc#R~GUjn?B(t5Gjbyds=om&j2d*K( z(HyPaU>Uvi;7C!&F?sQ9EQ^;t9mU|q;c@I;I%o{Di!Poc!7+?o8Z?HjOP7t9=SY?= zH66py#i3E`Ts#@U%*BDxtXv!&#mFUxCyEsU(!2fzhQ5Ml){cNdp(Vlu4r3?3Ab(#? zKZbGQ#gQ@gKpYrj-K8K~aHRL-42q=it2j6Z#0vOPz4fS=*$%scpNeq8H{joM?$73e zBJ~<)AFytgKQl3z(SuAUKI<3 zFFwL5fW%k@*x&R4P4yRk08{IGKY*$A^&gS*?-&<0?M?W zBynu#l+H4`!J%Tt^_9>IT4DcqQ2n{SOd#YR$KSVIl{&b z#>f@rG(~$G6ezS};FAG_lYd-D=eV#=aW!1{jfyw&_u>-##MYM&)bAq#8YFNfTH z_CpW*{A9eW^bphq3S`aSi_|%Rzq9|k&#RT6#hmf%`wSn-oi8euXNhhu-#F*?b-IZ4 zz$>JrsWp#maw}SCQJ;Sw&UYI!H1loP`5W^emw-o6$&?1={-H=PeSdrzOqZHg5Bc&vf5M=t0zhi~v>^BjrcjntCI#7=Ofw_447G6FFtl?)QYvy>Jt_;vi5938Tnm$neE5#> z=>m2kjA)wK>tIkb%w4_E`3#{X$BFblM0hg$PZ6HR$&V4TWbbo?tkwS@;feJ>Nq9QP zKT3#tz0VS!PJjDh!jss4ny@vFf1L1CPko*c6?-2jM4e|}kT|U}CxgpoHq7u0%Z8fY zZfROs&HI{rW_ERm9pnXH9yoz)@8E6nV&I!Ro}R8*o=M8#D$D2mwOs{%MB#>@;+4@2Ye?)t@yNwk*%)x;k zI9ATKvwxjSB67kW?fu{dZfSW9TV{620==yEa@Il8;no6g1|JIDgNmqSjq-?Gp(&!d-l_*y-Ul#3>@E zDY#_(tve>Ds#9?@q*TMEkxjVaUa<)|e`{h}J3~BE8;^kph^D$MNtF+Nh9;r+ksjz( zCef?(Yqr3Mcd=97atv@OlwQf<8a;(=qRfUD*~gGScd9c`rE8G>vt#>j*oD28-76AM z9V2zjh;D^0qVxq)Qk5B&%F1*(D+B-h_8msCckpKVl#)Cjo<0Exg{=n13so6ehV&w_ zLVm?^my%LdIeJByH_5^jx!smRwnpBF^?z!yD>8NC3eY?>tp^Y`vCDhH2 z*5{Lbm@FkJ5R;5EDQVfLW2vqR-hVi%qf!rO>XJbkM4i*a9YJ-JZKqW)`X?N_0?rd| zT|l^<7H2u-jv**y%_@7s8X)df@TZu2ttLTe3aE3;BP#tlW~UXPwDaWQ{5jr9O!Iy0 zmHv4fvMCbwxoaoP(3Kad4gtEgJZz#A~8=r)Uyuq9M?;?PiyLVtaVpf<~# zwoH`H{*jXf&9AP1ys|G{uPT<&AMEit!LP05IPvEwI&Z0l^?Ltob|ez1`7;+QukWNX zky@dlu#SJ#Nqzn6Q4zs4-RdxrZrJA{{?}t7?oT`X3X(Yp{Y6O}qh6Gb z%I`xSiwND8Vaoe}&!p^6vwva#Q3C?UyiHvl^ItU!bSyQXchVQt)k*hOvr~4!15!uX zvjCSsgWMw?gszTyE1I2m1r;Q8Mq?J}C?`ngh;N;%lRkZBXI#V#sfkkxVix4sV}O6c z6UfyGFC(*|^KCZ(3s}qBbR`Vpg!+3pvclAJ*R8pSOnfahD z*{YI5LybC~DxpQqRSXr~@_l9spye!rCviZp** z*RNl9UccXc{OQWi{5ntFyY5i>Y(@FL%Cthw(-`!i4>Bx)b zaJCd1X1xQP;q*i9k&biie!XrvH}2_`+l{)qub*03cktD=^Q{eQrnnUeYa+Wv03G#9qhLXsmD_TbHD?dj^~_M^`#(*fHngVZc|Qg{Ly zFq7=fBhS9-VtCE?QUt5*U-4RR?7y!*wgG0LU30MFVSjht>&(x-*-m7Fwf3%iozlB@ zCUo|#XFcX{=%!ZKAA@u6i(n(t;zE0!U+tgg*@{{_=4-;U>m|!|-J6E!JbSZATV561 z^bz*g;j~rR(jm)hS8_+Y;~c%*aKZLWfE-fN%-A9KCk1~ zS;Lj;@PA&*ui~Cc(&51H82)frcrYmJgtbH0Yvp|Ho{DWZ$bM*WkcOdN+$#chOY->Ab0Nd1gQSG z?!WDyv*#nIGcPyeD?hG!HikO=W;4KYBdh*T=YPtpKcm0r{*C2daBB|Lp1) z_sk*vU@1xK@x;jiWoPj5m;K}G_PySKq=vc;h;F+-27cD^yZBzu(d!YKP50g>Icz@H V?GOk5;{S2I=RE5e{~ww-c-;pD#2o+t delta 8734 zcmV+(BH`W8NAE+w> zF>8PRk@1YKr%PSrKlo&q|95dY*(R7?rD;`EInhE|R+5AkP(bQ#( z>ZQnHXa$uEAe7QzxvI)6j7l%qtS1@VcAPFqG)`s zGHTv9Q<};|rGHCWka%Q43n4d2=Xv9JoD@{WW5AyimXkz2=FPjOHb3_A;QP&=@1)7Y zAChVMq15K08r^&j(x!9bVm)P`NLs9)lN(wEYh<_!Kn%RFPsi=HL4ZoyPZ{omO z#AmdW5f!?WrXG_li>t<-!XYU18vtZMK_I5gX#qjf01(DkroI7ya)_6cL*&E^iy$af z4nW}$Z$(G|h-{l<#7CeeaVS#sm(F8Yx=f1_g4EWX=tpboPc*41{%DY@W+enFuZAs}&Mk6T8V-ZUt zVM^PQNNQ)?fN(OFAo8l71yInRZN&WW9&tTGUIUv2BW5GQg2YEcx$fLWinvy&- zy-W;;xJ9x^W^7%|#p0*G#53MRBc7wX(Hy|GFS1`E3AT?(w4_8AG z9XyM*C&VhcoVJTr(YYx%=2o6q|DxE>m474|BRsaJkkq^%6`dEl_Rc$YDUa|>f%0^; znP7Q#z9kj|&|o{R3$dgndGqG40FYn)77zLP?*KXZ<)_$gS+NDLqKhbcJ`7+wOo`~J z4fQP^VQM^IBrx_w`~)As{GJxclCI++D`EzR(cepe4y9eOiC|P^8U2;4UkF6c_J3@C z7thIDMxpMwqEde-M>};ifa%r4!|nTFlB*9L2gk#>+}87*@Pz z*d8sq=YJsbTSfJ?n--6C8$AS@&VO=Y3dGO#C6tp{PP3@y)2}iwOJoI}t>6_>QIwLZ zW*Z7DJY%W-gUAhDAyA%*%-Cq~WV_kK&XA=FGWX8ASpwDi9oW(6nZ0|)*ZKa`! z8M&K_G-s*+&pS%>KcN6r{ZA+e?mf-nW$G0`cb9cr;wjOzGfjk|rb?Q!Ie$w*9On-U z*;zB1)zd<-Z2P;ZzYCgJXA$QuZH8e5(}+@veWz$5D1G5k4fp0Sp9iwv-6a=f?aF*1 zMOC_IK+#}DRV1@&KBv-DVM$XVO-&}+n1w1S?WP|)DO})bH=T3mVO{ql5n8JH%F4w1 zU3C{SfJN{>m|YF@e$;O}a(`68-DCt^d$Q(T{$O!*>n43=vqTVF)|9DPfLX4$yr>d`)JG) zR?u6%dRwtPqvLl{y&xHLj?dY`7>}l8xSxcE%jeWBZf8t=O$x$|(SIQAKibZFEHLUP&<kQTS*&{2>M5BVSkVAaoybj-?)aOa-mh^ z&fc2EIHwW-lYE-Z9Szk?pm`EF*vhDVwIPWU%CTZgezo7saP5V5MO10(HpF?f0 zCQ;T(57>MP&8R-kS#nRJ%Je+GF1Ne}H!g2~xE}3Y;}bNh?sOOcCEcajj?wum+1)5H z{rW!CIhrSKJbwuXb^czE(0z}s(KW_HV+K?$0ibW_vS4b9W7SQ!erZvi!YL|5kI>=U ziqn|eaZY|6D7R*HZrACY&rcHR&DbGV+4CHxDuNALx5OrM<2cCUdw|NE7rfL zGMama3fW4XP3Sy)=n~&XBn2sGk3;By8?bfG-o9zDKDfqr>ZNXG3_$Z=cazX{rKY3Q zjVbagL8Rg|7VzG27mHpATOskxt)FLrX+2uvOiywKdP3K%KYmc825@~1ne`kF@emtQJ%)#ZI=itNfWzl_Hxs?X zak}wtIyJcU$pQwqKH>Dr`o~>aU%uOQDWnc*i!U_>z=yjK4%G9$TUbxCPwzaA_Y8)7 zo;~9l;hByqnCIFiZ`YB_IvwOg*4{!v?goRY!GErI5#$lh4KZrtUGrd7`(5>5^@3gZ zqGboV@to4jBDU1onfwm(Gmr^M7S&A0Hp!WX(Oqq z{rO<$wXx`d&TLUK(avpA>aQd_-1#j^ZlE(71h@xeHNAHGk>V8 z7{xPhmH%hLGCYZIIVRhmn9&J4ha!aAwoVaPzCP)`&Vp!@_6+Js>aj% ztA~gGph|ptfBoV2hsWEer`sD;p@08AeZ&=TLvE#e&5-d5-7Rl9UC|s?>c;#PvY~Y( zH9YQGgup28N?^aNumzCOe22HG(IlEBQi>&z5;I)FgZJAqquCujRcTkU`d!e*OH~~0Z8crC>6Bcfz|&Ew`Lv-`*r2#uqv3(4ACBfrQGa5w={lvQ zw$4|03T~OG69gGwre_~65EBLo6Y$sJ2yQi4{#&XrFgeu<2L z2%7&HD_|XkFxiPf!?&U4QQ!ky7RGAWDXW5gr&)3iHPhWG)AxPLljg{743&j?*f{>F!cQO@ zCLDOg?Ko)ov9}}nLyp27DG`1=?l6H7M|j2yj6K#9S~={jLul2o^A7=3haCwDAUNu1 zJOJGRN7wfP9QQq7_2;bqtfZ zqg(;>M;z}8r8?xu*Fl=QA?Si!aksY&aLV1@G`*&I{;sPUVr?E49jX?5!a=-lJH_!& zbHn)__pt2Lbe=5F>>7_<3$X6oDIMSqfRr8QdN&thi0c4mR)4IY!Ru#5(nXaM`KKr$ z@A^Lz+2+rY6T7v5Fz&wiWWcf?YNlSh+N71zW`t+!i_ce3s95y;_}B8M$dOOs-_VNW z6@9(JvL5n(mVC6~v6On(0Vm(94S8UPtAf0V8^_umyY0&Cbb5Tbaah25>4nyrv z=nU1Z*iv4tnt#-J7_x~5Itz9j?h0l2*asskOUf2Y{o1*xgNM#GnyS~%%QMSfxmXyt zlM>20ZIn6Lyk=h7Ezr9I&DUr+Zo7}H46 z$9f(WR4KBcuUcq&vlqqTwQ^Ef2jC^K)1WR>XR6EIP=9=~ih-xc;D}CJ^VvQ98S3b< zOw^6#Oxb8F!0$ffIr_`r7o4_(g`IvJz2?2hhdVd+e4mmR`s%#;=WTMY+tyyYktLGO zB~{DqC3}TR%2V2ZKnsBWisUS_s~WR92LAaJOQD!%D|@P}K8NzCGjQT%U-TZ>f~G#5 zTM|{U-G6v=Vx`EY>0cVMsis%m{qe`oQrah;L^a2!10Zwe_f14%ILSBP0Uq%!)z6dy zJlI=iofdBEvW#P0*C+nQQ^Jnp8A!814CsJK=%IMpe%X?cd9zrnhY$7Pw z?{3Nv^c{Y#w|U30Zm9K;O+mhjH+94fpvS!F>;j7<75P(h2oL~GiW0b~StMMWur#PL zFesRccKiPikIBdXJlrO?kB=W70f08}{Ugl@%uBo7hMtcFnR=@rIBl4YXb^;*V=*?S zSbvuFyEF~qaabPx28vryU|e9Fv>{9lievuR6i8$a`x0~5+?gRGEU(Hzc^vlb2?>gm zZHE9b*lC#@o*5M0ZwQd3%d{wAnQdJJeDJnD0y3LQ1c+4C44kQDMKiX7=C)Y{D)yah z!Z2N&i8|!RrVLuT3x<=K0?Q~#1uSd{M}KQ( z@CvYa0cUVQCvZc;@rT2{LBdS?;)?{@_JW+S2A!|gB3XKONhsWkNb?ziD-qBRuU%6G zp;cuGXerb$4z@RbHi^V@vOP#Q8meg<Bsup7)`3@X5u)%+5ml~`9Dzr zchkFj_7&jS?)W`}@T9-vPu1*OMJ0fv^__Z0a)=!rcj~>+kgWIh+zkNgqpYBE^@)Gw z;+cccfF2O)>A)WCH^G1?*Mgg`IAIVzEDu1K=`2j{AojgI)dRM83ec{G1_kON+(L;; zDQ}`?gHb~cWE=#vv$QIiGYR9@(sJz?JIxS(9bnPea{omkS{q!utw}(;x81HS(-#2r zP#^6%aKwMU(v&LoyT~Xg*4RgBUcrpvI@nvk$r+4yr-a`lc28F{2Sqyki@Zs>FY4UP~3!tZK;N2xDKs^yOkUHQ`$b+;Wx?C4U#)V9&IMWIP?-rwznW$jGOYGy_>?RH#t+qM*+a}9! z)x;sEzC7DEf{<(X;>CQfs0M!L9?w)_MrYFWcs9r-mc(4x)4PDo=R*Req$$l11uE`J znS#`O%9Rab)tLXMLoE#iCe4||QPk#tX4MzAsZH1)yQxju>^nQ1!-M4G$l8$_nz;mr zHUkV$Xjw|J-f@gWz!%i|gCN1pr^O7hHLK5SIFE{VeS2<$QG+Vlonk1^ge(?FVDp9d zpE7uMN;DE!a5Q$~zllLcYO8+JXWquhL4Y?K8xYXzl$Kc8UTeE$2?xF;3JsipkUU3( zbEL9#DgAC%47fdSgJKoumwNFLp1k#Sg=cfT?y9?y8i(HQr^djmcDV?Tj`ijx#rr6i zm0Dt!tHmQ0tfYllQA{>o-&^xJ7QLhd?X8z~(Ha$w`QE(%+KX>a`GjYyoMFB8W_1sq ztVQB|XmRir$LZMZS=dBr9P&1Q&Ic&F3HJdDMX-b#-*Hf=Mwpv0%r_WN_@`fiw=WxM zguojfy8%p~$wFdK*9cf4a+KF=xd_>9yzU{Pdof*L(F*)a*+h5&W!8aSK$*MoUZBzY zVP9bR;59cDB&Q1AZb}7w!J*7#dTR2l;K351v=Fihzlu{w$ALvw90%%uj=hE_uaKa2 zHV6l-NC8i-3hE~F;lX}cKC46eW3ZcOE|6@078U%U!Jjxq;6K3*?2eAaAY8`mP&7ffPkX6;mKfsu>yXq`XX2vBz%#A57|v+$Po;PPINU;Y!ko?7TUxygQVtU z0guFLVR;HZzmiju!87L?o{2G+kkgg15SE(4+oCSG8;-M-LnF)rcrMBW!%mn#1Tc=H zl!GJrNqIJkFH?<1v3VRD$!(`*BYEvOI)>BEUT8>gG)HSUSWYj0J8-0|D84E)5#P*QLuweCJ4>E;Sv)(Z!)r{9HU4!Og{i(Y#z7 z9mUBdhbM{!0@8>61%|$XXV!s$L7^qW01jg%zaU>tKZdd6#gQ@AKpYrj-lZUGaHNmq z42q=ivp6^##0q$StKLRb%xs5U!4E|^;Vba(Irn>WL6LfiGm+)C*MUQ;JZIp8QiPJ) zk7y3c?nIFQ<*umA;k)j7vn9$BT?y{!TEaK662m6wL}iD?@=O#6)CEO=g4ZWW7j#`F zC{8#vJFf#iBA^SR(E}j&F=mV%UA{rVs$7&fRYR@U zNL-wXp*9FyjA<>j_S_!s0gA;4%^;hAJ+RQ{gjdB3;fs$j3m`FO0k$W7KvVsJAHdZ5 z+z()Cef$R~wLJv{mdX*3;AV&_bEZ)oKbvzxK$$j@B#!T#(pg4VI8+Ru>za(=bX_0H zf)EGCkW2V~EeJR>O{$t1Fb>tb0pPF^R!J0m_lU5a6l3G(_Picos&$?;y%~Jt?Xr`C zr4qiq?MdW0!g93$C416$vu#*dE z9~agxu7(T0aPho^_nLohV_(Np?X_esWMTdLWnZ{|&)wAhF+UkEE8Pcmi2_;Edy%>z z@OSoK4|%olqnHzseP7^1xzkz2@+{HK;TxyIzK$2M5qO1^G_~%L&D)Arn$`Q?``^1w z8T#^V+UZ;KANK%HqLL{Mdi(n#!Svx}FkWh0Nd)QTb-{-fNs~IXSeo>s8^>RgQjYWu=J^3n8TFBlWw41iSCUjFzuL|;A@TZ?oABAvC;1u~+Ar?8k&PA2M!~dyu z2~V}nI=9DvK5dky1-!uTZkQ?N`s#btcRpHwAivB>Z+C9f^w$fUYI?h-X=Ur{L(M(W zY42ludBKNTj3C>yp_+Hma{$6{db%{96iGRJzB8uE+UErY>?Y9qPdy&ace`6lDYSrR zZ_kry*SU?78O7=il!O*=nZFkcW;za_7So}DwwE0)aBJzZ0c-RDY_gD~T&~!6EIwR+ zdpS-|RJx=Effj*nl3lX1RTVT9sSOS|?7fFP#9%%R2{V;XGXjm|(~xlU_yos{bFyUC zID4J4Ji2N7Es$<%dtR&g$J<8bM6Y^GB#>@;**egw-#XCW-Np*;zrmg!I9ATKvyFR1 zJ5YTdTaQdDuH220jBS8U?->)Y)+lU;2mALpQP!jA_FC) zDeM%uEE}lp%rQ&yiOP(E=G+md8CBGVv8wm#0%y33Pi7lU6^01v6Pz>ucAGGNRMn|6 zGCw_$b?V-TTXn>}&*Sgq#)4M;E0j&T{*OSDa(ZJ5r;bT-qVXL9_Yh6%n3F2+{pyZF zZ!_J~iH@RI>DO$Ak?&%ozU3I;QYgKU{S9~w+hmz(3Q7Ldsm?%^u0i^*to>ZUzUY?U zZHj<(ujRW#8B0mE-azEv{G6D7hRAq*crmUZrVOR5{V2w@iaH}5cty@NNS#gycE|7a0FC~WdOUZ}BQ z`g)OAAwNO8NlB@y9K9m6rWvNl?Yb1Q^|e5(cUvJ-F}62Y=X;;Vl;RwJr?Nbm3Qr_X z(`wnM?W(JS*Qh!wwPlacptd6Tt!b-OKM$G!YBM^ZvfGA~OMusaK3d6l&2j_$1Mcuq z8`8cKUSrx*N+osY1K6txQf=&!Ol(+w*;tmy;?4LTp$FMjYJ{Ml=d&bYI5 zZ8RTj_3ob_2Il_F;;!-5tfVDcP7N>!z`bW}34Ar@$s(8l@e z9O~vryY<>$Oy-glh>wgjC~4WKwp3RI&yMP-)CNsmGDt?$DLq_&3#y}RJFR-sKjGLF zaGG$t6U!|uIY%*fuCPMZY!-1441}!;{t$Dk)jSZI0_qs^fXeO|v(pMt+IjMLdP#2- z(|jLyO8>OW+!%@e<%jl1(CoAdS+Lt2! z*Fz%iPivI~$?Tz6H_s$-T zBmSTlNBmAF{eDwDf``1UE)KbIO?o{KdXx^hDO?BCbNas|4Ql8R@`PR+ZqLO`9Kqpo6(ZB9qv>-p05Y0{VIqPQSU;>||hmA33`Ni#8 zQ?6Y9{W38#7pxa&o6n=zZc5L;>s*=GPZ3p4W`NbxxvP2p+wG-^c@%5x+F?QBrj-5U z^$!2|3;4nOaarGf*}45;^Wod7&aXYU)$MZUZbgYq zm%BImYyO@m|N8@3(1{l5)bu{Pi93T3^ZTX!-E>JVZKs7K2P*8|oiEzc#r22xA0O}D ze){;~@#5D{cQ?0=+E4N+K0V!bZ!<0It2%jqn@@3n_x@i`lTNW2TZ*Ns+gM)w=wFrT zKy9pOH3=SX9f1Z6(sqVuCvSB*ykvYXg4MRSc&)eg-xnX+1e4INHCS=KJKpJxPu|&% z5rVb0F`JyyyLOOq@~#&>W`F9YR@fhd-<~}%G5lFvYOnK~{qrO*Ez1Q;dhQ}Uh->^G`-#6>_jJi%*YkFQP7i8&JZo5ggron}e z%%t{VN2XDZr|MW6_TmwsF>5pb_WPiJZAuUR=f~ggP3bjv8&l@Ds@&Ki{Siayh(M3| zxn~2pjipCG_0M(xZU3CSw4hGh+}Ky%u6kiZ9lx_Nu$*PJ`_rlN+8r$4eVDv7gpS|Y znn~U~I%ozRzq@NEwZ_pYYwtMffK_sSguY%gE7_w85@HPlw_q}xajfnPM!E`Fz(?=;_LO?Kz|88&$8c3MC9e_U=kFM6^6 I0Yva|Fnl8*wg3PC diff --git a/py-modindex.html b/py-modindex.html index 32f51dbff..834803f78 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -486,6 +496,11 @@

    Python Module Index

  •     datafusion.object_store
        + datafusion.options +
        diff --git a/search.html b/search.html index 5339967e5..c83727d49 100644 --- a/search.html +++ b/search.html @@ -247,6 +247,11 @@ SQL +
  • + + Upgrade Guides + +
  • @@ -358,6 +363,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/searchindex.js b/searchindex.js index 61e5a2373..efac56cf7 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"]], "Apache Iceberg": [[34, "apache-iceberg"]], "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 Names as Function Arguments": [[35, "column-names-as-function-arguments"]], "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"]], "Duplicate Keys": [[28, "duplicate-keys"]], "Example": [[21, "example"]], "Execute as Stream": [[35, "execute-as-stream"]], "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"], [4, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [17, "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]], "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"]], "Parameterized queries": [[45, "parameterized-queries"]], "Parquet": [[43, null]], "Partitions": [[32, "partitions"]], "Performance Optimization with Shared Styles": [[36, "performance-optimization-with-shared-styles"]], "PyArrow": [[35, "pyarrow"]], "PyO3 class mutability guidelines": [[19, "pyo3-class-mutability-guidelines"]], "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]], "Zero-copy streaming to Arrow-based Python libraries": [[35, "zero-copy-streaming-to-arrow-based-python-libraries"]], "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.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__aiter__", 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_array__() (datafusion.record_batch.recordbatch method)": [[14, "datafusion.record_batch.RecordBatch.__arrow_c_array__", false]], "__arrow_c_array__() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.__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.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__iter__", 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]], "__slots__ (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.__slots__", false]], "__slots__ (datafusion.table attribute)": [[7, "datafusion.Table.__slots__", 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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", 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]], "_inner (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table._inner", false]], "_inner (datafusion.table attribute)": [[7, "datafusion.Table._inner", false]], "_is_pycapsule() (in module datafusion.user_defined)": [[17, "datafusion.user_defined._is_pycapsule", 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]], "_raw_write_options (datafusion.dataframe.dataframewriteoptions attribute)": [[2, "datafusion.dataframe.DataFrameWriteOptions._raw_write_options", false]], "_raw_write_options (datafusion.dataframewriteoptions attribute)": [[7, "datafusion.DataFrameWriteOptions._raw_write_options", 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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "append (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.APPEND", false]], "append (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.APPEND", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_column", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", 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]], "dataframewriteoptions (class in datafusion)": [[7, "datafusion.DataFrameWriteOptions", false]], "dataframewriteoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrameWriteOptions", 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]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", 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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "insertop (class in datafusion)": [[7, "datafusion.InsertOp", false]], "insertop (class in datafusion.dataframe)": [[2, "datafusion.dataframe.InsertOp", 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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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]], "overwrite (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.OVERWRITE", false]], "overwrite (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.OVERWRITE", 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]], "parse_sql_expr() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.parse_sql_expr", 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 (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.REPLACE", false]], "replace (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.REPLACE", 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]], "select_exprs() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_exprs", 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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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.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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "write_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_table", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", 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, "", "DataFrameWriteOptions"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "InsertOp"], [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.DataFrameWriteOptions": [[7, 3, 1, "", "_raw_write_options"]], "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.InsertOp": [[7, 3, 1, "", "APPEND"], [7, 3, 1, "", "OVERWRITE"], [7, 3, 1, "", "REPLACE"]], "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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "writer_version"]], "datafusion.RecordBatch": [[7, 2, 1, "", "__arrow_c_array__"], [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, 3, 1, "", "__slots__"], [7, 3, 1, "", "_inner"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"]], "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, 3, 1, "", "__slots__"], [0, 3, 1, "", "_inner"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"]], "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_file_sort_order"], [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, "", "DataFrameWriteOptions"], [2, 1, 1, "", "InsertOp"], [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, "", "__aiter__"], [2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__iter__"], [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_column"], [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, "", "parse_sql_expr"], [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, "", "select_exprs"], [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"], [2, 2, 1, "", "write_table"]], "datafusion.dataframe.DataFrameWriteOptions": [[2, 3, 1, "", "_raw_write_options"]], "datafusion.dataframe.InsertOp": [[2, 3, 1, "", "APPEND"], [2, 3, 1, "", "OVERWRITE"], [2, 3, 1, "", "REPLACE"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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, 2, 1, "", "__arrow_c_array__"], [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, 6, 1, "", "_is_pycapsule"], [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, 34, 35], "0": [2, 4, 5, 7, 17, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 36, 37, 44, 45], "007bff": 36, "01": [22, 26, 29], "01t00": 26, "038": 33, "04023": 5, "05": [26, 29], "05t16": 26, "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": [2, 3, 4, 5, 7, 17, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 45], "100": [3, 5, 21, 22, 23, 32, 34, 35, 36, 37, 45], "1000": [1, 3, 7, 11, 24, 36], "10000000": 33, "1024": [1, 2, 3, 7, 36], "103": [21, 34, 37], "104": [21, 34, 37, 45], "1048576": [2, 7], "105": [21, 23, 34, 37], "107": [23, 33], "109": [21, 34, 37, 45], "11": [21, 22, 23, 25, 26, 28, 30, 32, 34, 37], "110": 23, "111": [21, 34, 37, 45], "112": 23, "115": [21, 23, 34, 37], "12": [20, 21, 22, 23, 25, 26, 28, 30, 32, 34, 37], "120": [5, 21, 23, 34, 37], "121": 23, "122": [21, 34, 37], "123": [21, 34, 37, 45], "12371": 5, "125": [5, 23, 26, 45], "128": [4, 5, 7], "13": [21, 23, 25, 26, 28, 30, 32, 34, 37], "130": [21, 34, 37, 45], "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], "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, "2026": 26, "205": [21, 34, 37], "2097152": [3, 36], "21": [22, 23, 25, 26, 32, 35], "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, "28": [22, 25, 32], "280": 24, "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], "35": [21, 22, 23, 25, 29, 32, 34, 37], "355": 24, "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, "42": [23, 25, 32, 34], "42857142857143": 32, "43": [21, 25, 32, 34, 37, 44], "44": [21, 24, 25, 34, 37], "45": [21, 23, 25, 26, 32, 34, 37], "4579": 26, "46": [23, 25], "47": 23, "4732": 26, "479": 24, "48": [21, 23, 34, 37], "49": [21, 25, 34, 37], "495": [21, 24, 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, 28, 37, 45], "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, "57": 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], "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, "730": 24, "732": 26, "75": [5, 21, 23, 34, 37, 45], "76": 32, "764994749": 26, "77777777777777": 23, "78": [21, 22, 34, 37, 45], "785714285714285": 23, "78571428571429": 23, "79": [21, 22, 34, 37], "8": [21, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38, 45], "80": [5, 21, 23, 32, 34, 37], "81": 22, "82": [21, 34, 37, 45], "83": [21, 23, 34, 37, 45], "833333333333336": 23, "84": [21, 32, 34, 37, 45], "85": [21, 23, 34, 37], "855": 26, "86": 23, "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, "916844220669": 24, "92": 22, "94": [22, 29], "944": 24, "95": [22, 23, 32, 45], "96": [22, 23], "972": 26, "98": [23, 45], "A": [0, 1, 2, 4, 5, 7, 8, 13, 15, 17, 22, 24, 28, 32, 34, 35, 44], "AND": [2, 4, 5, 7, 17], "AS": 2, "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, 45], "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, 43], "Its": 21, "No": [2, 7], "Not": [2, 4, 7], "OR": [4, 5, 7], "On": [2, 19, 34], "One": [2, 4, 19, 23, 32, 34], "Or": [33, 36], "That": [4, 7], "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, 38, 45], "Then": 30, "There": [2, 5, 7, 26, 30, 34], "These": [2, 5, 7, 14, 17, 23, 25, 30, 33, 35, 36, 45], "To": [2, 5, 19, 20, 25, 26, 29, 30, 32, 33, 34, 35, 37, 38, 44, 45], "Will": [2, 36], "With": [4, 7, 35, 37, 38], "_": 19, "__add__": [4, 7], "__aiter__": [2, 7, 14], "__and__": [4, 7], "__anext__": [7, 14], "__arrow_c_array__": [1, 7, 14, 38], "__arrow_c_stream__": [1, 2, 35, 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__": [2, 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], "__slots__": [0, 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_file_sort_ord": 1, "_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, "_export_to_c_capsul": 2, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": [7, 17], "_get_javascript": 3, "_inner": [0, 7], "_intern": [0, 1, 2, 4, 7, 13, 14, 15, 16], "_io_custom_table_provid": 30, "_is_pycapsul": 17, "_normalize_input_typ": [7, 17], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 17], "_raw_plan": [7, 13], "_raw_schema": 0, "_raw_write_opt": [2, 7], "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 36], "_sum": [7, 17, 30], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_typesh": [7, 17], "_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, 1, 2, 3, 4, 7, 8, 17], "abi": 19, "abi3": 20, "abi_st": 19, "abil": [34, 45], "abl": [7, 13], "about": [15, 16, 19, 21, 32, 33, 35], "abov": [5, 19, 23, 28, 32, 35, 45], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 17, 25, 30, 34, 35], "accept": [1, 2, 4, 5, 7, 35, 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, 45], "act": [7, 13], "action": 35, "activ": [19, 20], "actual": [2, 33, 35], "ad": [2, 19, 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": [0, 2, 7, 34, 35, 36], "advantag": [19, 20, 21], "affect": [17, 23, 33, 36], "after": [1, 2, 4, 5, 7, 17, 28, 30, 36], "ag": [25, 35], "against": [1, 2, 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], "agnost": 35, "aim": 37, "aiter": 2, "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": [2, 36], "all": [0, 1, 2, 3, 4, 5, 7, 17, 19, 20, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36, 38, 45], "alloc": [2, 33], "allow": [1, 2, 3, 7, 14, 17, 19, 20, 21, 23, 25, 26, 30, 33, 34, 35, 36, 45], "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, 35, 36, 37, 45], "altern": [29, 40, 43], "alternate_a": 2, "alwai": [17, 36], "amazons3": [12, 34], "ambigu": 28, "amount": [2, 17, 35], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 35, 37, 38, 39, 40, 43, 45], "analyt": 32, "analyz": [2, 4, 20], "ani": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 23, 28, 30, 32, 34, 35, 38], "annot": 20, "anoth": [2, 5, 7, 11, 19, 45], "anti": [2, 27], "apach": [1, 2, 4, 5, 7, 19, 20, 21, 38], "apart": 21, "api": [1, 2, 4, 7, 13, 19, 20, 21, 26, 32, 33, 34, 35, 36, 45], "appear": [4, 5, 7, 19], "append": [2, 5, 7, 30, 34], "appli": [2, 3, 7, 14, 19, 36], "applic": [19, 33], "approach": [5, 23, 25, 33, 34, 45], "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, 45], "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], "arithmet": 35, "around": [5, 20, 34], "arr": 35, "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": [4, 5, 7], "array_sort": 5, "array_to_str": 5, "array_union": 5, "arriv": 38, "arrow": [1, 2, 3, 4, 5, 7, 14, 20, 21, 24, 34, 37, 41], "arrow_cast": [4, 5, 7, 26], "arrow_datafusion_python_root": 20, "arrow_t": 35, "arrow_typ": 19, "arrow_typeof": [4, 5, 7], "arrowarrai": [7, 14], "arrowarrayexport": 1, "arrowarraystream": 2, "arrowschema": [7, 14], "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], "ask": 19, "assembl": 1, "assign": [4, 5, 7], "assist": 20, "associ": [0, 1, 4, 5, 7, 19], "assum": [2, 5, 20, 34], "assumpt": 21, "async": [2, 7, 14, 35], "asynchron": [7, 14, 35], "asyncio": 35, "asynciter": 2, "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, 14, 17, 19, 20], "attribut": 19, "auto": 18, "autoapi": 18, "automat": [1, 2, 7, 33, 35, 36], "avail": [2, 3, 7, 23, 27, 30, 33, 34, 35, 44], "averag": [5, 17, 32], "avg": [5, 17, 23, 32], "avoid": [1, 7, 11, 19], "avro": [1, 7, 11, 34, 35, 36, 41], "await": 35, "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": [2, 4, 7, 19, 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, 35], "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, 19, 20, 21, 34, 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, "borrow": 19, "both": [2, 4, 5, 7, 17, 19, 20, 25, 28, 30, 35, 45], "bottleneck": 33, "bound": [4, 7, 17, 30, 32, 44], "boundari": [17, 19, 32, 35], "bow": 32, "box": 19, "bracket": 25, "break": 19, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 34, "bug": [19, 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": [0, 2, 7, 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, 7, 14, 17, 19, 20, 21, 24, 34, 35, 38], "cach": [2, 3, 7], "calcul": [2, 5, 17, 30], "call": [0, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 23, 25, 30, 34, 35, 36], "callabl": [2, 3, 7, 17], "caller": 19, "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 19, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44, 45], "can_retir": 25, "candid": 4, "cannot": [5, 45], "canon": 19, "canonical_nam": [4, 7], "capabl": [33, 45], "capit": [4, 5, 7, 29], "capsul": [2, 19], "capsule_t": 44, "capsuletyp": [7, 17], "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, 45], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 27, 45], "castabl": [4, 7], "catalog": [1, 2, 7, 16, 18], "catalog_nam": 1, "catalogprovid": [0, 1, 34, 45], "catalogproviderexport": 1, "categori": [2, 26], "caterpi": [21, 32, 34, 37], "caus": [1, 7, 20, 32], "cbrt": [4, 5, 7], "cdatainterfac": [1, 2], "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, 45], "charizardmega": [21, 26, 32, 34, 37, 45], "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], "chunkedarrai": 2, "ci": [19, 20], "citycab": 28, "class": [20, 30, 34, 36], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [17, 32], "clean": 20, "clefabl": 32, "clefairi": [23, 32], "click": 3, "clone": [19, 20, 30, 44], "close": 32, "cloud": 33, "co": [4, 5, 7], "coalesc": [2, 5, 26, 28], "coalesce_duplicate_kei": [2, 28], "code": [3, 4, 5, 7, 19, 26, 34], "codebas": 20, "codec": [2, 7], "coeffici": 5, "coerc": 5, "coercion": 2, "col": [2, 3, 4, 5, 7, 17, 22, 23, 25, 26, 29, 30, 31, 32, 33, 35, 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": [1, 2, 3, 4, 7, 17, 21, 22, 24, 31, 33, 35, 45], "collect_column": [2, 35], "collect_partit": 2, "collid": [2, 7], "color": [25, 36], "column": [1, 2, 3, 4, 5, 7, 11, 14, 17, 22, 23, 24, 26, 27, 28, 30, 32, 33, 45], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [2, 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], "comment": 19, "common": [4, 5, 7, 8, 9, 10, 19, 23, 26, 28, 32, 34, 38], "commun": [19, 20], "compar": [5, 32], "comparison": [4, 7, 23, 35, 45], "compat": [19, 25, 35], "compel": 19, "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, 45], "concis": 20, "concurr": [1, 7, 33, 35], "condit": 27, "config": [1, 7, 19, 20, 33], "config_intern": [1, 7], "config_opt": [1, 7], "configopt": 19, "configur": [1, 3, 7, 19, 20, 45], "configure_formatt": [3, 7, 36], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 22], "consecut": 5, "consequ": 45, "consid": [5, 45], "consider": 36, "consist": [4, 5, 36], "consol": [2, 35], "construct": [2, 4, 7, 17, 30, 35, 44], "constructor": [0, 2, 4, 7, 13, 14, 15, 16, 17], "consum": [8, 15, 35, 38], "contain": [2, 3, 4, 5, 7, 13, 17, 18, 19, 20, 23, 25, 28, 30, 36], "content": [20, 27, 36], "context": [0, 3, 5, 7, 11, 13, 15, 18, 19, 30, 31, 33, 36, 38, 45], "continu": [5, 19], "contrast": 28, "contribut": 20, "contributor": 19, "control": [1, 2, 7, 23, 32, 33, 35], "conveni": [7, 17, 34], "convent": [4, 7, 19], "convers": [19, 20, 22, 35, 45], "convert": [0, 1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 19, 22, 24, 25, 26, 30, 31, 35, 45], "copi": [7, 14, 19, 20, 21, 30, 38], "copyto": 4, "core": [2, 4, 7, 19, 33, 34], "corr": [5, 23], "correctli": [2, 17, 19], "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": [17, 20], "cr": [30, 44], "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, "create_namespace_if_not_exist": 34, "create_t": 34, "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, "csv": [0, 1, 2, 7, 11, 19, 21, 23, 26, 32, 33, 34, 35, 36, 37, 41, 45], "ctx": [1, 2, 5, 7, 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], "cube": [4, 5, 7], "cubon": 23, "cume_dist": [5, 17, 32], "cumul": 5, "curr_valu": 30, "current": [0, 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, 45], "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, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 42, 44, 45], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": [5, 19], "databas": [0, 7, 25, 33], "dataflow": [7, 13], "datafram": [0, 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, "dataframewriteopt": [2, 7], "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, 19], "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, "debug": 19, "decid": [17, 19], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 17], "def": [2, 7, 17, 21, 30, 34, 35, 36, 37, 45], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 16, 17, 19, 20, 28, 30, 32, 33, 34, 36, 45], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [21, 26, 34, 37, 45], "defin": [0, 1, 2, 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, "demand": [35, 38], "demonstr": [1, 30, 32, 33, 37, 38], "dens": 5, "dense_rank": [5, 17, 32], "depend": [5, 19, 23, 30, 32], "deprec": [1, 2, 5, 6, 32], "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "deriv": 19, "descend": 5, "describ": [2, 5, 19, 23, 24, 30, 34], "describet": 4, "descript": [1, 5, 7, 17], "deseri": 15, "deserialize_byt": 15, "design": [19, 27], "desir": 5, "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, 45], "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 25, 31, 34, 35, 45], "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, 19, 34, 35, 38], "directori": [1, 7, 20], "disabl": [1, 7, 28, 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, 2, 7, 17, 19, 20, 22, 23, 30, 32, 34, 44, 45], "doc": [1, 2, 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": [2, 29, 38], "double_func": [7, 17], "double_it": [7, 17], "double_udf": [7, 17], "down": [19, 32, 34], "downcast": 19, "download": [22, 29, 37], "downstream": 38, "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, 27, 36], "dure": [7, 17, 20], "dynamic_lookup": 20, "e": [4, 5, 7, 17, 30], "each": [1, 2, 4, 5, 7, 17, 19, 20, 23, 26, 32, 35, 36], "eagerli": 35, "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, 35, 45], "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, 35, 36], "enable_cell_expans": [3, 7, 36], "enable_url_t": 1, "encod": [2, 5, 7, 15], "encount": 19, "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, 19, 33], "ensure_expr": 4, "ensure_expr_list": 4, "entir": [2, 7, 17, 23, 30, 32, 35], "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": [2, 5, 17, 19, 23, 32, 35], "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, "event": 35, "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, 35, 37, 44, 45], "excel": 19, "except": [2, 4, 5, 7, 25, 45], "except_al": 2, "exclud": [2, 28], "execut": [1, 2, 4, 7, 17, 19, 20, 21, 22, 33, 38], "execute_stream": [2, 7, 14, 35], "execute_stream_partit": [2, 35], "execution_plan": 2, "executionplan": [1, 2, 7, 13], "exeggcut": 23, "exist": [0, 1, 2, 3, 4, 5, 7, 19, 35], "exp": [4, 5, 7], "exp_smooth": 30, "expand": [2, 3, 36], "expans": 36, "expect": [4, 5, 7, 17, 19, 25, 30, 32, 35, 45], "expens": 2, "experi": 20, "explain": [2, 4], "explan": [2, 19, 22], "explicit": [4, 33, 35, 36], "explicitli": [7, 17, 19, 35], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 30, "export": [1, 2, 7, 14, 17, 19, 20, 34, 41], "expos": [2, 19, 30, 34, 35, 44], "expr": [1, 2, 5, 7, 11, 17, 18, 30, 32, 35], "expr1": 5, "expr2": 5, "expr_type_error": 4, "express": [1, 2, 4, 5, 7, 17, 23, 26, 27, 30, 32], "exprfuncbuild": [4, 7], "extend": [5, 8, 19], "extens": [1, 3, 4, 7, 11, 36], "extern": [0, 7], "extract": [3, 4, 5, 7, 26], "extraenv": 20, "f": [4, 22, 23, 25, 26, 32, 34, 35, 45], "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, 28, 29, 30, 33, 34, 35, 36, 37, 44], "familiar": 20, "far": 2, "faster": [2, 5, 7, 17, 33], "featur": [2, 5, 7, 19, 20, 28, 34, 38], "fetch": 20, "few": [19, 20, 22], "ffi": [0, 7, 17, 34], "ffi_": 19, "ffi_provid": 19, "ffi_tablefunct": 30, "ffi_tableprovid": [19, 44], "field": [2, 3, 5, 7, 19, 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, "finer": 35, "finish": [4, 23], "fire": [21, 23, 26, 34, 37], "first": [1, 2, 4, 5, 7, 19, 20, 22, 23, 25, 32, 34, 35, 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], "flat": 4, "flatten": [4, 5, 7], "fleur": 26, "flexibl": 35, "float": [2, 5, 7, 17, 30, 36, 45], "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": [0, 1, 2, 4, 5, 7, 17, 19, 20, 22, 23, 25, 26, 28, 30, 32, 34, 37, 45], "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, 45], "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": [2, 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, 44, 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_stream": 35, "from_substrait_plan": 15, "from_unixtim": [4, 5, 7], "from_val": 5, "frozen": [19, 20], "full": [2, 5, 27, 35, 36, 45], "full_nam": 35, "fulli": [20, 33], "func": [1, 2, 7, 17, 30], "function": [1, 2, 12, 14, 18, 19, 22, 24, 27, 33, 34, 36, 43], "function_to_impl": [17, 30], "further": [5, 19], "futur": [17, 19, 32], "g": [5, 17], "gamma": 34, "gather": 35, "gcd": 5, "gener": [4, 7, 13, 14, 15, 17, 18, 19, 20, 21, 34, 35, 37, 45], "geodud": 32, "get": [2, 3, 7, 13, 17, 19, 20, 25, 28, 34, 35, 36, 45], "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": [2, 7, 19], "guid": [1, 2, 27, 33, 35, 36, 37], "guidanc": 35, "gzip": [2, 7], "ha": [1, 2, 3, 5, 7, 17, 19, 25, 29, 34, 45], "handl": [3, 14, 23, 27, 32, 33, 45], "happen": 20, "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, 45], "head": 2, "header": [1, 2, 3, 7, 11], "healthi": 20, "heavy_red_unit": 25, "height": [3, 36], "help": [1, 3, 7, 11, 19, 20, 25, 26, 33, 36], "helper": [2, 4, 7, 17, 19], "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], "hive": 45, "homebrew": 20, "hood": 34, "host": 1, "how": [1, 2, 4, 5, 7, 17, 19, 23, 24, 27, 28, 30, 32, 33, 34, 35, 36, 37, 45], "howev": [17, 30], "hp": [21, 34, 37], "html": [1, 2, 3, 5, 7, 16], "html_formatt": [3, 7, 18, 36], "http": [1, 2, 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, 39, 40, 42, 43, 45], "ic": 23, "iceberg_t": 34, "id": [1, 2, 3, 20, 28, 35], "id_for_stud": 2, "ideal": 19, "ident": [2, 28, 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, "illustr": 19, "immut": [7, 17, 19, 30], "impact": [2, 33], "impl": [30, 44], "implement": [0, 1, 2, 3, 7, 17, 20, 30, 34, 35, 36, 38, 44, 45], "import": [1, 2, 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, 44, 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, 35, 36], "include_rank": [17, 30], "inclus": [1, 4, 5, 7], "incorpor": 30, "increas": [1, 2, 3, 7, 23, 33], "increment": [2, 17, 19, 30, 38], "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, 19], "inlist": 4, "inner": [2, 19, 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, 2, 7], "insert_oper": [2, 7], "insertop": [2, 7], "insight": 33, "instanc": [1, 2, 3, 4, 5, 7, 17, 19, 22], "instanti": [2, 7, 17], "instead": [1, 4, 5, 7, 19, 33, 34, 35], "insubqueri": 4, "insuffici": 34, "int": [1, 2, 3, 4, 5, 7, 11, 13, 17, 30, 45], "int32": [7, 17, 26], "int64": [7, 17, 24, 26, 30], "integ": [3, 4, 5, 7, 25], "integr": [2, 19, 34, 35, 37, 44], "intend": 19, "intens": 33, "interact": [3, 19, 25, 34], "intercept": 5, "interchang": [7, 14, 42], "interest": 25, "interfac": [0, 1, 2, 5, 7, 14, 19, 21, 22, 30, 32, 34, 35, 38, 44], "interior": 19, "intermedi": [7, 17], "intern": [0, 4, 7, 19, 30], "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 20, "introduc": [20, 22, 33, 45], "intuit": 19, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 17, "invok": 38, "io": [1, 2, 7, 15, 18, 36], "io_avro": 35, "io_csv": 35, "io_json": 35, "io_parquet": 35, "ipc": 2, "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], "item": 4, "iter": [2, 4, 7, 14, 35], "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, 35], "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 34, 35, 36, 41], "jupyt": [3, 35, 37], "jupyterlab": 37, "just": [2, 36], "justif": 19, "jynx": 23, "kakuna": [21, 32, 34, 37], "keep": [19, 20, 31, 34, 36], "kei": [1, 2, 3, 4, 7, 19, 22, 25, 27, 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, 7, 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, 35], "lazili": [2, 35, 38], "lcm": 5, "lead": [2, 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, 19], "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, 38, 44], "letter": [4, 5, 7, 29], "level": [2, 4, 5, 7, 19, 34], "levenshtein": 5, "leverag": [2, 7, 19], "lib": 20, "lib_dir": 20, "lib_nam": 20, "librari": [7, 8, 14, 19, 21, 37, 38, 44], "lightweight": 42, "like": [1, 2, 3, 4, 5, 7, 8, 19, 20, 21, 26, 34, 35, 45], "limit": [2, 4, 5, 20, 22, 24, 26, 33, 35, 36, 45], "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, "lit": [2, 4, 5, 7, 20, 22, 23, 25, 29, 32, 35, 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, 34], "load_catalog": 34, "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": [19, 20, 33], "loop": 35, "loss": 45, "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, 45], "main": [1, 22, 35], "maintain": [1, 2, 19, 22, 45], "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, 45], "match": [2, 4, 5, 26, 28, 33], "materi": [2, 35, 38], "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, 38], "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, 2, 3, 5, 7, 17, 19, 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, 20, 27], "mode": [2, 7], "model": 2, "modifi": [2, 7, 22], "modify_df": 2, "modul": [6, 19, 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, 19, 23, 25, 29, 30, 32, 38, 44, 45], "mutabl": 20, "mutat": 19, "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], "my_udaf": 30, "myaccumul": 30, "myformatt": 36, "mysql": [16, 45], "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, 37, 44, 45], "name_pair": 5, "named_expr": 2, "named_param": 1, "named_struct": [5, 20], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 19, "nativ": [19, 34], "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, 35, 36, 37, 45], "neg": [4, 5], "negat": [4, 5, 7, 26], "nest": [1, 4, 33], "network": 33, "never": 2, "new": [1, 2, 3, 4, 5, 7, 16, 17, 19, 20, 25, 27, 30, 44, 45], "new_bound": [19, 44], "new_nam": 2, "next": [5, 7, 14], "nice": 36, "node": [7, 13], "non": [2, 4, 5, 23, 32, 35], "none": [0, 1, 2, 3, 4, 5, 7, 11, 14, 15, 17, 19, 30, 32, 34, 36, 44, 45], "normal": 23, "not_red_unit": 25, "notat": [25, 42], "note": [1, 2, 4, 7, 22, 25, 34, 35], "notebook": [3, 35, 36, 37], "now": [5, 17, 19, 26, 28, 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, 45], "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, 45], "numer": [2, 4, 5, 7, 33], "nvl": 5, "o": [33, 34, 35, 36], "object": [1, 2, 3, 4, 7, 12, 14, 17, 19, 25, 30, 33, 35, 36, 38, 42, 45], "object_stor": [7, 18, 34], "objectstor": 1, "obtain": [8, 21, 35], "obviou": 19, "occasion": 19, "occur": [7, 17, 35], "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, 38, 44], "one": [2, 4, 5, 7, 17, 19, 23, 28, 30, 32, 34, 35], "onli": [1, 2, 3, 4, 5, 7, 11, 14, 17, 19, 23, 26, 28, 30, 32, 35, 36], "onlin": [1, 2, 4, 5, 7, 17, 19, 33], "op": [2, 4, 7], "open": [3, 20], "oper": [1, 2, 4, 5, 7, 13, 14, 17, 19, 21, 23, 25, 29, 30, 32, 33, 34, 36], "operand": [4, 7], "operatefunctionarg": 4, "opt": [19, 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, 45], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 17, 19, 25], "order_bi": [4, 5, 7, 23, 32], "org": [1, 2, 5, 7, 13], "organ": 34, "origin": [2, 4, 5, 7, 30, 34, 45], "other": [1, 2, 3, 4, 5, 7, 17, 19, 20, 21, 22, 25, 27, 30, 33, 35, 36], "other_df": 2, "other_id": 2, "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, 14, 17, 19, 21, 23, 32, 34, 35, 36], "overhead": 17, "overlai": 5, "overlap": 5, "overrid": [2, 7, 30], "overridden": 23, "overwrit": [2, 7], "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_attack": 45, "param_nam": 3, "param_valu": [1, 45], "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 14, 15, 17, 20, 25, 27, 28, 36, 45], "parameter": 1, "parasect": 32, "parquet": [0, 1, 2, 7, 11, 19, 21, 22, 29, 33, 34, 35, 36, 41], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "pars": [1, 2], "parse_sql_expr": 2, "parser": 45, "part": [2, 5, 7, 26], "particular": [5, 33], "partit": [1, 2, 4, 5, 7, 11, 13, 17, 23, 33, 35], "partition_bi": [2, 4, 5, 7, 32], "partition_count": [7, 13], "pass": [1, 2, 7, 17, 19, 20, 24, 25, 30, 33, 34, 35, 45], "passenger_count": 29, "path": [1, 2, 7, 11, 15, 20, 34, 35], "path_to_t": 34, "pathlib": [1, 2, 7, 11, 15], "pattern": [2, 5, 19, 33], "pc": [7, 17], "pcre": 5, "pd": [34, 35], "peopl": 5, "per": [2, 3, 17, 32, 35, 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, "persist": 45, "person": 20, "physic": [2, 7, 13, 22], "pi": 5, "pick": 5, "pinsir": 32, "pip": [21, 37], "pixel": [3, 36], "pl": 34, "place": [5, 19, 20, 37, 45], "placehold": [4, 45], "plain": [2, 4, 7, 35, 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": [20, 29], "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 20, 35, 45], "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], "poll": 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], "possibli": 4, "post": 20, "postgr": 16, "postgresql": 16, "potenti": [2, 7, 13, 45], "pow": [5, 26], "power": [5, 26, 30, 32], "pr": 20, "practic": [2, 19, 33], "preced": [4, 5, 7, 17, 32, 45], "precis": [5, 33], "predic": [1, 2, 7, 11], "prefer": [19, 20], "prefix": [5, 19], "prepar": [4, 45], "prepend": 5, "presenc": 26, "present": [2, 19, 28], "preserve_nul": 2, "pretti": 16, "prevent": [20, 36], "previou": [5, 30, 32], "previous": 1, "primari": [2, 7, 9, 25, 35], "primit": 19, "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], "problem": 28, "process": [2, 17, 23, 32, 33, 35, 38], "processor": 33, "produc": [2, 5, 7, 13, 15, 17, 19, 32, 35], "product": [5, 33, 35], "program": 19, "programmat": [7, 13], "project": [2, 4, 7, 13, 14, 19, 20, 35, 38], "proper": 33, "properti": [0, 2, 4, 7, 13], "proto_byt": 15, "protobuf": [7, 13], "protocol": [1, 3, 17, 35], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 14, 15, 16, 17, 19, 22, 23, 26, 30, 32, 33, 35, 37, 41, 45], "prune": [1, 7, 11], "psychic": 23, "pub": 19, "public": [0, 7], "pull": [20, 38], "pure": 20, "push": [20, 34], "pushdown_filt": 33, "put": 29, "py": [1, 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, 38, 45], "pycapsul": [0, 1, 2, 7, 14, 17, 19, 30, 34, 38, 44], "pycapsuleinterfac": [1, 2], "pyclass": [19, 20], "pyconfig": 19, "pydatatyp": 19, "pyiceberg": 34, "pymethod": [30, 44], "pyo3": [20, 30, 34], "pyo3_build_config": 20, "pyo3_config_fil": 20, "pyo3_print_config": 20, "pypi": 37, "pyproject": 20, "pyresult": [30, 44], "pysessioncontext": 19, "pyspark": 21, "pytabl": 19, "pytest": 20, "python": [0, 1, 2, 4, 7, 17, 24, 25, 28, 30, 33, 34, 37, 38, 44, 45], "python3": 20, "python_typ": 19, "python_valu": [4, 7], "pythontyp": [4, 7, 19], "queri": [1, 2, 7, 13, 15, 17, 19, 21, 22, 26, 31, 33, 34, 35, 38], "quick": 24, "quit": 43, "quot": [2, 29], "r": [1, 2, 4, 5, 7, 16, 19, 20], "radian": [4, 5, 7], "rais": [2, 3, 4, 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, "rare": 19, "rather": [5, 15, 35, 38], "ratio": 5, "raw": [1, 3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawexpr": [4, 7], "rawschema": [0, 7], "rb": [7, 14], "re": [2, 19], "read": [0, 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, 35, 38], "realiti": 23, "reason": [2, 19, 20], "rebuild": 20, "receiv": [5, 17, 19], "recent": [32, 34], "recommend": [2, 19, 20, 30, 33, 36, 45], "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], "recordbatchread": 35, "recordbatchstream": [1, 2, 7, 14, 35], "recursivequeri": 4, "red": [25, 36], "red_or_green_unit": 25, "red_unit": 25, "reduc": [20, 28, 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, 2, 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, 34, 44], "register_table_provid": [1, 34], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 30], "register_udwf": 1, "register_view": [1, 31], "registr": 45, "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], "reject": 4, "rel": [5, 32], "relat": [7, 13, 28], "releas": [19, 32], "relev": 20, "reli": [20, 34, 45], "remain": [4, 5, 7, 19, 26], "remot": [9, 10, 33], "remov": [0, 1, 2, 4, 5, 7, 23], "renam": 2, "renamed_ag": 25, "render": 3, "reorder": [2, 7, 14], "repartit": [1, 2, 4, 7, 33], "repartition_by_hash": [2, 33], "repeat": [5, 25], "repeated_arrai": 25, "replac": [2, 5, 7, 26, 45], "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, 45], "request": [19, 20], "requested_schema": [1, 2, 7, 14], "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": [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, 14, 15, 17, 19, 25, 28, 30, 34, 35, 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, "rwlock": 19, "s3": 34, "safe": 19, "safeti": 21, "same": [2, 5, 7, 17, 19, 22, 30, 35], "sampl": [5, 24, 31, 34], "saur": 26, "save": 17, "scalar": [1, 4, 7, 17, 25, 27, 45], "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, 14, 24, 36], "schema_infer_max_record": [1, 7, 11], "schema_nam": [0, 4, 7], "schemaprovid": [0, 7, 45], "schemaproviderexport": [0, 7], "scheme": 2, "scienc": 26, "score": 5, "script": [3, 33], "search": 5, "second": [5, 22, 23, 25, 34], "second_arrai": 5, "second_two_el": 25, "secret_access_kei": 34, "section": [19, 22, 24, 27, 28, 32, 34, 35], "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, 14, 17, 22, 25, 26, 27, 28, 30, 31, 32, 34, 35, 38, 45], "select_column": 2, "select_expr": 2, "self": [7, 14, 17, 30, 36, 44], "semi": [2, 27], "sensit": [2, 7], "separ": [5, 35], "sequenc": [1, 2, 7], "serd": 15, "seri": 25, "serial": [2, 7, 15, 39], "serialize_byt": 15, "serialize_to_plan": 15, "serv": 19, "session": [1, 2, 3, 7, 30, 33, 36, 37, 45], "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, 28, 30, 33, 36, 45], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setter": 19, "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, "short": 35, "shot": 17, "should": [1, 2, 4, 5, 7, 8, 11, 13, 15, 19, 20, 23, 28, 30, 32], "show": [2, 3, 19, 21, 22, 24, 25, 28, 30, 32, 33, 34, 35, 36, 37, 44, 45], "show_attack": 45, "show_column": 45, "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": [4, 5, 7, 19, 22, 25, 32, 45], "similarto": 4, "simpl": [2, 5, 20, 29, 33, 42, 43, 45], "simplest": [17, 30], "simpli": [2, 7, 17, 19, 20, 34, 36, 45], "simplifi": 32, "simultan": 33, "sin": [4, 5, 7], "sinc": [2, 23, 30, 34, 45], "sine": [4, 5, 7], "singl": [1, 2, 4, 5, 7, 13, 17, 23, 25, 30, 32, 33, 34, 35, 45], "single_file_output": [2, 7], "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": [4, 5, 7, 25], "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, 4, 7, 19, 20, 29, 30, 32, 35, 38, 44], "softwar": [7, 13, 19], "solid": 36, "some": [2, 5, 7, 17, 19, 20, 23, 26, 30, 32, 34, 35, 37, 44], "sometim": [1, 7, 19, 34], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 23, 32, 35], "sort_bi": [2, 7], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 2, 4, 5, 7], "sortkei": [1, 2, 4, 5], "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, 45], "specif": [0, 2, 3, 4, 7, 13, 24, 25, 26, 32, 33, 35, 36, 45], "specifi": [1, 2, 4, 5, 7, 25, 26, 28, 30, 32, 33, 45], "speed": [2, 7, 21, 23, 32, 34, 37], "sphinx": 18, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 30], "split_part": 5, "sql": [1, 2, 7, 13, 15, 16, 17, 21, 22, 25, 29, 31, 34, 35], "sql_type": 19, "sql_with_opt": 1, "sqlite": 16, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7, 19], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 26, "squirtl": [21, 26, 32, 34, 37], "src": [4, 7, 19, 20], "ssd": 33, "stabl": [17, 19, 30], "stai": 19, "standard": [5, 19], "start": [4, 5, 7, 17, 25, 28, 29, 32, 36, 37], "start_ag": 25, "start_bound": [4, 7], "started_young": 25, "starts_with": 5, "state": [1, 7, 17, 19, 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, "stem": 19, "step": [5, 19], "still": [2, 19, 30, 34], "stop": 5, "storag": [33, 34], "store": [1, 4, 7, 12, 19], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17, 45], "str_lit": 26, "straightforward": [7, 14, 39, 40], "strategi": 33, "stream": [1, 2, 7, 14, 19, 38], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 16, 17, 19, 20, 23, 24, 25, 27, 35, 45], "string1": 5, "string2": 5, "string_agg": [5, 23], "string_list": 5, "string_liter": [4, 7, 26], "string_view": [4, 7, 38], "strip": 2, "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, 45], "style_provid": [3, 36], "styleprovid": [3, 36], "sub": [4, 7], "subclass": 19, "subfield": [4, 5, 7], "submit": 20, "submodul": 20, "subqueri": 4, "subqueryalia": 4, "subset": [2, 26, 29], "substitut": 1, "substr": 5, "substr_index": 5, "substrait": [7, 18], "subtl": 19, "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": [0, 2, 3, 4, 5, 7, 13, 14, 15, 16, 19, 28, 30, 34, 35, 36, 45], "supports_bounded_execut": [17, 30], "suppos": [5, 19, 23], "suppress_build_script_link_lin": 20, "sure": 20, "switch": 45, "symbol": 2, "sync": 20, "synchron": 19, "syntax": [5, 25], "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, 45], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 2, 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": [0, 1, 7], "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, 35], "taxi": 22, "td": 36, "technic": 21, "techniqu": [33, 34], "tempor": 27, "temporari": [1, 2, 7, 36, 45], "temporarili": 36, "temporary_column": 35, "term": 32, "terminologi": 19, "test": [5, 20, 33, 34], "text": [1, 2, 5, 36], "textual": 26, "th": [5, 36], "than": [2, 4, 5, 7, 23, 30, 33, 35, 36, 38], "thei": [7, 8, 17, 19, 25, 30, 45], "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, 45], "third": 22, "thoroughli": 19, "those": [2, 4, 7, 21, 23, 30, 34, 45], "though": [19, 30], "thread": 21, "three": [30, 32, 34], "threshold": 45, "through": [2, 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], "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, 35], "to_pyarrow_dataset": 34, "to_pydict": [2, 31, 35], "to_pylist": [2, 35], "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], "todo": 19, "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, "touch": 20, "toward": 5, "tr": 36, "track": 19, "tracker": 5, "tradit": 20, "trail": 2, "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, 38], "trim": [4, 5, 7], "trip": [22, 29, 34], "trip_dist": [22, 29], "trivial": 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, 14, 17], "turn": [0, 2, 4, 7, 19, 45], "tutori": 37, "two": [2, 4, 5, 7, 13, 14, 19, 23, 25, 28, 30, 32, 33, 34], "type": [0, 1, 2, 3, 4, 5, 7, 11, 17, 19, 20, 21, 23, 25, 26, 29, 30, 32, 33, 34, 37, 45], "type_class": 3, "typeerror": [3, 4], "typeguard": 17, "typic": [0, 2, 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, "unabl": 45, "unari": [7, 13], "unbound": [1, 4, 7, 17, 32], "unchang": [2, 26], "uncompress": [2, 7], "undefin": 20, "under": [1, 19, 34], "underli": [4, 7, 17, 19, 38], "understand": [19, 33, 35], "unfortun": 19, "unfrozen": 19, "unicod": [4, 5, 7], "unintend": 45, "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 2, 3, 5, 7, 17, 23], "unit": [4, 7, 32, 34], "unixtim": 5, "unknown": 4, "unless": 19, "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, "up": [2, 7, 13, 17, 22, 25, 32, 33, 36], "updat": [1, 2, 7, 17, 19, 30], "upon": [5, 19, 30], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 19, "urbango": 28, "url": 1, "us": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 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, 45], "usabl": 2, "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, 34], "uuid": 5, "uv": 20, "v": [20, 33], "v4": 5, "val": 45, "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, 45], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 30, "values_b": 30, "values_view": 2, "var": 5, "var_pop": [5, 23], "var_samp": [5, 23], "var_sampl": 5, "vari": 33, "variabl": [1, 5, 7, 20, 25, 45], "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, 45], "venusaurmega": [21, 26, 32, 34, 37, 45], "venv": 20, "verbos": 2, "veri": [39, 40], "verifi": 37, "version": [2, 7, 19, 20, 28, 34], "versu": 33, "via": [1, 2, 4, 7, 14, 15, 17, 19, 20, 21, 25, 28, 30, 34, 35, 37, 44, 45], "view": [0, 1, 2, 7, 24, 26, 27, 37, 45], "view1": 31, "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": [0, 2, 7, 19, 20, 22, 23, 25, 26, 28, 29, 30, 32, 33, 34, 37, 38, 45], "weedl": [21, 32, 34, 37], "weight": [5, 25], "welcom": [20, 37], "well": [1, 7, 19, 20, 35, 45], "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, 45], "when_expr": 4, "whenev": [19, 20, 35], "where": [2, 4, 5, 7, 13, 23, 25, 26, 30, 31, 32, 34, 45], "wherea": 25, "wherev": 19, "whether": [1, 2, 3, 4, 5, 7, 11, 17, 25], "which": [0, 2, 4, 5, 7, 17, 19, 20, 21, 23, 25, 29, 30, 32, 34, 35, 36], "while": [17, 19, 28, 33], "white": 36, "who": 19, "whole": 23, "why": 19, "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, 28, 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": [2, 4, 5, 7, 19, 20, 23, 26, 28, 29, 30, 35, 45], "won": 29, "word": [4, 5, 7], "work": [1, 2, 5, 7, 22, 26, 29, 33, 35, 36, 37, 45], "workflow": 20, "workload": 33, "worthwhil": [2, 7], "would": [4, 5, 8, 17, 19, 45], "wrap": [1, 2, 19], "wrapper": [1, 7, 14, 19, 20, 34], "write": [2, 7, 8, 15, 19, 30, 34, 35], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_opt": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "write_t": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [2, 7, 19, 21, 34, 35], "x": [2, 5, 7, 17, 21, 26, 32, 34, 37, 45], "xor": 5, "y": [2, 5, 17, 21, 26, 32, 34, 37, 45], "year": 5, "years_in_posit": 25, "yellow": [22, 34], "yellow_tripdata_2021": [22, 29], "yet": [2, 34], "yield": [2, 5, 35, 38], "you": [0, 1, 2, 5, 7, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 44, 45], "your": [0, 2, 7, 17, 19, 20, 23, 24, 29, 30, 33, 34, 35, 36, 45], "your_tabl": 35, "yourself": 19, "z": [1, 7, 17], "zero": [2, 5, 7, 14, 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, "apach": 34, "api": 18, "approach": 19, "argument": 35, "arrai": 25, "arrow": [19, 35, 38], "attribut": [4, 7, 12, 17], "avail": 32, "avro": 39, "base": [8, 35], "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, 19, 35], "code": 20, "column": [25, 29, 35], "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, "copi": 35, "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, "duplic": 28, "exampl": [21, 33], "execut": 35, "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, 4, 5, 7, 11, 17, 23, 25, 26, 30, 32, 35], "guidelin": [19, 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, "kei": 28, "lake": 34, "left": 28, "librari": [34, 35], "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], "mutabl": 19, "name": 35, "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], "parameter": 45, "parquet": 43, "partit": 32, "perform": 36, "plan": 13, "practic": 36, "pre": 20, "primari": 19, "provid": [34, 36, 44], "pyarrow": 35, "pyo3": 19, "python": [19, 20, 21, 35], "queri": 45, "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, "stream": 35, "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, "zero": 35}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API Reference": [[19, null]], "Additional Resources": [[37, "additional-resources"]], "Aggregate Functions": [[24, "aggregate-functions"], [31, "aggregate-functions"], [33, "aggregate-functions"]], "Aggregation": [[24, null]], "Alternative Approach": [[20, "alternative-approach"]], "Apache Iceberg": [[35, "apache-iceberg"]], "Arrays": [[26, "arrays"]], "Arrow": [[39, null]], "Attributes": [[4, "attributes"], [7, "attributes"], [12, "attributes"], [18, "attributes"]], "Available Functions": [[33, "available-functions"]], "Avro": [[40, null]], "Basic HTML Rendering": [[37, "basic-html-rendering"]], "Basic Operations": [[25, null]], "Benchmark Example": [[34, "benchmark-example"]], "Best Practices": [[37, "best-practices"]], "Boolean": [[26, "boolean"]], "Built-in Functions": [[36, "built-in-functions"]], "CSV": [[41, null]], "Casting": [[27, "casting"]], "Catalog": [[35, "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"], [18, "classes"]], "Column": [[26, "column"]], "Column Names as Function Arguments": [[36, "column-names-as-function-arguments"]], "Column Selections": [[30, null]], "Common DataFrame Operations": [[36, "common-dataframe-operations"]], "Common Operations": [[28, null]], "Concepts": [[23, null]], "Conditional": [[27, "conditional"]], "Configuration": [[34, null]], "Configuring the HTML Formatter": [[37, "configuring-the-html-formatter"]], "Contextual Formatting": [[37, "contextual-formatting"]], "Core Classes": [[36, "core-classes"]], "Create in-memory": [[35, "create-in-memory"]], "Creating DataFrames": [[36, "creating-dataframes"]], "Creating a Custom Formatter": [[37, "creating-a-custom-formatter"]], "Custom Style Providers": [[37, "custom-style-providers"]], "Custom Table Provider": [[35, "custom-table-provider"], [45, null]], "Customizing HTML Rendering": [[37, "customizing-html-rendering"]], "Data Sources": [[35, null]], "DataFrame": [[23, "dataframe"]], "DataFrames": [[36, null]], "DataFusion 52.0.0": [[47, "datafusion-52-0-0"]], "DataFusion in Python": [[22, null]], "Delta Lake": [[35, "delta-lake"]], "Distinct": [[24, "distinct"]], "Duplicate Keys": [[29, "duplicate-keys"]], "Example": [[22, "example"]], "Execute as Stream": [[36, "execute-as-stream"]], "Exporting from DataFusion": [[39, "exporting-from-datafusion"]], "Expression Classes": [[36, "expression-classes"]], "Expressions": [[23, "expressions"], [26, null]], "Filter": [[24, "filter"]], "Full Join": [[29, "full-join"]], "Functions": [[3, "functions"], [4, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [18, "functions"], [26, "functions"], [27, null]], "Guidelines for Separating Python and Rust Code": [[21, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[36, "html-rendering"]], "HTML Rendering in Jupyter": [[37, null]], "Handling Missing Values": [[27, "handling-missing-values"]], "How to develop": [[21, "how-to-develop"]], "IO": [[42, null]], "Implementation Details": [[20, "implementation-details"]], "Important Considerations": [[34, "important-considerations"]], "Importing to DataFusion": [[39, "importing-to-datafusion"]], "Improving Build Speed": [[21, "improving-build-speed"]], "Inner Join": [[29, "inner-join"]], "Inspiration from Arrow": [[20, "inspiration-from-arrow"]], "Install": [[22, "install"]], "Installation": [[38, "installation"]], "Introduction": [[21, null], [38, null]], "JSON": [[43, null]], "Joins": [[29, null]], "Left Anti Join": [[29, "left-anti-join"]], "Left Join": [[29, "left-join"]], "Left Semi Join": [[29, "left-semi-join"]], "Literal": [[26, "literal"]], "Local file": [[35, "local-file"]], "Managing Formatters": [[37, "managing-formatters"]], "Mathematical": [[27, "mathematical"]], "Maximizing CPU Usage": [[34, "maximizing-cpu-usage"]], "Memory and Display Controls": [[37, "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"], [18, "module-contents"]], "Null Treatment": [[24, "null-treatment"], [33, "null-treatment"]], "Object Store": [[35, "object-store"]], "Ordering": [[24, "ordering"], [33, "ordering"]], "Other": [[27, "other"]], "Other DataFrame Libraries": [[35, "other-dataframe-libraries"]], "Overview": [[36, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parameterized queries": [[46, "parameterized-queries"]], "Parquet": [[44, null]], "Partitions": [[33, "partitions"]], "Performance Optimization with Shared Styles": [[37, "performance-optimization-with-shared-styles"]], "PyArrow": [[36, "pyarrow"]], "PyO3 class mutability guidelines": [[20, "pyo3-class-mutability-guidelines"]], "Python Extensions": [[20, null]], "Registering Views": [[32, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[21, "running-installing-pre-commit-hooks"]], "SQL": [[46, null]], "Scalar Functions": [[31, "scalar-functions"]], "Session Context": [[23, "session-context"]], "Setting Parameters": [[24, "setting-parameters"], [33, "setting-parameters"]], "Status of Work": [[20, "status-of-work"]], "String": [[27, "string"]], "Structs": [[26, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[31, "table-functions"]], "Temporal": [[27, "temporal"]], "Terminal Operations": [[36, "terminal-operations"]], "The FFI Approach": [[20, "the-ffi-approach"]], "The Primary Issue": [[20, "the-primary-issue"]], "UDWF options": [[31, "udwf-options"]], "Update Dependencies": [[21, "update-dependencies"]], "Upgrade Guides": [[47, null]], "User Defined Catalog and Schema": [[35, "user-defined-catalog-and-schema"]], "User-Defined Functions": [[31, null]], "Window Frame": [[33, "window-frame"]], "Window Functions": [[31, "window-functions"], [33, null]], "Zero-copy streaming to Arrow-based Python libraries": [[36, "zero-copy-streaming-to-arrow-based-python-libraries"]], "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.options": [[13, null]], "datafusion.plan": [[14, null]], "datafusion.record_batch": [[15, null]], "datafusion.substrait": [[16, null]], "datafusion.unparser": [[17, null]], "datafusion.user_defined": [[18, null]], "fill_null": [[27, "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/options/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", "user-guide/upgrade-guides"], "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/options/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", "user-guide/upgrade-guides.rst"], "indexentries": {"__add__() (datafusion.expr method)": [[7, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__aiter__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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_array__() (datafusion.record_batch.recordbatch method)": [[15, "datafusion.record_batch.RecordBatch.__arrow_c_array__", false]], "__arrow_c_array__() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.__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.dataframe_formatter.cellformatter method)": [[3, "datafusion.dataframe_formatter.CellFormatter.__call__", false]], "__call__() (datafusion.user_defined.aggregateudf method)": [[18, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__call__", false]], "__datafusion_aggregate_udf__() (datafusion.user_defined.aggregateudfexportable method)": [[18, "datafusion.user_defined.AggregateUDFExportable.__datafusion_aggregate_udf__", false]], "__datafusion_catalog_provider__() (datafusion.context.catalogproviderexportable method)": [[1, "datafusion.context.CatalogProviderExportable.__datafusion_catalog_provider__", false]], "__datafusion_logical_extension_codec__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_logical_extension_codec__", false]], "__datafusion_scalar_udf__() (datafusion.user_defined.scalarudfexportable method)": [[18, "datafusion.user_defined.ScalarUDFExportable.__datafusion_scalar_udf__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__datafusion_task_context_provider__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_task_context_provider__", false]], "__datafusion_window_udf__() (datafusion.user_defined.windowudfexportable method)": [[18, "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.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__iter__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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.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)": [[14, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.__repr__", false]], "__repr__() (datafusion.table method)": [[7, "datafusion.Table.__repr__", false]], "__repr__() (datafusion.user_defined.aggregateudf method)": [[18, "datafusion.user_defined.AggregateUDF.__repr__", false]], "__repr__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__repr__", false]], "__repr__() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.__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]], "__slots__ (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.__slots__", false]], "__slots__ (datafusion.table attribute)": [[7, "datafusion.Table.__slots__", false]], "__str__() (datafusion.user_defined.volatility method)": [[18, "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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", false]], "_convert_table_partition_cols() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_table_partition_cols", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction._create_table_udf", false]], "_create_table_udf_decorator() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.WindowUDF._create_window_udf", false]], "_create_window_udf_decorator() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[18, "datafusion.user_defined.WindowUDF._get_default_name", false]], "_get_javascript() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_inner (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table._inner", false]], "_inner (datafusion.table attribute)": [[7, "datafusion.Table._inner", false]], "_is_pycapsule() (in module datafusion.user_defined)": [[18, "datafusion.user_defined._is_pycapsule", false]], "_max_rows (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._max_rows", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[18, "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)": [[14, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[14, "datafusion.plan.LogicalPlan._raw_plan", false]], "_raw_schema (datafusion.catalog.schema attribute)": [[0, "datafusion.catalog.Schema._raw_schema", false]], "_raw_write_options (datafusion.dataframe.dataframewriteoptions attribute)": [[2, "datafusion.dataframe.DataFrameWriteOptions._raw_write_options", false]], "_raw_write_options (datafusion.dataframewriteoptions attribute)": [[7, "datafusion.DataFrameWriteOptions._raw_write_options", 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.user_defined.aggregateudf attribute)": [[18, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[18, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[18, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[18, "datafusion.user_defined.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_bool", false]], "_validate_formatter_parameters() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_formatter_parameters", 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.user_defined)": [[18, "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.user_defined)": [[18, "datafusion.user_defined.AggregateUDF", false]], "aggregateudfexportable (class in datafusion.user_defined)": [[18, "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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "append (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.APPEND", false]], "append (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.APPEND", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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)": [[14, "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_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_column", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "comment (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.comment", false]], "comment (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.comment", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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)": [[16, "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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "csvreadoptions (class in datafusion)": [[7, "datafusion.CsvReadOptions", false]], "csvreadoptions (class in datafusion.options)": [[13, "datafusion.options.CsvReadOptions", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", false]], "data_type_or_field_to_field() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_type_or_field_to_field", false]], "data_types_or_fields_to_field_list() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_types_or_fields_to_field_list", 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]], "dataframewriteoptions (class in datafusion)": [[7, "datafusion.DataFrameWriteOptions", false]], "dataframewriteoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrameWriteOptions", 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.options": [[13, "module-datafusion.options", false]], "datafusion.plan": [[14, "module-datafusion.plan", false]], "datafusion.record_batch": [[15, "module-datafusion.record_batch", false]], "datafusion.substrait": [[16, "module-datafusion.substrait", false]], "datafusion.unparser": [[17, "module-datafusion.unparser", false]], "datafusion.user_defined": [[18, "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)": [[17, "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]], "delimiter (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.delimiter", false]], "delimiter (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.delimiter", 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)": [[16, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[16, "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)": [[17, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[17, "datafusion.unparser.Dialect.dialect", false]], "dictionary_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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)": [[14, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "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)": [[17, "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)": [[16, "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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", false]], "escape (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.escape", false]], "escape (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.escape", false]], "evaluate() (datafusion.user_defined.accumulator method)": [[18, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[18, "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)": [[14, "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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "file_compression_type (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_compression_type", false]], "file_compression_type (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_compression_type", false]], "file_extension (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_extension", false]], "file_extension (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_extension", false]], "file_sort_order (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_sort_order", false]], "file_sort_order (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_sort_order", 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)": [[14, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[14, "datafusion.plan.LogicalPlan.from_proto", false]], "from_pycapsule() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[16, "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)": [[18, "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]], "has_header (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.has_header", false]], "has_header (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.has_header", 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)": [[18, "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)": [[18, "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)": [[14, "datafusion.plan.LogicalPlan.inputs", false]], "insertop (class in datafusion)": [[7, "datafusion.InsertOp", false]], "insertop (class in datafusion.dataframe)": [[2, "datafusion.dataframe.InsertOp", 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)": [[18, "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)": [[14, "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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", false]], "max_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_rows", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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)": [[18, "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.user_defined.accumulator method)": [[18, "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 (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.min_rows", 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.options", false], [14, "module-datafusion.plan", false], [15, "module-datafusion.record_batch", false], [16, "module-datafusion.substrait", false], [17, "module-datafusion.unparser", false], [18, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[17, "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]], "newlines_in_values (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.newlines_in_values", false]], "newlines_in_values (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.newlines_in_values", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[15, "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_regex (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.null_regex", false]], "null_regex (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.null_regex", 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]], "overwrite (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.OVERWRITE", false]], "overwrite (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.OVERWRITE", 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]], "parse_sql_expr() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.parse_sql_expr", 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)": [[14, "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)": [[16, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[16, "datafusion.substrait.Plan.plan_internal", false]], "plan_to_sql() (datafusion.unparser.unparser method)": [[17, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[17, "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)": [[16, "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]], "quote (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.quote", false]], "quote (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.quote", 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)": [[15, "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)": [[15, "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)": [[15, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[7, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[15, "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 (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.REPLACE", false]], "replace (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.REPLACE", false]], "replace() (in module datafusion.functions)": [[5, "datafusion.functions.replace", false]], "repr_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[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.user_defined)": [[18, "datafusion.user_defined.ScalarUDF", false]], "scalarudfexportable (class in datafusion.user_defined)": [[18, "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.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema", false]], "schema (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.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_infer_max_records (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema_infer_max_records", false]], "schema_infer_max_records (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.schema_infer_max_records", 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]], "select_exprs() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_exprs", false]], "serde (class in datafusion.substrait)": [[16, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[16, "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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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)": [[17, "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)": [[18, "datafusion.user_defined.Volatility.Stable", false]], "starts_with() (in module datafusion.functions)": [[5, "datafusion.functions.starts_with", false]], "state() (datafusion.user_defined.accumulator method)": [[18, "datafusion.user_defined.Accumulator.state", false]], "statistics_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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)": [[18, "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.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.schema method)": [[0, "datafusion.catalog.Schema.table_exist", 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]], "table_partition_cols (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.table_partition_cols", false]], "table_partition_cols (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.table_partition_cols", false]], "tablefunction (class in datafusion.user_defined)": [[18, "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]], "terminator (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.terminator", false]], "terminator (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.terminator", 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_inner() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.to_inner", false]], "to_inner() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.to_inner", 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)": [[14, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[15, "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)": [[16, "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)": [[14, "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]], "truncated_rows (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.truncated_rows", false]], "truncated_rows (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.truncated_rows", 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.user_defined)": [[18, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[17, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[17, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.user_defined.accumulator method)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[18, "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)": [[18, "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.user_defined)": [[18, "datafusion.user_defined.WindowUDF", false]], "windowudfexportable (class in datafusion.user_defined)": [[18, "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_comment() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_comment", false]], "with_comment() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_comment", 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_delimiter() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_delimiter", false]], "with_delimiter() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_delimiter", 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_escape() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_escape", false]], "with_escape() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_escape", 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_file_compression_type() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_compression_type", false]], "with_file_compression_type() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_compression_type", false]], "with_file_extension() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_extension", false]], "with_file_extension() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_extension", false]], "with_file_sort_order() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_sort_order", false]], "with_file_sort_order() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_sort_order", 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_has_header() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_has_header", false]], "with_has_header() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_has_header", 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_logical_extension_codec() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.with_logical_extension_codec", false]], "with_newlines_in_values() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_newlines_in_values", false]], "with_newlines_in_values() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_newlines_in_values", false]], "with_null_regex() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_null_regex", false]], "with_null_regex() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_null_regex", 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)": [[17, "datafusion.unparser.Unparser.with_pretty", false]], "with_quote() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_quote", false]], "with_quote() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_quote", 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_schema() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema", false]], "with_schema() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema", false]], "with_schema_infer_max_records() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema_infer_max_records", false]], "with_schema_infer_max_records() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema_infer_max_records", false]], "with_table_partition_cols() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_table_partition_cols", false]], "with_table_partition_cols() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_table_partition_cols", 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_terminator() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_terminator", false]], "with_terminator() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_terminator", false]], "with_truncated_rows() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_truncated_rows", false]], "with_truncated_rows() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_truncated_rows", 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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "write_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_table", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", false]], "zstd (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.ZSTD", false]]}, "objects": {"": [[7, 0, 0, "-", "datafusion"]], "datafusion": [[7, 1, 1, "", "Catalog"], [7, 1, 1, "", "CsvReadOptions"], [7, 4, 1, "", "DFSchema"], [7, 1, 1, "", "DataFrameWriteOptions"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "InsertOp"], [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, "", "SessionConfig"], [7, 1, 1, "", "Table"], [7, 1, 1, "", "WindowFrame"], [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, "-", "options"], [14, 0, 0, "-", "plan"], [7, 6, 1, "", "read_avro"], [7, 6, 1, "", "read_csv"], [7, 6, 1, "", "read_json"], [7, 6, 1, "", "read_parquet"], [15, 0, 0, "-", "record_batch"], [16, 0, 0, "-", "substrait"], [17, 0, 0, "-", "unparser"], [18, 0, 0, "-", "user_defined"]], "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.CsvReadOptions": [[7, 3, 1, "", "comment"], [7, 3, 1, "", "delimiter"], [7, 3, 1, "", "escape"], [7, 3, 1, "", "file_compression_type"], [7, 3, 1, "", "file_extension"], [7, 3, 1, "", "file_sort_order"], [7, 3, 1, "", "has_header"], [7, 3, 1, "", "newlines_in_values"], [7, 3, 1, "", "null_regex"], [7, 3, 1, "", "quote"], [7, 3, 1, "", "schema"], [7, 3, 1, "", "schema_infer_max_records"], [7, 3, 1, "", "table_partition_cols"], [7, 3, 1, "", "terminator"], [7, 2, 1, "", "to_inner"], [7, 3, 1, "", "truncated_rows"], [7, 2, 1, "", "with_comment"], [7, 2, 1, "", "with_delimiter"], [7, 2, 1, "", "with_escape"], [7, 2, 1, "", "with_file_compression_type"], [7, 2, 1, "", "with_file_extension"], [7, 2, 1, "", "with_file_sort_order"], [7, 2, 1, "", "with_has_header"], [7, 2, 1, "", "with_newlines_in_values"], [7, 2, 1, "", "with_null_regex"], [7, 2, 1, "", "with_quote"], [7, 2, 1, "", "with_schema"], [7, 2, 1, "", "with_schema_infer_max_records"], [7, 2, 1, "", "with_table_partition_cols"], [7, 2, 1, "", "with_terminator"], [7, 2, 1, "", "with_truncated_rows"]], "datafusion.DataFrameWriteOptions": [[7, 3, 1, "", "_raw_write_options"]], "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.InsertOp": [[7, 3, 1, "", "APPEND"], [7, 3, 1, "", "OVERWRITE"], [7, 3, 1, "", "REPLACE"]], "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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "writer_version"]], "datafusion.RecordBatch": [[7, 2, 1, "", "__arrow_c_array__"], [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.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, 3, 1, "", "__slots__"], [7, 3, 1, "", "_inner"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"]], "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.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_exist"], [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, 3, 1, "", "__slots__"], [0, 3, 1, "", "_inner"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"]], "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, "", "__datafusion_logical_extension_codec__"], [1, 2, 1, "", "__datafusion_task_context_provider__"], [1, 2, 1, "", "__repr__"], [1, 2, 1, "", "_convert_file_sort_order"], [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"], [1, 2, 1, "", "with_logical_extension_codec"]], "datafusion.context.TableProviderExportable": [[1, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[2, 1, 1, "", "Compression"], [2, 1, 1, "", "DataFrame"], [2, 1, 1, "", "DataFrameWriteOptions"], [2, 1, 1, "", "InsertOp"], [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, "", "__aiter__"], [2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__iter__"], [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_column"], [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, "", "parse_sql_expr"], [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, "", "select_exprs"], [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"], [2, 2, 1, "", "write_table"]], "datafusion.dataframe.DataFrameWriteOptions": [[2, 3, 1, "", "_raw_write_options"]], "datafusion.dataframe.InsertOp": [[2, 3, 1, "", "APPEND"], [2, 3, 1, "", "OVERWRITE"], [2, 3, 1, "", "REPLACE"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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_formatter_parameters"], [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, "", "_max_rows"], [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, 5, 1, "", "max_rows"], [3, 3, 1, "", "max_width"], [3, 3, 1, "", "min_rows"], [3, 2, 1, "", "register_formatter"], [3, 5, 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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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.options": [[13, 1, 1, "", "CsvReadOptions"]], "datafusion.options.CsvReadOptions": [[13, 3, 1, "", "comment"], [13, 3, 1, "", "delimiter"], [13, 3, 1, "", "escape"], [13, 3, 1, "", "file_compression_type"], [13, 3, 1, "", "file_extension"], [13, 3, 1, "", "file_sort_order"], [13, 3, 1, "", "has_header"], [13, 3, 1, "", "newlines_in_values"], [13, 3, 1, "", "null_regex"], [13, 3, 1, "", "quote"], [13, 3, 1, "", "schema"], [13, 3, 1, "", "schema_infer_max_records"], [13, 3, 1, "", "table_partition_cols"], [13, 3, 1, "", "terminator"], [13, 2, 1, "", "to_inner"], [13, 3, 1, "", "truncated_rows"], [13, 2, 1, "", "with_comment"], [13, 2, 1, "", "with_delimiter"], [13, 2, 1, "", "with_escape"], [13, 2, 1, "", "with_file_compression_type"], [13, 2, 1, "", "with_file_extension"], [13, 2, 1, "", "with_file_sort_order"], [13, 2, 1, "", "with_has_header"], [13, 2, 1, "", "with_newlines_in_values"], [13, 2, 1, "", "with_null_regex"], [13, 2, 1, "", "with_quote"], [13, 2, 1, "", "with_schema"], [13, 2, 1, "", "with_schema_infer_max_records"], [13, 2, 1, "", "with_table_partition_cols"], [13, 2, 1, "", "with_terminator"], [13, 2, 1, "", "with_truncated_rows"]], "datafusion.plan": [[14, 1, 1, "", "ExecutionPlan"], [14, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "children"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "from_proto"], [14, 5, 1, "", "partition_count"], [14, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_graphviz"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "display_indent_schema"], [14, 2, 1, "", "from_proto"], [14, 2, 1, "", "inputs"], [14, 2, 1, "", "to_proto"], [14, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[15, 1, 1, "", "RecordBatch"], [15, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[15, 2, 1, "", "__arrow_c_array__"], [15, 3, 1, "", "record_batch"], [15, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[15, 2, 1, "", "__aiter__"], [15, 2, 1, "", "__anext__"], [15, 2, 1, "", "__iter__"], [15, 2, 1, "", "__next__"], [15, 2, 1, "", "next"], [15, 3, 1, "", "rbs"]], "datafusion.substrait": [[16, 1, 1, "", "Consumer"], [16, 1, 1, "", "Plan"], [16, 1, 1, "", "Producer"], [16, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[16, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[16, 2, 1, "", "encode"], [16, 3, 1, "", "plan_internal"]], "datafusion.substrait.Producer": [[16, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[16, 2, 1, "", "deserialize"], [16, 2, 1, "", "deserialize_bytes"], [16, 2, 1, "", "serialize"], [16, 2, 1, "", "serialize_bytes"], [16, 2, 1, "", "serialize_to_plan"]], "datafusion.unparser": [[17, 1, 1, "", "Dialect"], [17, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[17, 2, 1, "", "default"], [17, 3, 1, "", "dialect"], [17, 2, 1, "", "duckdb"], [17, 2, 1, "", "mysql"], [17, 2, 1, "", "postgres"], [17, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[17, 2, 1, "", "plan_to_sql"], [17, 3, 1, "", "unparser"], [17, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[18, 1, 1, "", "Accumulator"], [18, 1, 1, "", "AggregateUDF"], [18, 1, 1, "", "AggregateUDFExportable"], [18, 1, 1, "", "ScalarUDF"], [18, 1, 1, "", "ScalarUDFExportable"], [18, 1, 1, "", "TableFunction"], [18, 1, 1, "", "Volatility"], [18, 1, 1, "", "WindowEvaluator"], [18, 1, 1, "", "WindowUDF"], [18, 1, 1, "", "WindowUDFExportable"], [18, 4, 1, "", "_R"], [18, 6, 1, "", "_is_pycapsule"], [18, 6, 1, "", "data_type_or_field_to_field"], [18, 6, 1, "", "data_types_or_fields_to_field_list"], [18, 4, 1, "", "udaf"], [18, 4, 1, "", "udf"], [18, 4, 1, "", "udtf"], [18, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "merge"], [18, 2, 1, "", "state"], [18, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udaf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udaf"]], "datafusion.user_defined.AggregateUDFExportable": [[18, 2, 1, "", "__datafusion_aggregate_udf__"]], "datafusion.user_defined.ScalarUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udf"]], "datafusion.user_defined.ScalarUDFExportable": [[18, 2, 1, "", "__datafusion_scalar_udf__"]], "datafusion.user_defined.TableFunction": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_table_udf"], [18, 2, 1, "", "_create_table_udf_decorator"], [18, 3, 1, "", "_udtf"], [18, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[18, 3, 1, "", "Immutable"], [18, 3, 1, "", "Stable"], [18, 3, 1, "", "Volatile"], [18, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "evaluate_all"], [18, 2, 1, "", "evaluate_all_with_rank"], [18, 2, 1, "", "get_range"], [18, 2, 1, "", "include_rank"], [18, 2, 1, "", "is_causal"], [18, 2, 1, "", "memoize"], [18, 2, 1, "", "supports_bounded_execution"], [18, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_window_udf"], [18, 2, 1, "", "_create_window_udf_decorator"], [18, 2, 1, "", "_get_default_name"], [18, 2, 1, "", "_normalize_input_types"], [18, 3, 1, "", "_udwf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udwf"]], "datafusion.user_defined.WindowUDFExportable": [[18, 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, 13, 18, 20, 21, 26, 27, 29, 31, 32, 33, 34, 35, 36], "0": [2, 4, 5, 7, 18, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 45, 46], "007bff": 37, "01": [23, 27, 30], "01t00": 27, "02": 27, "03": 27, "038": 34, "04023": 5, "05": [27, 30], "06": [27, 30], "08": 27, "09": [23, 27], "09t15": 27, "1": [2, 4, 5, 7, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 46], "10": [2, 3, 4, 5, 7, 18, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 46], "100": [3, 5, 22, 23, 24, 33, 35, 36, 37, 38, 46], "1000": [1, 3, 7, 11, 13, 25, 37], "10000000": 34, "1024": [1, 2, 3, 7, 37], "103": [22, 35, 38], "104": [22, 35, 38, 46], "1048576": [2, 7], "105": [22, 24, 35, 38], "107": [24, 34], "109": [22, 35, 38, 46], "11": [22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "110": 24, "111": [22, 35, 38, 46], "112": 24, "115": [22, 24, 35, 38], "12": [21, 22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "120": [5, 22, 24, 35, 38], "121": 24, "122": [22, 35, 38], "123": [22, 35, 38, 46], "12371": 5, "125": [5, 24, 27, 46], "128": [4, 5, 7], "13": [22, 24, 26, 27, 29, 31, 33, 35, 38], "130": [22, 35, 38, 46], "135": [22, 35, 38], "136": 24, "14": [22, 23, 24, 26, 27, 30, 31, 35, 38], "140": 24, "145": [22, 24, 35, 38], "149": 46, "15": [22, 23, 24, 26, 27, 30, 31, 33, 35, 38], "150": [22, 33, 35, 38], "158": 46, "159": [22, 35, 38, 46], "16": [23, 24, 26, 27, 31, 34], "160": 46, "161": 46, "162": 46, "163": 46, "165": [27, 46], "17": [23, 24, 26, 27, 31, 33], "18": [23, 24, 26, 27, 31, 33], "19": [24, 26, 27, 46], "190": 46, "1902": 5, "1921": 27, "195": [22, 35, 38], "1970": 27, "1m": [2, 7], "1px": 37, "2": [2, 3, 4, 5, 7, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "20": [2, 5, 18, 22, 24, 26, 27, 32, 33, 35, 37, 38, 46], "200": 46, "20000": [2, 7], "2021": 23, "2026": 27, "205": [22, 35, 38], "2097152": [3, 37], "21": [23, 24, 26, 27, 33, 36], "22": [2, 26, 35], "223": 46, "224": [4, 5, 7], "229": 46, "23": [23, 26, 33, 46], "23076923076923": 24, "2345": 5, "24": [23, 26], "25": [3, 5, 22, 24, 26, 27, 33, 35, 36, 37, 38], "256": [4, 5, 7], "25806451612904": 24, "26": [26, 33], "27": 26, "28": [23, 26, 33], "28571428571429": 24, "29": 26, "2mb": [3, 37], "3": [2, 5, 7, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "30": [22, 24, 26, 32, 33, 35, 38], "300": [3, 37], "309": [22, 25, 27, 35, 38], "31": 26, "314": [22, 27, 35, 38], "318": [22, 27, 35, 38], "319": 25, "32": 26, "33": [23, 26], "333333333333332": 33, "333333333333336": 24, "34": [26, 27], "35": [22, 23, 24, 26, 30, 33, 35, 38], "36": [23, 26], "37": 26, "38": 26, "384": [4, 5, 7], "39": [22, 26, 35, 38, 46], "390": 25, "395": [22, 35, 38], "3rd": 5, "3x": 34, "4": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 46], "40": [5, 21, 22, 24, 26, 32, 35, 38], "405": [22, 27, 35, 38], "41": 26, "42": [24, 26, 33, 35], "42857142857143": 33, "43": [22, 26, 33, 35, 38, 45], "44": [22, 26, 35, 38], "45": [22, 24, 26, 27, 33, 35, 38], "4579": 27, "46": [24, 26], "465": 25, "47": 24, "4732": 27, "48": [22, 24, 35, 38], "49": [22, 26, 35, 38], "495": [22, 35, 38], "4mb": 37, "5": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "50": [3, 5, 7, 22, 24, 32, 35, 37, 38], "500": [3, 7], "5000000": 34, "51": [23, 24, 29, 38, 46], "512": [4, 5, 7], "5129": 27, "52": [22, 24, 35, 38], "525": [22, 27, 35, 38], "53": 24, "530": [22, 35, 38], "534": [22, 27, 35, 38], "54": [24, 26, 27], "55": [22, 24, 33, 35, 38], "56": 24, "58": [22, 24, 27, 35, 38], "5811388300841898": 25, "59": [22, 35, 38], "6": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 36, 38, 39, 46], "60": [5, 22, 24, 33, 35, 38], "62": [22, 35, 38], "625": [22, 27, 35, 38], "63": [22, 24, 35, 38], "630": [22, 35, 38], "634": [22, 27, 35, 38], "64": [2, 7, 21, 22, 33, 35, 38], "65": [22, 24, 26, 30, 33, 35, 38], "66": [23, 24], "666666666666668": 33, "66666666666667": 24, "666667": 5, "67": [24, 26], "7": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "70": [22, 24, 33, 35, 38], "71": [24, 26], "72": 24, "725": 25, "73": 23, "732": 27, "744596391": 27, "75": [5, 22, 24, 35, 38, 46], "76": 33, "77777777777777": 24, "78": [22, 23, 35, 38, 46], "785714285714285": 24, "78571428571429": 24, "79": [22, 23, 35, 38], "8": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "80": [5, 22, 24, 33, 35, 38], "81": 23, "82": [22, 35, 38, 46], "83": [22, 24, 35, 38, 46], "833333333333336": 24, "84": [22, 33, 35, 38, 46], "84399300293046": 25, "85": [22, 24, 35, 38], "855": 27, "86": 24, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "88888888888889": 24, "8px": 37, "9": [5, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "90": [5, 22, 24, 33, 35, 38], "91": 24, "92": 23, "94": [23, 30], "95": [23, 24, 33, 46], "96": [23, 24], "972": 27, "98": [24, 46], "A": [0, 1, 2, 4, 5, 7, 8, 14, 16, 18, 23, 25, 29, 33, 35, 36, 41, 45, 47], "AND": [2, 4, 5, 7, 18], "AS": 2, "As": [5, 18, 20, 26, 30, 35], "At": [5, 20], "BY": 18, "Be": 2, "By": [2, 7, 13, 20, 21, 24, 35], "For": [1, 2, 5, 16, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 34, 36, 37, 38, 47], "INTO": [1, 7], "If": [0, 1, 2, 3, 4, 5, 7, 8, 11, 13, 18, 20, 21, 24, 27, 29, 31, 33, 35, 38, 41, 45, 46], "In": [18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 39, 46], "It": [1, 2, 3, 4, 5, 7, 18, 20, 22, 23, 24, 26, 29, 44], "Its": 22, "No": [2, 7], "Not": [2, 4, 7], "OR": [4, 5, 7], "On": [2, 20, 35], "One": [2, 4, 20, 24, 33, 35], "Or": [34, 37], "That": [4, 7], "The": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 39, 46, 47], "Then": 31, "There": [2, 5, 7, 27, 31, 35], "These": [2, 5, 7, 15, 18, 24, 26, 31, 34, 36, 37, 46], "To": [2, 5, 20, 21, 26, 27, 30, 31, 33, 34, 35, 36, 38, 39, 45, 46, 47], "Will": [2, 37], "With": [4, 7, 36, 38, 39], "_": 20, "__add__": [4, 7], "__aiter__": [2, 7, 15], "__and__": [4, 7], "__anext__": [7, 15], "__arrow_c_array__": [1, 7, 15, 39], "__arrow_c_stream__": [1, 2, 36, 39], "__call__": [3, 18], "__datafusion_aggregate_udf__": 18, "__datafusion_catalog_provider__": [1, 47], "__datafusion_logical_extension_codec__": [1, 47], "__datafusion_scalar_udf__": 18, "__datafusion_table_function__": 31, "__datafusion_table_provider__": [1, 20, 45], "__datafusion_task_context_provider__": 1, "__datafusion_window_udf__": 18, "__eq__": [4, 7], "__ge__": [4, 7], "__getitem__": [2, 4, 7], "__gt__": [4, 7], "__init__": [18, 31], "__invert__": [4, 7], "__iter__": [2, 7, 15], "__le__": [4, 7], "__lt__": [4, 7], "__mod__": [4, 7], "__mul__": [4, 7], "__ne__": [4, 7], "__next__": [7, 15], "__or__": [4, 7], "__radd__": [4, 7], "__rand__": [4, 7], "__repr__": [0, 1, 2, 3, 4, 7, 14, 18, 37], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__slots__": [0, 7], "__str__": 18, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 38, "_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_file_sort_ord": 1, "_convert_table_partition_col": 1, "_create_table_udf": 18, "_create_table_udf_decor": 18, "_create_window_udf": 18, "_create_window_udf_decor": 18, "_custom_cell_build": 3, "_custom_header_build": 3, "_default_formatt": 3, "_export_to_c_capsul": 2, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": 18, "_get_javascript": 3, "_inner": [0, 7], "_intern": [0, 1, 2, 4, 7, 13, 14, 15, 16, 17], "_io_custom_table_provid": 31, "_is_pycapsul": 18, "_max_row": 3, "_normalize_input_typ": 18, "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": 18, "_raw_plan": [7, 14], "_raw_schema": 0, "_raw_write_opt": [2, 7], "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 37], "_sum": [18, 31], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_typesh": 18, "_udaf": 18, "_udf": 18, "_udtf": 18, "_udwf": 18, "_validate_bool": 3, "_validate_formatter_paramet": 3, "_validate_positive_int": 3, "_window_fram": 4, "_window_funct": 5, "a0": 26, "a_siz": 26, "ab": [4, 5, 7], "abc": [0, 1, 2, 3, 4, 7, 8, 18], "abi": 20, "abi3": 21, "abi_st": 20, "abil": [35, 46], "abl": [7, 14], "about": [16, 17, 20, 22, 33, 34, 36], "abov": [5, 20, 24, 29, 33, 36, 46], "absolut": [4, 5, 7], "abstract": [0, 8, 18, 26, 31, 35, 36], "accept": [1, 2, 4, 5, 7, 36, 39], "access": [1, 3, 7, 11, 20, 26, 35, 36, 47], "access_key_id": 35, "account": 35, "accum": 18, "accumul": [18, 31], "accur": 34, "achiev": 22, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 20, "across": [3, 18, 20, 26, 34, 37, 46], "act": [7, 14], "action": 36, "activ": [20, 21], "actual": [2, 34, 36], "ad": [2, 20, 35], "adapt": 20, "add": [0, 1, 2, 3, 4, 5, 20, 21, 36], "add_3": 2, "addit": [2, 3, 4, 5, 7, 16, 17, 18, 20, 21, 31, 34, 35, 36, 41, 47], "addition": [20, 23], "adhoc": 21, "adopt": 20, "advanc": [0, 1, 2, 7, 11, 31, 35, 36, 37], "advantag": [20, 21, 22], "affect": [7, 13, 18, 24, 34, 37], "after": [1, 2, 3, 4, 5, 7, 18, 29, 31, 37], "ag": [26, 36], "against": [1, 2, 4, 5, 18, 20, 22, 32, 37], "age_col": 26, "age_in_year": 26, "agg": 2, "aggreg": [1, 2, 4, 5, 7, 18, 23, 28, 34, 36], "aggregatefunct": 4, "aggregateudf": [1, 18], "aggregateudfexport": 18, "agnost": 36, "aim": 38, "aiter": 2, "albert": 26, "algorithm": [2, 5], "alia": [0, 1, 2, 3, 4, 5, 7, 23, 24, 26, 27, 30, 31, 33, 36, 39], "alias": 21, "alic": 29, "align": [2, 37], "all": [0, 1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41, 46], "alloc": [2, 34], "allow": [1, 2, 3, 7, 13, 15, 18, 20, 21, 22, 24, 26, 27, 31, 34, 35, 36, 37, 41, 46], "allow_single_file_parallel": [2, 7], "alpha": [31, 35], "alreadi": [2, 5, 7, 20], "also": [1, 2, 3, 7, 18, 20, 21, 22, 24, 26, 27, 31, 33, 36, 37, 38, 46], "altern": [30, 41, 44], "alternate_a": 2, "alwai": [18, 37], "amazons3": [12, 35], "ambigu": 29, "amount": [2, 18, 36], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 44, 46, 47], "analyt": 33, "analyz": [2, 4, 21], "ani": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 24, 29, 31, 33, 35, 36, 39], "annot": 21, "anoth": [2, 5, 7, 11, 20, 46], "anti": [2, 28], "apach": [1, 2, 4, 5, 7, 20, 21, 22, 39], "apart": 22, "api": [1, 2, 4, 7, 14, 20, 21, 22, 27, 33, 34, 35, 36, 37, 46], "appear": [4, 5, 7, 20], "append": [2, 5, 7, 31, 35], "appli": [2, 3, 7, 15, 20, 37], "applic": [20, 34], "approach": [5, 24, 26, 31, 34, 35, 46], "appropri": [18, 21, 35, 37], "approx_distinct": [5, 24], "approx_median": [5, 24], "approx_percentile_cont": [5, 24], "approx_percentile_cont_with_weight": [5, 24], "approxim": [5, 24], "ar": [1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 46], "arbitrari": [2, 5], "arc": [4, 5, 7, 20, 31, 45, 47], "architectur": 34, "area": 20, "arg": [1, 2, 5, 7, 16, 18, 21], "argument": [2, 4, 5, 7, 18, 24, 31], "arithmet": 36, "around": [5, 21, 35], "arr": 36, "arrai": [1, 2, 3, 4, 5, 7, 18, 24, 28, 31, 35, 36, 39], "array1": 5, "array2": 5, "array_agg": [5, 24], "array_append": [5, 21], "array_cat": [5, 26], "array_concat": [5, 26], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 26], "array_empti": [4, 5, 7, 26], "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, 26], "array_replac": 5, "array_replace_al": 5, "array_replace_n": 5, "array_res": 5, "array_slic": [4, 5, 7], "array_sort": 5, "array_to_str": 5, "array_union": 5, "arriv": 39, "arrow": [1, 2, 3, 4, 5, 7, 15, 21, 22, 25, 35, 38, 42], "arrow_cast": [4, 5, 7, 27], "arrow_datafusion_python_root": 21, "arrow_t": 36, "arrow_typ": 20, "arrow_typeof": [4, 5, 7], "arrowarrai": [7, 15], "arrowarrayexport": 1, "arrowarraystream": 2, "arrowschema": [7, 15], "arrowstreamexport": 1, "arxiv": 5, "as_pi": [18, 31], "ascend": [4, 5, 7, 24, 33, 36], "ascii": [4, 5, 7, 13], "asin": [4, 5, 7], "asinh": [4, 5, 7], "ask": 20, "assembl": 1, "assign": [4, 5, 7], "assist": 21, "associ": [0, 1, 4, 5, 7, 20], "assum": [2, 5, 18, 21, 35], "assumpt": 22, "async": [2, 7, 15, 36], "asynchron": [7, 15, 36], "asyncio": 36, "asynciter": 2, "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [22, 35, 38], "attach": [4, 5, 7, 34], "attack": [22, 24, 27, 33, 35, 38, 46], "attempt": [1, 2, 7, 15, 18, 20, 21], "attr_nam": 47, "attribut": 20, "auto": 19, "autoapi": 19, "automat": [1, 2, 7, 34, 36, 37], "avail": [2, 3, 7, 24, 28, 31, 34, 35, 36, 45], "averag": [5, 18, 33], "avg": [5, 18, 24, 33], "avoid": [1, 7, 11, 20], "avro": [1, 7, 11, 35, 36, 37, 42], "await": 36, "awar": [2, 30], "aws_access_key_id": 35, "aws_secret_access_kei": 35, "b": [2, 5, 25, 26, 31, 32, 35, 36, 39], "back": [4, 18, 20, 22, 31, 35, 37, 39], "background": 37, "backward": 3, "balanc": 37, "bar": 34, "base": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 18, 19, 26, 29, 31, 34, 35], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 18, 31], "basic": [23, 28, 30, 31, 34, 35], "basic_typ": 27, "batch": [1, 2, 3, 7, 14, 15, 18, 25, 31, 32, 35, 36, 37, 39], "batch_arrai": 31, "batch_siz": [1, 7], "becaus": [2, 4, 7, 20, 31, 35], "becca": 26, "beedril": [22, 33, 35, 38], "beedrillmega": [22, 33, 35, 38], "been": [1, 3, 20], "befor": [3, 5, 21, 26, 31, 37], "beforehand": [1, 7], "begin": [1, 4, 5, 7, 13, 18, 37], "behavior": [7, 13], "being": 2, "below": [23, 24, 35, 36], "benefit": [2, 7, 34], "best": [1, 2, 7, 20], "beta": 35, "better": [2, 7, 37], "between": [1, 4, 5, 7, 18, 20, 22, 23, 29, 31, 33, 34], "bia": 18, "bias_10": 18, "biased_numb": 18, "biasednumb": 18, "bin": [5, 21], "binari": [4, 5, 7, 14, 20, 47], "binaryexpr": [4, 7], "bind": [7, 18, 20, 21, 22, 35, 38], "bit": [4, 5, 7], "bit_and": [5, 24], "bit_length": [4, 5, 7], "bit_or": [5, 24], "bit_pack": [2, 7], "bit_xor": [5, 24], "bitwis": [5, 26], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [22, 35, 38], "blastoisemega": [22, 35, 38], "blob": [4, 7], "blog": [21, 31], "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": 26, "bob": 29, "bodi": 3, "bool": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 17, 18], "bool_": 31, "bool_and": [5, 24], "bool_or": [5, 24], "boolean": [3, 4, 5, 7, 28], "boost": [2, 7], "bootstrap": 21, "border": 37, "borrow": 20, "both": [2, 4, 5, 7, 18, 20, 21, 26, 29, 31, 36, 46], "bottleneck": 34, "bound": [4, 7, 18, 31, 33, 45, 47], "boundari": [18, 20, 33, 36], "bow": 33, "box": 20, "bracket": 26, "break": 20, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 35, "bug": [20, 22, 24, 33, 35, 38], "build": [3, 4, 5, 7, 20, 22, 23, 24, 33, 36, 47], "build_flag": 21, "build_tabl": [8, 9, 10], "builder": [3, 4, 5, 7, 13, 24, 33], "built": [0, 2, 7, 18, 20, 24, 26, 27, 31], "bulb": 27, "bulbafleur": 27, "bulbasaur": [22, 27, 33, 35, 38], "bulk": 20, "butterfre": [22, 33, 35, 38], "button": 3, "byte": [1, 2, 3, 4, 5, 7, 14, 16], "byte_stream_split": [2, 7], "bz2": [7, 13], "c": [1, 2, 7, 15, 18, 20, 21, 22, 25, 35, 36, 39], "cach": [2, 3, 7], "calcul": [2, 5, 18, 31], "call": [0, 2, 3, 4, 5, 7, 14, 15, 16, 17, 18, 20, 23, 24, 26, 31, 35, 36, 37], "call0": 47, "callabl": [2, 3, 18], "caller": 20, "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "can_retir": 26, "candid": 4, "cannot": [1, 5, 7, 11, 46], "canon": 20, "canonical_nam": [4, 7], "capabl": [34, 46], "capit": [4, 5, 7, 30], "capsul": [2, 20, 47], "capsule_t": 45, "capsuletyp": 18, "cardin": [4, 5, 7, 26], "carefulli": 20, "cargo": 21, "carlo": 26, "cascad": [0, 7], "case": [2, 4, 5, 7, 18, 20, 24, 27, 30, 31, 33, 34, 35, 46], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 28, 46], "castabl": [4, 7], "catalog": [1, 2, 7, 17, 19, 47], "catalog_nam": 1, "catalogprovid": [0, 1, 35, 46, 47], "catalogproviderexport": 1, "categori": [2, 27], "caterpi": [22, 33, 35, 38], "caus": [1, 7, 21, 33], "cbrt": [4, 5, 7], "cdatainterfac": [1, 2], "ceil": [4, 5, 7], "cell": [3, 37], "cellformatt": 3, "certain": 18, "certainli": 21, "chain": [2, 7, 13], "challeng": 20, "chang": [3, 18, 21, 26, 37], "chansei": 24, "char": 27, "char_length": [4, 5, 7, 27], "charact": [3, 4, 5, 7, 13, 37, 41], "character_length": [4, 5, 7], "characterist": 34, "charizard": [22, 27, 33, 35, 38, 46], "charizardmega": [22, 27, 33, 35, 38, 46], "charli": 29, "charmand": [22, 27, 33, 35, 38], "charmeleon": [22, 27, 33, 35, 38], "check": [5, 26, 27], "checksum": [4, 5, 7], "child": 37, "children": [7, 14], "chr": [4, 5, 7], "chrono": 5, "chunk": [2, 7], "chunkedarrai": 2, "ci": [20, 21], "citycab": 29, "class": [21, 31, 35, 37], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [18, 33], "clean": 21, "clefabl": 33, "clefairi": [24, 33], "click": 3, "clone": [20, 21, 31, 45, 47], "close": 33, "cloud": 34, "co": [4, 5, 7], "coalesc": [2, 5, 27, 29], "coalesce_duplicate_kei": [2, 29], "code": [3, 4, 5, 7, 20, 27, 35], "codebas": 21, "codec": [1, 2, 7, 47], "coeffici": 5, "coerc": 5, "coercion": 2, "col": [2, 3, 4, 5, 7, 18, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 39, 46], "col1": [18, 36], "col2": 36, "col_attack": 24, "col_diff": 31, "col_idx": 3, "col_spe": 24, "col_type_1": 24, "col_type_2": 24, "collaps": [3, 37], "collect": [1, 2, 3, 4, 7, 18, 22, 23, 25, 32, 34, 36, 46], "collect_column": [2, 36], "collect_partit": 2, "collid": [2, 7], "color": [26, 37], "column": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 23, 24, 25, 27, 28, 29, 31, 33, 34, 41, 46], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [2, 4, 7, 13], "column_specific_opt": [2, 7], "com": [4, 5, 7, 21], "combin": [1, 2, 5, 7, 11, 26, 29, 30, 31, 34], "come": [35, 43], "command": [1, 7, 21, 35], "comment": [7, 13, 20], "common": [4, 5, 7, 8, 9, 10, 20, 24, 27, 29, 33, 35, 39], "commun": [20, 21], "compar": [5, 33], "comparison": [4, 7, 24, 36, 46], "compat": [3, 20, 26, 36], "compel": 20, "compet": 34, "compil": [20, 26], "complet": [4, 5, 7, 8, 20, 21, 31, 35, 36, 37, 45, 47], "complex": [2, 22, 27, 34], "complic": 2, "compon": 5, "compos": 5, "composit": 3, "comprehens": 37, "compress": [1, 2, 7, 11, 13], "compression_level": [2, 7], "comput": [2, 4, 5, 7, 18, 20, 26, 31, 36], "concat": 5, "concat_w": 5, "concaten": [5, 26], "concatenated_arrai": 26, "concept": [1, 2, 4, 7, 26, 34, 46], "concis": 21, "concurr": [1, 7, 34, 36], "condit": 28, "config": [1, 7, 20, 21, 34], "config_intern": [1, 7], "config_opt": [1, 7], "configopt": 20, "configur": [1, 3, 7, 13, 20, 21, 46], "configure_formatt": [3, 7, 37], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 23], "consecut": 5, "consequ": 46, "consid": [5, 46], "consider": 37, "consist": [4, 5, 37], "consol": [2, 36], "constraint": 3, "construct": [2, 4, 7, 18, 31, 36, 45], "constructor": [0, 2, 4, 7, 14, 15, 16, 17, 18], "consum": [8, 16, 36, 39], "contain": [2, 3, 4, 5, 7, 13, 14, 18, 19, 20, 21, 24, 26, 29, 31, 37, 41], "content": [21, 28, 37], "context": [0, 3, 5, 7, 11, 14, 16, 19, 20, 31, 32, 34, 37, 39, 46], "continu": [5, 20], "contrast": 29, "contribut": [21, 47], "contributor": 20, "control": [1, 2, 7, 24, 31, 33, 34, 36, 41], "conveni": [18, 35], "convent": [4, 7, 20], "convers": [20, 21, 23, 36, 46], "convert": [0, 1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 18, 20, 23, 25, 26, 27, 31, 32, 36, 46], "copi": [7, 15, 20, 21, 22, 31, 39], "copyto": 4, "core": [2, 4, 7, 20, 34, 35, 47], "corr": [5, 24], "correctli": [2, 18, 20], "correl": 5, "correspond": [5, 29], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": [22, 31], "costli": 18, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [2, 4, 7, 20, 35], "count": [2, 5, 7, 24, 25, 34, 36], "count_star": 5, "counterpart": [5, 20], "coupl": [20, 33], "covar": 5, "covar_pop": [5, 24], "covar_samp": [5, 24], "covari": 5, "cover": [23, 27, 34], "cpython": [18, 21], "cr": [31, 45, 47], "crate": [20, 47], "creat": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 32, 34, 39, 46], "create_datafram": [1, 31, 35], "create_dataframe_from_logical_plan": 1, "create_namespace_if_not_exist": 35, "create_t": 35, "createcatalog": 4, "createcatalogschema": 4, "created_bi": [2, 7], "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "creation": 36, "credenti": 35, "criteria": [5, 33], "crlf": [7, 13], "css": [3, 37], "cstream": 20, "cstring": 20, "csv": [0, 1, 2, 7, 11, 13, 20, 22, 24, 27, 33, 34, 35, 36, 37, 38, 42, 46], "csvreadopt": [1, 7, 11, 13, 41], "ctx": [0, 1, 2, 5, 7, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "cube": [4, 5, 7], "cubon": 24, "cume_dist": [5, 18, 33], "cumul": 5, "curr_valu": 31, "current": [0, 2, 3, 4, 5, 7, 14, 18, 20, 27, 31, 33, 37], "current_d": 5, "current_tim": 5, "custom": [1, 3, 7, 8, 14, 20, 29, 31, 34, 36, 42, 46], "custom_css": [3, 37], "custom_formatt": 3, "custom_html": 37, "customer_id": 29, "d": [2, 18, 39], "dai": [5, 27], "dant": 26, "dark": [24, 37], "data": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": [5, 7, 13, 20], "data_type_or_field_to_field": 18, "data_types_or_fields_to_field_list": 18, "databas": [0, 7, 26, 34], "dataflow": [7, 14], "datafram": [0, 1, 3, 4, 5, 6, 7, 11, 14, 15, 18, 19, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 46], "dataframe_formatt": [7, 19], "dataframehtmlformatt": 3, "dataframewriteopt": [2, 7], "datafus": [19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "datafusion_catalog": 47, "datafusion_catalog_provid": 47, "datafusion_df": 35, "datafusion_logical_extension_codec": 47, "datafusion_sql": 17, "datafusion_table_funct": 31, "datafusion_table_provid": [20, 45], "dataset": [0, 1, 3, 7, 27, 33, 34, 35, 37, 38], "datasourc": 8, "datastructur": [4, 7], "datatyp": [1, 2, 4, 7, 11, 13, 18, 31], "datatypemap": [4, 7, 20], "date": [5, 27, 36], "date32": 5, "date_bin": 5, "date_part": [5, 27], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "ddd": 37, "ddl": [1, 7], "dealloc": 4, "debug": 20, "decid": [18, 20], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": 18, "def": [2, 18, 22, 31, 35, 36, 37, 38, 46], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 13, 17, 18, 20, 21, 29, 31, 33, 34, 35, 37, 46], "default_max_infer_schema": [1, 7, 13], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [22, 27, 35, 38, 46], "defin": [0, 1, 2, 4, 7, 18, 20, 21, 27, 28, 33], "definit": [1, 4, 7, 18, 20, 23, 31], "degre": [4, 5, 7], "delet": [1, 7], "delimit": [1, 5, 7, 11, 13, 41], "delta": 20, "delta_binary_pack": [2, 7], "delta_byte_arrai": [2, 7], "delta_length_byte_arrai": [2, 7], "delta_t": 35, "deltalak": 35, "deltat": 35, "demand": [36, 39], "demonstr": [1, 31, 33, 34, 38, 39], "dens": 5, "dense_rank": [5, 18, 33], "depend": [5, 20, 24, 31, 33, 47], "deprec": [1, 2, 3, 5, 6, 33], "deprecationwarn": 3, "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "deriv": 20, "descend": 5, "describ": [2, 5, 20, 24, 25, 31, 35], "describet": 4, "descript": [1, 5, 18], "deseri": 16, "deserialize_byt": 16, "design": [20, 28], "desir": 5, "detail": [2, 4, 5, 7, 18, 21, 23, 25, 36, 41], "determin": [0, 2, 4, 5, 7, 18, 31], "dev": 21, "develop": [20, 35], "deviat": 5, "df": [1, 2, 4, 5, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 46], "df1": 36, "df2": 36, "df_filter": 32, "df_view": 32, "dfschema": 7, "dialect": [17, 46], "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 26, 32, 35, 36, 46], "dictionary_en": [2, 7], "dictionary_page_size_limit": [2, 7], "differ": [2, 4, 5, 7, 13, 14, 18, 20, 27, 31, 34, 35, 36, 37], "difficult": 20, "digest": 5, "dimens": [4, 5, 7], "dimension": 2, "directli": [3, 4, 5, 16, 18, 20, 35, 36, 39, 47], "directori": [1, 7, 21], "disabl": [1, 7, 29, 37], "discard": 2, "discuss": [20, 35], "disk": [1, 7, 9, 10], "displai": [3, 7, 14, 23, 25, 32, 36, 38], "display_graphviz": [7, 14], "display_ind": [7, 14], "display_indent_schema": [7, 14], "display_nam": [4, 7], "distanc": 5, "distinct": [2, 4, 5, 7, 35], "distinctli": 20, "distinguish": 20, "distribut": [5, 34], "div": 37, "divid": [5, 34], "divis": [4, 5, 7], "divisor": 5, "dml": [1, 7], "dmlstatement": 4, "do": [0, 1, 2, 7, 18, 20, 21, 23, 24, 31, 33, 35, 45, 46], "doc": [1, 2, 5, 17], "docstr": 21, "document": [1, 2, 4, 5, 7, 18, 19, 20, 21, 23, 34, 36, 38, 41], "doe": [2, 3, 5, 7, 13, 18, 20, 21, 33, 35], "doesn": 18, "dominant_typ": 27, "done": [2, 24, 31, 35], "dot": [7, 14], "doubl": [2, 30, 39], "double_func": 18, "double_it": 18, "double_udf": 18, "down": [20, 33, 35], "downcast": [20, 47], "download": [23, 30, 38], "downstream": 39, "dragon": [22, 24, 27, 33, 35, 38], "dragonair": 33, "dratini": 33, "drop": [1, 2, 7, 36], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [2, 37], "duckdb": 17, "due": [1, 7, 11, 21, 47], "duplic": [2, 4, 5, 7, 28, 37], "dure": [18, 21], "dyn": 47, "dynamic_lookup": 21, "e": [4, 5, 7, 18, 31], "each": [1, 2, 4, 5, 7, 18, 20, 21, 24, 27, 33, 36, 37], "eagerli": 36, "earli": 20, "easi": [20, 43], "easier": [20, 27, 38], "easili": [4, 7, 20], "east": 35, "effect": [30, 38], "effici": 34, "effort": [2, 7, 20], "either": [1, 2, 4, 7, 18, 20, 24, 35, 36, 46], "electr": [24, 33], "element": [2, 3, 4, 5, 7, 26], "ellipsi": [2, 18], "els": [31, 47], "else_expr": 4, "embed": [2, 7], "employe": 26, "empti": [1, 4, 5, 7, 13, 14, 24, 26, 36], "empty_t": 1, "emptyrel": 4, "enabl": [1, 2, 7, 20, 34, 36, 37], "enable_cell_expans": [3, 7, 37], "enable_url_t": 1, "encod": [2, 5, 7, 16], "encount": 20, "encourag": 21, "end": [0, 2, 4, 5, 7, 14, 15, 17, 18, 33, 34], "end_bound": [4, 7], "ends_with": 5, "engin": [1, 7, 22, 23], "enough": 18, "ensur": [3, 7, 8, 13, 20, 34], "ensure_expr": 4, "ensure_expr_list": 4, "entir": [2, 7, 18, 24, 31, 33, 36], "entri": [2, 5, 24, 33, 36], "enum": [2, 4, 7, 18], "enumer": 18, "environ": [21, 22, 34, 36, 37], "equal": [2, 4, 5, 7], "equival": [2, 5, 18, 20, 24, 33, 36], "error": [1, 3, 4, 7, 13, 21], "escap": [7, 13, 41], "especi": 21, "essenti": [7, 15, 25], "etc": [1, 3, 4, 7, 9, 10, 18], "eval_rang": 18, "evalu": [2, 4, 5, 7, 18, 23, 24, 26, 31, 33, 34, 36], "evaluate_al": [18, 31], "evaluate_all_with_rank": [18, 31], "even": [1, 3, 7, 20, 29, 37], "evenli": 34, "event": 36, "everi": [5, 18], "everyth": [9, 10], "ex": [4, 7, 30], "exact": 20, "exactli": [2, 33], "examin": [4, 7], "exampl": [1, 2, 3, 4, 5, 7, 14, 18, 20, 23, 24, 26, 27, 29, 31, 32, 33, 35, 36, 38, 45, 46, 47], "exce": 3, "excel": 20, "except": [2, 4, 5, 7, 26, 46], "except_al": 2, "exclud": [2, 29], "execut": [1, 2, 4, 7, 13, 18, 20, 21, 22, 23, 34, 39], "execute_stream": [2, 7, 15, 36], "execute_stream_partit": [2, 36], "execution_plan": 2, "executionplan": [1, 2, 7, 14], "exeggcut": 24, "exist": [0, 1, 2, 3, 4, 5, 7, 20, 36], "exp": [4, 5, 7], "exp_smooth": 31, "expand": [2, 3, 37], "expans": [3, 37], "expect": [4, 5, 7, 13, 18, 20, 26, 31, 33, 36, 46], "expens": 2, "experi": 21, "explain": [2, 4], "explan": [2, 20, 23], "explicit": [4, 34, 36, 37], "explicitli": [18, 20, 36], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 31, "export": [1, 2, 7, 15, 18, 20, 21, 35, 42], "expos": [2, 20, 31, 35, 36, 45], "expr": [1, 2, 5, 7, 11, 13, 18, 19, 31, 33, 36], "expr1": 5, "expr2": 5, "expr_type_error": 4, "express": [1, 2, 4, 5, 7, 13, 18, 24, 27, 28, 31, 33, 47], "exprfuncbuild": [4, 7], "extend": [5, 8, 20], "extens": [1, 3, 4, 7, 11, 13, 37, 41, 47], "extern": [0, 7], "extract": [3, 4, 5, 7, 27, 47], "extraenv": 21, "f": [4, 23, 24, 26, 27, 33, 35, 36, 46], "f2f2f2": 37, "face": 20, "fact": [20, 31], "factor": 34, "factori": [4, 5, 7, 18], "fail": [2, 21, 27], "fair": [1, 7], "fairi": [24, 33], "fals": [2, 3, 4, 5, 7, 13, 18, 20, 21, 22, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 45], "familiar": 21, "far": 2, "faster": [2, 5, 7, 18, 34], "featur": [2, 5, 7, 20, 21, 29, 35, 39], "fetch": 21, "few": [20, 21, 23], "fewer": 3, "ffi": [0, 1, 7, 18, 35, 47], "ffi_": 20, "ffi_catalogprovid": 47, "ffi_logical_codec_from_pycapsul": 47, "ffi_logicalextensioncodec": [1, 47], "ffi_provid": 20, "ffi_tablefunct": 31, "ffi_tableprovid": [20, 45], "ffi_taskcontextprovid": 1, "field": [2, 3, 5, 7, 13, 18, 20, 27, 31], "fight": [24, 33], "file": [1, 2, 7, 9, 10, 11, 13, 16, 20, 21, 22, 23, 30, 34, 36, 37, 38, 40, 41, 43, 44], "file_compression_typ": [1, 7, 11, 13], "file_extens": [1, 7, 11, 13], "file_partition_col": [1, 7, 11], "file_sort_ord": [1, 7, 11, 13], "filenam": 21, "filetyp": 4, "fill": [2, 4, 5, 7, 13, 27, 33], "fill_nan": [4, 7], "fill_nul": [2, 4, 7, 28], "filter": [2, 4, 5, 7, 13, 14, 23, 26, 32, 33, 35, 36], "final": [23, 31], "find": [5, 20, 21, 23, 24, 33], "find_in_set": 5, "finer": 36, "finish": [4, 24], "fire": [22, 24, 27, 35, 38], "first": [1, 2, 4, 5, 7, 20, 21, 23, 24, 26, 33, 35, 36, 38], "first_1": 24, "first_2": 24, "first_arrai": 5, "first_nam": 36, "first_valu": [5, 18, 24], "fix": [0, 18], "flag": [3, 5, 17, 18, 21], "flat": 4, "flatten": [4, 5, 7], "fleur": 27, "flexibl": 36, "float": [2, 5, 7, 18, 31, 37, 46], "float64": [18, 27, 31], "floor": [4, 5, 7], "flow": [7, 14], "flower": 27, "fly": [22, 24, 33, 35, 38], "fn": [31, 45, 47], "focus": 20, "folder": [20, 31, 35, 45], "follow": [0, 1, 2, 4, 5, 7, 18, 20, 21, 23, 24, 26, 27, 29, 31, 33, 35, 38, 46], "foo": 34, "footer": 3, "fora": [4, 7], "foreign": [20, 47], "foreign_provid": 20, "foreigntableprovid": 20, "form": [2, 5, 7, 14, 24, 35], "format": [1, 2, 3, 4, 5, 6, 7, 13, 14, 23, 34, 35, 36, 40, 43, 46], "format_argu": 5, "format_html": [3, 37], "format_str": 3, "formatt": [2, 3, 5, 7], "formatted_valu": 3, "formatter_class": 37, "formattermanag": 3, "formatting_context": 37, "forth": 39, "found": [2, 5, 21, 33, 41, 45, 47], "four": 31, "frame": [2, 4, 5, 7, 18, 25, 31], "frame_bound": 4, "framework": 21, "free": [1, 7], "frequent": [20, 21], "fresh": 37, "from": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47], "from_arrai": [31, 35, 36], "from_arrow": [1, 35, 36, 39], "from_arrow_t": 1, "from_dataset": [0, 7], "from_panda": [1, 36], "from_polar": [1, 35], "from_proto": [7, 14], "from_pycapsul": 18, "from_pydict": [1, 25, 26, 29, 31, 32, 35, 39], "from_pylist": [1, 29, 35], "from_str": 2, "from_stream": 36, "from_substrait_plan": 16, "from_unixtim": [4, 5, 7], "from_val": 5, "frozen": [20, 21], "full": [2, 5, 28, 36, 37, 46], "full_nam": 36, "fulli": [21, 34], "func": [1, 2, 18, 31], "function": [1, 2, 12, 15, 19, 20, 23, 25, 28, 34, 35, 37, 44, 47], "function_to_impl": [18, 31], "further": [5, 20], "futur": [18, 20, 33], "g": [5, 18], "gamma": 35, "gather": 36, "gcd": 5, "gener": [4, 7, 14, 15, 16, 18, 19, 20, 21, 22, 35, 36, 38, 46], "geodud": 33, "get": [2, 3, 7, 14, 18, 20, 21, 26, 29, 35, 36, 37, 46, 47], "get_cell_styl": 3, "get_default_level": 2, "get_formatt": [3, 37], "get_frame_unit": [4, 7], "get_header_styl": 3, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 18, "get_table_styl": 37, "get_upper_bound": [4, 7], "get_value_styl": 37, "getattr": 47, "getenv": 35, "ghost": 24, "gil": 22, "git": 21, "github": [4, 5, 7, 21], "give": [5, 24, 30, 38], "given": [0, 1, 3, 4, 5, 7, 18, 31], "glanc": 20, "global": [1, 2, 3, 7, 11, 36, 37], "global_ctx": 1, "go": [20, 25, 27], "goe": 20, "gold": 5, "good": [20, 21], "googlecloud": [12, 35], "graph": [7, 14], "graphic": [7, 14], "graphviz": [7, 14], "grass": [22, 24, 27, 33, 35, 38], "great": 21, "greater": [4, 5, 7], "greatest": 5, "greatli": [31, 34], "greedi": [1, 7], "green": 26, "grimer": 33, "ground": 24, "group": [1, 2, 4, 5, 7, 11, 18, 23, 24, 25, 33, 36], "group_bi": [2, 24], "groupingset": 4, "guarante": [2, 7, 20], "guid": [1, 2, 28, 34, 36, 37, 38], "guidanc": 36, "gz": 41, "gzip": [2, 7, 13, 41], "ha": [1, 2, 3, 5, 7, 13, 18, 20, 26, 30, 35, 46], "handl": [3, 15, 24, 28, 33, 34, 46], "happen": 21, "hardwar": 34, "has_head": [1, 7, 11, 13], "has_mor": [2, 3, 37], "hasattr": 47, "hash": [2, 4, 5, 7, 34], "haskel": 25, "have": [1, 2, 5, 7, 11, 13, 16, 18, 20, 21, 22, 24, 29, 31, 33, 34, 35, 41, 45, 46], "head": 2, "header": [1, 2, 3, 7, 11, 13, 41], "healthi": 21, "heavy_red_unit": 26, "height": [3, 37], "help": [1, 3, 7, 11, 20, 21, 26, 27, 34, 37], "helper": [2, 4, 18, 20, 47], "henc": 18, "here": [2, 5, 7, 20, 27, 30, 31, 33, 34, 37, 38, 39, 46], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 35, "high": [4, 7], "higher": [2, 4, 7, 34], "highli": 31, "highlight": 38, "hint": [1, 18, 21], "hive": 46, "homebrew": 21, "hood": 35, "host": 1, "how": [1, 2, 4, 5, 7, 18, 20, 24, 25, 28, 29, 31, 33, 34, 35, 36, 37, 38, 41, 46], "howev": [18, 31], "hp": [22, 35, 38], "html": [1, 2, 3, 5, 7, 17], "html_formatt": [3, 7, 19, 37], "http": [1, 2, 4, 5, 7, 12, 14, 16, 17, 35], "hyperbol": [4, 5, 7], "i": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 46, 47], "ic": 24, "iceberg_t": 35, "id": [1, 2, 3, 21, 29, 36], "id_for_stud": 2, "ideal": 20, "ident": [2, 29, 35], "identifi": [1, 4, 7, 20, 30, 34, 35], "idl": [2, 7], "idx": [18, 31], "ignor": [5, 7, 13, 18, 21, 24, 33], "ignore_nul": [24, 33], "ilik": 4, "illustr": 20, "immut": [18, 20, 31], "impact": [2, 34], "impl": [31, 45, 47], "implement": [0, 1, 2, 3, 7, 18, 21, 31, 35, 36, 37, 39, 45, 46, 47], "import": [1, 2, 3, 4, 7, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "improv": [1, 3, 7, 18, 31, 34, 35, 37, 47], "in_list": [5, 27], "includ": [1, 2, 3, 4, 7, 20, 23, 24, 27, 29, 34, 36, 37, 47], "include_rank": [18, 31], "inclus": [1, 4, 5, 7], "incomplet": 41, "incorpor": 31, "increas": [1, 2, 3, 7, 24, 34], "increment": [2, 18, 20, 31, 39], "incur": 31, "indent": [7, 14], "independ": [5, 33], "index": [2, 3, 4, 5, 7, 17, 18, 26], "indic": [3, 4, 5, 7, 26], "individu": [2, 7, 26, 33], "infer": [1, 7, 11, 13], "inform": [1, 2, 4, 7, 8, 16, 17, 18, 20, 31, 34, 36], "information_schema": [1, 7], "infrastructur": 34, "inherit": 35, "init": 21, "initcap": [4, 5, 7], "initi": [2, 3, 4, 5, 7, 13], "inlin": [18, 20], "inlist": 4, "inner": [2, 20, 28, 36, 47], "input": [1, 2, 4, 5, 7, 11, 13, 14, 18, 19, 26, 31], "input_field": 18, "input_item": [8, 9, 10], "input_typ": 18, "inputsourc": 8, "insert": [1, 2, 7], "insert_oper": [2, 7], "insertop": [2, 7], "insight": 34, "instanc": [1, 2, 3, 4, 5, 18, 20, 23], "instanti": [2, 7, 18], "instead": [1, 3, 4, 5, 7, 20, 31, 34, 35, 36, 41, 47], "insubqueri": 4, "insuffici": 35, "int": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 31, 46], "int32": [18, 27], "int64": [18, 25, 27, 31], "integ": [3, 4, 5, 7, 26], "integr": [2, 20, 35, 36, 38, 45], "intend": [7, 13, 20], "intens": 34, "interact": [3, 20, 26, 35], "intercept": 5, "interchang": [7, 15, 43], "interest": 26, "interfac": [0, 1, 2, 5, 7, 15, 20, 22, 23, 31, 33, 35, 36, 39, 45, 47], "interior": 20, "intermedi": 18, "intern": [0, 4, 7, 13, 20, 31], "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 21, "introduc": [21, 23, 34, 46], "intuit": 20, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 18, "invok": 39, "io": [1, 2, 7, 16, 19, 37], "io_avro": 36, "io_csv": 36, "io_json": 36, "io_parquet": 36, "ipc": 2, "is_caus": 18, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 26, "is_follow": 4, "is_not_nul": [4, 7, 24], "is_nul": [4, 7, 31], "is_null_arr": 31, "is_preced": 4, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [3, 5, 21, 33, 37], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "item": 4, "iter": [2, 4, 7, 15, 36], "its": [2, 5, 7, 14, 18, 20, 22, 33, 37], "itself": 26, "ivi": 27, "ivyfleur": 27, "ivysaur": [22, 27, 33, 35, 38], "java": 25, "javascript": [3, 37, 43], "jigglypuff": 33, "join": [1, 2, 4, 7, 14, 28, 34, 36], "join_kei": [2, 29], "join_on": [2, 36], "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 35, 36, 37, 42], "jupyt": [3, 36, 38], "jupyterlab": 38, "just": [2, 37], "justif": 20, "jynx": 24, "kakuna": [22, 33, 35, 38], "keep": [20, 21, 32, 35, 37], "kei": [1, 2, 3, 4, 7, 20, 23, 26, 28, 34, 36], "kept": 2, "kind": [0, 7, 20, 21], "know": [1, 7], "known": 26, "kv_meta": [2, 7], "kwarg": [3, 7, 8, 9, 10], "kwd": [2, 7, 18], "l179": [4, 7], "lab": 38, "label": 2, "lack": 22, "lag": [5, 18, 33], "lambda": 18, "languag": [1, 7, 14, 20], "larg": [2, 3, 7, 27, 34, 37], "large_trip_dist": 30, "larger": [2, 7], "last": [4, 5, 7, 33], "last_nam": 36, "last_valu": [5, 24, 33], "last_with_nul": 33, "last_wo_nul": 33, "latenc": 34, "later": [35, 38, 45], "latest": [1, 5, 17, 20], "latter": 1, "lazi": [23, 36], "lazili": [2, 36, 39], "lcm": 5, "lead": [2, 5, 18, 20, 31, 33, 35], "leaf": [7, 14], "leak": 22, "learn": [20, 25, 33], "least": [5, 18, 24, 29, 31, 37], "leav": [7, 14, 20], "left": [2, 5, 27, 28, 37], "left_on": [2, 29], "leftmost": 5, "legendari": [22, 35, 38], "len": [18, 27], "length": [2, 3, 4, 5, 7, 13, 18], "less": [4, 5, 7, 13], "lesson": 20, "let": [20, 31, 34, 39, 45, 47], "letter": [4, 5, 7, 30], "level": [2, 4, 5, 7, 20, 35], "levenshtein": 5, "leverag": [2, 7, 20], "lib": 21, "lib_dir": 21, "lib_nam": 21, "librari": [7, 8, 15, 20, 22, 38, 39, 45, 47], "lieu": 18, "lightweight": 43, "like": [1, 2, 3, 4, 5, 7, 8, 20, 21, 22, 27, 35, 36, 46, 47], "limit": [2, 3, 4, 5, 21, 23, 25, 27, 34, 36, 37, 46], "line": [1, 2, 7, 11, 13, 14, 20, 41], "linear": [5, 24], "link": [21, 33], "lint": 21, "linter": 21, "list": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 24, 31, 32, 33, 35, 36], "list_append": [5, 21], "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, "lit": [2, 4, 5, 7, 21, 23, 24, 26, 30, 33, 36, 39], "liter": [2, 4, 7, 27, 28, 30, 31, 32, 36], "literal_with_metadata": [4, 7], "ll": [27, 29, 33], "ln": [4, 5, 7], "load": [3, 34, 35], "load_catalog": 35, "local": [1, 20, 21, 34], "localfilesystem": [12, 35], "locat": [1, 9, 19], "locationinputplugin": [9, 10], "lock": 22, "log": [5, 27], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [1, 2, 4, 7, 14, 16, 17, 23, 24, 30, 36, 37, 47], "logical_plan": [2, 16], "logicalextensioncodec": 47, "logicalplan": [1, 2, 4, 7, 14, 16, 17], "lonely_trip": 30, "long": [3, 20], "long_tim": 26, "longer": [5, 37, 47], "look": [20, 21, 34], "loop": 36, "loss": 46, "low": [4, 7, 24], "low_passenger_count": 30, "lower": [4, 5, 7, 18, 27, 30], "lowercas": [2, 4, 5, 7], "lowest": [20, 24], "lpad": 5, "ltrim": [4, 5, 7], "lz4": [2, 7], "lz4_raw": [2, 7], "lzo": [2, 7], "m": 21, "mac": 21, "machin": 21, "machop": 33, "made": 30, "magikarp": 24, "magnemit": 33, "mai": [1, 2, 5, 7, 11, 13, 18, 20, 31, 34, 35, 37, 38, 46], "main": [1, 23, 36], "maintain": [1, 2, 20, 23, 46], "major": [21, 22, 47], "make": [5, 20, 21, 22, 27], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [1, 3, 7, 21, 34], "mani": [3, 20, 24, 31, 34, 36, 37], "manipul": [1, 7, 27, 36], "mankei": 33, "manner": 20, "manual": [21, 34], "map": [2, 46], "match": [2, 4, 5, 7, 13, 27, 29, 34], "materi": [2, 36, 39], "math": 24, "mathemat": [28, 30, 36], "maturin": 21, "max": [5, 24, 25], "max_cell_length": [3, 7, 37], "max_cpu_usag": 34, "max_height": [3, 7, 37], "max_memory_byt": [3, 37], "max_row": [3, 37], "max_row_group_s": [2, 7], "max_width": [3, 7, 37], "maximum": [1, 2, 3, 5, 7, 11, 13, 37], "maximum_buffered_record_batches_per_stream": [2, 7], "maximum_parallel_row_group_writ": [2, 7], "md5": [4, 5, 7], "mean": [3, 5, 20, 21, 25], "meaning": [5, 30], "meant": [7, 14], "measur": 34, "medal": 5, "median": [5, 24, 25], "member": 21, "memoiz": 18, "memori": [0, 1, 2, 3, 7, 14, 18, 22, 34, 39], "memory_catalog": [0, 7, 35], "memory_schema": [0, 35], "memtabl": 47, "mention": 26, "merg": [18, 29, 31], "messag": [3, 37], "metadata": [1, 2, 4, 5, 7, 11, 18, 31], "metapod": [22, 24, 33, 35, 38], "method": [0, 1, 2, 3, 5, 7, 11, 13, 18, 20, 23, 25, 27, 29, 31, 32, 36, 37, 47], "metric": 2, "metrorid": 29, "microsecond": 5, "microsoftazur": [12, 35], "might": [3, 18, 24, 37], "millisecond": 5, "min": [5, 24, 25], "min_row": [3, 37], "minimum": [1, 2, 3, 5, 7, 37], "miss": [2, 7, 13, 21, 28], "mode": [2, 7], "model": 2, "modifi": [2, 7, 23], "modify_df": 2, "modul": [6, 20, 33, 36, 37], "modulo": [4, 7], "moment": [2, 20], "monitor": 34, "month": [5, 27], "more": [1, 2, 3, 4, 7, 16, 18, 20, 21, 23, 24, 27, 31, 34, 36], "most": [18, 20, 26, 33, 38], "mostli": 21, "much": [18, 21, 37], "multi": 22, "multipl": [1, 2, 3, 4, 5, 7, 18, 24, 27, 29, 31, 33, 34, 35, 36, 37], "must": [1, 2, 3, 4, 5, 7, 13, 18, 20, 24, 26, 30, 31, 33, 39, 45, 46, 47], "mutabl": 21, "mutat": 20, "my": 37, "my_capsul": 20, "my_catalog": 35, "my_catalog_nam": 35, "my_delta_t": 35, "my_provid": 20, "my_schema": 35, "my_schema_nam": 35, "my_tabl": [32, 35], "my_udaf": 31, "myaccumul": 31, "mycatalogprovid": 47, "myformatt": 37, "mysql": [17, 46], "mystyleprovid": 37, "mytablefunct": 31, "mytableprovid": [20, 45], "myusernam": 21, "n": [2, 5, 7, 41], "n_column": [2, 7], "n_file": [2, 7], "n_row_group": [2, 7], "name": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 45, 46, 47], "name_pair": 5, "named_expr": 2, "named_param": 1, "named_struct": [5, 21], "nan": [4, 5, 7], "nanosecond": 5, "nanvl": 5, "narrowli": 20, "nativ": [20, 35], "natur": [4, 5, 7], "nearest": [4, 5, 7], "nearli": [34, 35], "necessari": [20, 35, 47], "need": [0, 1, 2, 3, 4, 7, 11, 13, 18, 20, 21, 31, 33, 34, 35, 36, 37, 38, 46, 47], "neg": [4, 5], "negat": [4, 5, 7, 27], "nest": [1, 4, 34], "network": 34, "never": 2, "new": [1, 2, 3, 4, 5, 7, 17, 18, 20, 21, 26, 28, 31, 45, 46, 47], "new_bound": [20, 45], "new_nam": 2, "new_with_ffi_codec": 47, "newlin": [7, 13], "newlines_in_valu": [7, 13], "next": [5, 7, 15], "nice": 37, "node": [7, 14], "non": [2, 4, 5, 24, 33, 36], "none": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 20, 31, 33, 35, 37, 45, 46, 47], "normal": 24, "not_red_unit": 26, "notat": [26, 43], "note": [1, 2, 4, 7, 23, 26, 35, 36], "notebook": [3, 36, 37, 38], "now": [5, 18, 20, 27, 29, 32, 47], "nr": 25, "nth": 37, "nth_valu": [5, 18, 24], "ntile": [5, 33], "null": [2, 4, 5, 7, 13, 25, 27, 29, 31, 39, 41], "null_count": 25, "null_first": 5, "null_regex": [7, 13], "null_treat": [4, 5, 7, 24, 33], "nullabl": [2, 7, 13, 18, 31], "nullif": [5, 27], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 24, 33], "num": [2, 5, 34, 46], "num_centroid": 5, "num_el": 26, "num_row": [18, 31], "number": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 21, 26, 27, 31, 33, 34, 37, 46], "numer": [2, 3, 4, 5, 7, 34], "nvl": 5, "o": [34, 35, 36, 37], "obj": 47, "object": [1, 2, 3, 4, 7, 12, 13, 15, 18, 20, 26, 31, 34, 36, 37, 39, 43, 46, 47], "object_stor": [7, 19, 35], "objectstor": 1, "obtain": [8, 22, 36], "obviou": 20, "occasion": 20, "occur": [18, 36], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 33, "offend": 21, "offer": [27, 36, 46], "offici": 20, "offset": [2, 4], "often": [33, 34], "ok": 47, "old": 2, "old_nam": 2, "older": 35, "olymp": 5, "omit": 29, "on_expr": 2, "onc": [3, 5, 8, 18, 31, 37, 39, 45], "one": [2, 4, 5, 7, 18, 20, 24, 29, 31, 33, 35, 36], "onli": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 20, 24, 27, 29, 31, 33, 36, 37], "onlin": [1, 2, 4, 5, 7, 18, 20, 34], "op": [2, 4, 7], "open": [3, 21], "oper": [1, 2, 4, 5, 7, 14, 15, 18, 20, 22, 24, 26, 30, 31, 33, 34, 35, 37], "operand": [4, 7], "operatefunctionarg": 4, "opt": [20, 21], "optim": [2, 18, 20, 34], "optimized_logical_plan": 2, "option": [0, 1, 2, 4, 5, 7, 11, 18, 19, 21, 23, 24, 27, 34, 35, 36, 37, 38, 41, 46], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 13, 18, 20, 26], "order_bi": [4, 5, 7, 24, 33], "org": [1, 2, 5, 7, 14], "organ": 35, "origin": [2, 4, 5, 7, 31, 35, 46], "other": [1, 2, 3, 4, 5, 7, 11, 18, 20, 21, 22, 23, 26, 28, 31, 34, 36, 37, 41], "other_df": 2, "other_id": 2, "otherwis": [4, 5, 7], "our": [20, 21, 24, 35, 38], "out": [2, 5, 7, 20, 24, 25, 26, 27, 29, 30, 33, 38, 39, 46], "output": [2, 3, 4, 7, 14, 18, 21, 24, 26, 31, 32, 37], "over": [2, 3, 4, 7, 15, 18, 20, 22, 24, 33, 35, 36, 37, 41], "overhead": 18, "overlai": 5, "overlap": 5, "overrid": [2, 7, 31], "overridden": 24, "overwrit": [2, 7], "own": [8, 31, 37, 47], "owner": 0, "owner_nam": 0, "pa": [1, 4, 7, 15, 18, 31, 35, 36, 39], "packag": [5, 20, 21], "pad": [5, 37], "page": [2, 7, 19, 20, 31], "pair": 5, "panda": [1, 2, 23, 25, 35, 36, 46], "pandas_df": [35, 36], "para": 33, "parallel": [1, 2, 7, 13, 34], "param_attack": 46, "param_nam": 3, "param_valu": [1, 46], "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 21, 26, 28, 29, 37, 46, 47], "parameter": 1, "parasect": 33, "parquet": [0, 1, 2, 7, 11, 20, 22, 23, 30, 34, 35, 36, 37, 42], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "pars": [1, 2, 7, 13], "parse_sql_expr": 2, "parser": 46, "part": [2, 5, 7, 27], "particular": [5, 34], "partit": [1, 2, 4, 5, 7, 11, 13, 14, 18, 24, 34, 36], "partition_bi": [2, 4, 5, 7, 33], "partition_count": [7, 14], "pass": [1, 2, 18, 20, 21, 25, 26, 31, 34, 35, 36, 46], "passenger_count": 30, "path": [1, 2, 7, 11, 16, 21, 35, 36], "path_to_t": 35, "pathlib": [1, 2, 7, 11, 16], "pattern": [2, 5, 7, 13, 20, 34], "pc": 18, "pcre": 5, "pd": [35, 36], "peopl": 5, "per": [2, 3, 7, 13, 18, 33, 36, 37], "percent": 5, "percent_rank": [5, 18, 33], "percentag": 5, "percentil": 5, "perform": [1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 31, 33, 34, 35], "period": 20, "persist": 46, "person": 21, "physic": [2, 7, 14, 23], "pi": 5, "pick": 5, "pinsir": 33, "pip": [22, 38], "pixel": [3, 37], "pl": 35, "place": [5, 20, 21, 38, 46], "placehold": [4, 46], "plain": [2, 4, 7, 36, 37], "plain_dictionari": [2, 7], "plan": [1, 2, 4, 7, 16, 17, 18, 19, 22, 23, 36], "plan_intern": 16, "plan_to_sql": 17, "planner": [7, 14], "pleas": [21, 30], "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 21, 36, 46], "pointer_width": 21, "poison": [22, 24, 33, 35, 38], "pokemon": [22, 24, 27, 33, 35, 38, 46], "polar": [1, 2, 35, 36], "polars_df": [35, 36], "poll": 36, "pool": [1, 7], "popul": 5, "popular": [27, 35], "portion": 20, "posit": [2, 3, 5, 7, 24], "possibl": [2, 4, 7, 18, 20, 27, 31, 33], "possibli": 4, "post": 21, "postgr": 17, "postgresql": 17, "potenti": [2, 7, 14, 46, 47], "pow": [5, 27], "power": [5, 27, 31, 33], "pr": 21, "practic": [2, 20, 34], "preced": [3, 4, 5, 7, 18, 33, 46], "precis": [5, 34], "predic": [1, 2, 7, 11], "prefer": [20, 21], "prefix": [5, 20], "prepar": [4, 46], "prepend": 5, "presenc": 27, "present": [2, 20, 29], "preserve_nul": 2, "pretti": 17, "prevent": [3, 21, 37], "previou": [5, 31, 33], "previous": 1, "primari": [2, 7, 9, 26, 36], "primit": 20, "principl": 34, "print": [0, 1, 2, 4, 7, 14, 18, 32, 34, 36, 37], "printabl": [7, 14, 18], "prior": [2, 35], "probabl": [2, 7, 24], "problem": 29, "process": [2, 18, 24, 33, 34, 36, 39], "processor": 34, "produc": [2, 5, 7, 14, 16, 18, 20, 33, 36], "product": [5, 34, 36], "program": 20, "programmat": [7, 14], "project": [2, 4, 7, 14, 15, 20, 21, 36, 39, 47], "proper": 34, "properti": [0, 2, 3, 4, 7, 14], "proto_byt": 16, "protobuf": [7, 14], "protocol": [1, 3, 18, 36], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 13, 15, 16, 17, 18, 20, 23, 24, 27, 31, 33, 34, 36, 38, 42, 46, 47], "prune": [1, 7, 11], "psychic": 24, "pub": [20, 47], "public": [0, 7], "pull": [21, 39], "pure": 21, "push": [21, 35], "pushdown_filt": 34, "put": 30, "py": [1, 7, 16, 20, 31, 34, 45, 47], "py_dict": 36, "py_list": 36, "pyani": 47, "pyarrow": [0, 1, 2, 4, 7, 11, 13, 15, 18, 20, 25, 31, 35, 39, 46], "pycapsul": [0, 1, 2, 7, 15, 18, 20, 31, 35, 39, 45, 47], "pycapsuleinterfac": [1, 2], "pyclass": [20, 21], "pyconfig": 20, "pydatatyp": 20, "pyiceberg": 35, "pymethod": [31, 45, 47], "pyo3": [21, 31, 35], "pyo3_build_config": 21, "pyo3_config_fil": 21, "pyo3_print_config": 21, "pypi": 38, "pyproject": 21, "pyresult": [31, 45, 47], "pysessioncontext": 20, "pyspark": 22, "pytabl": 20, "pytest": 21, "python": [0, 1, 2, 4, 7, 18, 25, 26, 29, 31, 34, 35, 38, 39, 45, 46, 47], "python3": 21, "python_typ": 20, "python_valu": [4, 7], "pythontyp": [4, 7, 20], "queri": [1, 2, 7, 14, 16, 18, 20, 22, 23, 27, 32, 34, 35, 36, 39], "quick": 25, "quit": 44, "quot": [2, 7, 13, 30], "r": [1, 2, 4, 5, 7, 17, 20, 21, 41], "radian": [4, 5, 7], "rais": [2, 3, 4, 5, 7], "ram": 34, "random": [5, 18, 25, 26], "rang": [1, 2, 4, 5, 7, 18, 25, 26, 27, 31, 33, 34, 36], "rank": [5, 18, 31, 33], "ranks_in_partit": 18, "rare": 20, "rather": [5, 16, 36, 39], "ratio": 5, "raw": [1, 3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawexpr": [4, 7], "rawschema": [0, 7], "rb": [7, 15], "re": [2, 20], "reach": 3, "read": [0, 1, 2, 7, 9, 10, 11, 13, 16, 20, 35, 36, 37, 38, 40, 41, 43, 44, 46], "read_avro": [1, 7, 11, 36, 40], "read_csv": [1, 7, 11, 22, 23, 24, 33, 35, 36, 38, 41], "read_json": [1, 7, 11, 36, 43], "read_parquet": [1, 7, 11, 23, 30, 34, 36, 44], "read_tabl": 1, "reader": [1, 7, 11, 13, 36, 39], "realiti": 24, "reason": [2, 20, 21], "rebuild": 21, "receiv": [5, 18, 20], "recent": [33, 35], "recommend": [2, 20, 21, 31, 34, 37, 46], "record": [1, 2, 3, 7, 13, 14, 15, 23, 30, 31, 35, 39, 40], "record_batch": [1, 2, 7, 19], "record_batch_stream": [7, 15], "recordbatch": [1, 2, 3, 7, 15, 31, 35, 36], "recordbatchread": 36, "recordbatchstream": [1, 2, 7, 15, 36], "recursivequeri": 4, "red": [26, 37], "red_or_green_unit": 26, "red_unit": 26, "reduc": [7, 13, 21, 29, 31, 37, 47], "ref": [5, 31, 36], "refer": [2, 3, 5, 20, 23, 27, 36, 37, 46, 47], "referenc": [1, 23], "reflect": 3, "refresh": 3, "regardless": 18, "regener": 21, "regex": [5, 7, 13], "regexp_count": 5, "regexp_lik": 5, "regexp_match": [5, 27], "regexp_replac": [5, 27], "region": 35, "regist": [0, 1, 2, 3, 7, 8, 11, 20, 23, 28, 31, 35, 36, 45, 46], "register_avro": 1, "register_catalog": 35, "register_catalog_provid": 1, "register_csv": [1, 27, 41, 46], "register_dataset": [1, 35], "register_formatt": 3, "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 35], "register_parquet": [1, 35, 44], "register_record_batch": 1, "register_schema": [0, 7, 35], "register_t": [0, 1, 2, 35, 45], "register_table_provid": [1, 35], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 31], "register_udwf": 1, "register_view": [1, 32], "registr": 46, "regr_avgi": [5, 24], "regr_avgx": [5, 24], "regr_count": [5, 24], "regr_intercept": [5, 24], "regr_r2": [5, 24], "regr_slop": [5, 24], "regr_sxi": 5, "regr_sxx": [5, 24], "regr_syi": [5, 24], "regress": [5, 24], "regular": [3, 5, 27], "reject": 4, "rel": [5, 33], "relat": [7, 14, 29], "releas": [20, 33], "relev": 21, "reli": [21, 35, 46], "remain": [4, 5, 7, 20, 27], "remot": [9, 10, 34], "remov": [0, 1, 2, 4, 5, 7, 24, 47], "renam": 2, "renamed_ag": 26, "render": 3, "reorder": [2, 7, 15], "repartit": [1, 2, 4, 7, 34], "repartition_by_hash": [2, 34], "repeat": [5, 26], "repeated_arrai": 26, "replac": [2, 5, 7, 27, 46], "repo": 21, "report": [2, 21], "repositori": [20, 31, 34, 35], "repr": 3, "repr_row": 3, "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 16, 23, 26, 31, 34, 36], "represent": [0, 1, 2, 3, 4, 5, 7, 11, 14, 18, 46], "request": [3, 20, 21], "requested_schema": [1, 2, 7, 15], "requir": [2, 4, 7, 18, 20, 27, 34, 35, 41, 47], "reserv": [1, 7], "reset": [3, 37], "reset_formatt": [3, 37], "resolv": [3, 21, 33], "resourc": [20, 34], "respect": [5, 24, 35], "respect_nul": [5, 24, 33], "rest": 18, "result": [1, 2, 5, 7, 14, 15, 18, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "result_batch": 36, "result_dict": 32, "retriev": [0, 1, 4, 7, 29], "return": [0, 1, 2, 3, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 26, 29, 31, 35, 36, 37, 39], "return_field": 18, "return_typ": 18, "reus": 20, "reusabl": 4, "revers": [4, 5, 7], "review": [20, 21], "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": 33, "rich": [3, 37], "richer": 37, "right": [2, 5, 29], "right_on": [2, 29], "ritchi": 33, "rle": [2, 7], "rle_dictionari": [2, 7], "robin": 2, "rock": 24, "roll": 33, "root": [4, 5, 7, 14], "roption": 20, "round": [2, 5, 23], "rout": 20, "row": [1, 2, 3, 4, 5, 7, 11, 13, 18, 23, 24, 25, 26, 29, 31, 32, 33, 34, 36, 37, 41, 46], "row_count": 3, "row_idx": 3, "row_numb": [5, 18, 33], "rpad": 5, "rresult": 20, "rstring": 20, "rtrim": [4, 5, 7], "rubi": 25, "run": [1, 2, 7, 11, 13, 22, 32, 34, 38], "runnabl": 21, "runtim": [1, 7, 18, 34], "runtimeconfig": 1, "runtimeenvbuild": [1, 7, 34], "rust": [2, 5, 7, 13, 18, 20, 22, 31, 34, 35, 45], "rustc": 20, "rustflag": 21, "rustonomicon": 20, "rvec": 20, "rwlock": 20, "s3": 35, "safe": 20, "safeti": 22, "same": [2, 5, 18, 20, 23, 31, 36], "sampl": [5, 25, 32, 35], "saur": 27, "save": 18, "scalar": [1, 4, 7, 18, 26, 28, 46], "scalarsubqueri": 4, "scalarudf": [1, 18], "scalarudfexport": 18, "scalarvalu": 18, "scalarvari": 4, "scan": [1, 7, 13, 14], "schema": [0, 1, 2, 3, 4, 7, 11, 13, 14, 15, 25, 37], "schema_infer_max_record": [1, 7, 11, 13], "schema_nam": [0, 4, 7], "schemaprovid": [0, 7, 46, 47], "schemaproviderexport": [0, 7], "scheme": 2, "scienc": 27, "score": 5, "script": [3, 34], "search": 5, "second": [5, 23, 24, 26, 35], "second_arrai": 5, "second_two_el": 26, "secret_access_kei": 35, "section": [20, 23, 25, 28, 29, 33, 35, 36], "see": [1, 2, 4, 5, 7, 15, 16, 17, 18, 20, 21, 23, 24, 26, 31, 33, 34, 36, 37], "seen": [18, 24], "select": [1, 2, 4, 5, 7, 11, 13, 15, 18, 23, 26, 27, 28, 29, 31, 32, 33, 35, 36, 39, 46], "select_column": 2, "select_expr": 2, "self": [7, 13, 15, 18, 31, 37, 45, 47], "semi": [2, 28], "send": 47, "sensit": [2, 7], "separ": [5, 36], "sequenc": [1, 2, 7, 18], "serd": 16, "seri": 26, "serial": [2, 7, 16, 40], "serialize_byt": 16, "serialize_to_plan": 16, "serv": 20, "session": [1, 2, 3, 7, 31, 34, 37, 38, 46, 47], "session_id": 1, "sessionconfig": [1, 7, 34], "sessioncontext": [0, 1, 2, 5, 7, 8, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "sessioncontextintern": 1, "set": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17, 18, 20, 21, 23, 28, 29, 31, 34, 37, 41, 46], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setter": 20, "setvari": 4, "sever": [30, 34, 36], "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 20, "share": [3, 20, 21, 23, 26, 39], "shift_offet": 5, "shift_offset": 5, "short": 36, "shot": 18, "should": [1, 2, 4, 5, 7, 8, 11, 14, 16, 20, 21, 24, 29, 31, 33], "show": [2, 3, 20, 22, 23, 25, 26, 29, 31, 33, 34, 35, 36, 37, 38, 45, 46], "show_attack": 46, "show_column": 46, "show_truncation_messag": [3, 37], "showcas": 34, "shown": 3, "side": [4, 5, 7, 20], "sign": [4, 5, 7], "signatur": 47, "signific": 35, "significantli": [5, 34], "signum": [4, 5, 7], "silver": 5, "similar": [4, 5, 7, 20, 23, 26, 33, 46], "similarto": 4, "simpl": [2, 5, 21, 30, 34, 43, 44, 46], "simplest": [18, 31], "simpli": [2, 18, 20, 21, 35, 37, 46], "simplic": 18, "simplifi": 33, "simultan": 34, "sin": [4, 5, 7], "sinc": [2, 3, 24, 31, 35, 46], "sine": [4, 5, 7], "singl": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 31, 33, 34, 35, 36, 46], "single_file_output": [2, 7], "sinh": [4, 5, 7], "site": 41, "size": [1, 2, 5, 7, 26, 34, 37, 47], "skew": 34, "skip": [1, 2, 7, 11, 18, 41], "skip_arrow_metadata": [2, 7], "skip_metadata": [1, 7, 11], "slice": [4, 5, 7, 26], "slightli": 31, "slope": 5, "slow": 2, "slower": [2, 34], "slowest": 31, "slowpok": 33, "small": [34, 35], "smallest": [18, 24], "smooth_a": 31, "snappi": [2, 7], "snorlax": 33, "so": [1, 2, 4, 7, 18, 20, 21, 30, 31, 33, 36, 39, 45], "softwar": [7, 14, 20], "solid": 37, "some": [2, 5, 7, 18, 20, 21, 24, 27, 31, 33, 35, 36, 38, 45, 47], "sometim": [1, 7, 20, 35], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 13, 24, 33, 36], "sort_bi": [2, 7], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 2, 4, 5, 7, 13], "sortkei": [1, 2, 4, 5], "sound": 20, "sourc": [1, 5, 7, 8, 9, 10, 11, 20, 21, 23, 34, 36, 37, 38, 39, 45], "sp": [22, 35, 38], "space": [4, 5, 7], "sparingli": 31, "special": [3, 18, 46], "specif": [0, 2, 3, 4, 7, 14, 25, 26, 27, 33, 34, 36, 37, 46, 47], "specifi": [1, 2, 4, 5, 7, 13, 26, 27, 29, 31, 33, 34, 46], "speed": [2, 7, 22, 24, 33, 35, 38], "sphinx": 19, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 31], "split_part": 5, "sql": [1, 2, 7, 14, 16, 17, 18, 22, 23, 26, 30, 32, 35, 36], "sql_type": 20, "sql_with_opt": 1, "sqlite": 17, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7, 20], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 27, "squirtl": [22, 27, 33, 35, 38], "src": [4, 7, 20, 21], "ssd": 34, "stabl": [18, 20, 31], "stai": 20, "standard": [5, 20], "start": [4, 5, 7, 13, 18, 26, 29, 30, 33, 37, 38, 41], "start_ag": 26, "start_bound": [4, 7], "started_young": 26, "starts_with": 5, "state": [1, 18, 20, 23, 31], "state_typ": 18, "statement": [1, 4, 5, 7, 23, 46], "static": [0, 1, 2, 4, 7, 14, 16, 17, 18], "statist": [2, 7, 24, 25], "statistics_en": [2, 7], "statistics_truncate_length": [2, 7], "std": 25, "stddev": [5, 24], "stddev_pop": [5, 24], "stddev_samp": 5, "steel": 24, "stem": 20, "step": [5, 20], "still": [2, 7, 13, 20, 31, 35], "stop": 5, "storag": [34, 35], "store": [1, 4, 7, 12, 20], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 46], "str_lit": 27, "straightforward": [7, 15, 40, 41], "strategi": 34, "stream": [1, 2, 7, 15, 20, 39], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 14, 17, 18, 20, 21, 24, 25, 26, 28, 36, 46], "string1": 5, "string2": 5, "string_agg": [5, 24], "string_list": 5, "string_liter": [4, 7, 27], "string_view": [4, 7, 39], "strip": 2, "strong": 22, "strongli": 34, "strpo": 5, "struct": [1, 4, 5, 7, 20, 28, 39], "structarrai": 39, "structur": [7, 13, 14, 20], "style": [3, 20, 26, 36, 46], "style_provid": [3, 37], "styleprovid": [3, 37], "sub": [4, 7], "subclass": 20, "subfield": [4, 5, 7], "submit": 21, "submodul": 21, "subqueri": 4, "subqueryalia": 4, "subset": [2, 27, 30], "substitut": 1, "substr": 5, "substr_index": 5, "substrait": [7, 19], "subtl": 20, "subtract": [4, 7], "successfulli": [7, 13], "suffici": [1, 7, 34], "suffix": 5, "suggest": 35, "sum": [5, 18, 24, 31, 34, 36], "sum_bias_10": 18, "summar": [2, 18], "summari": [2, 24, 25], "support": [0, 1, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 20, 29, 31, 35, 36, 37, 46], "supports_bounded_execut": [18, 31], "suppos": [5, 20, 24], "suppress_build_script_link_lin": 21, "sure": 21, "switch": 46, "symbol": 2, "sync": 21, "synchron": 20, "syntax": [5, 26], "synthet": 34, "system": [1, 2, 7, 20, 21, 34], "t": [5, 18, 30], "t1": 18, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 14, 18, 20, 23, 25, 27, 28, 29, 34, 36, 37, 38, 39, 41, 42, 44, 46], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 2, 8, 9, 10], "table_partition_col": [1, 7, 11, 13], "table_provid": 1, "table_uuid": [2, 3, 37], "tablefunct": [1, 18, 47], "tableprovid": [20, 45, 47], "tableproviderexport": [0, 1, 7], "tablescan": 4, "tabular": 36, "tag": 3, "tail": 2, "take": [2, 3, 18, 20, 21, 24, 26, 31, 33, 35, 47], "taken": 34, "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7, 34], "target_partit": [1, 7], "task": [27, 36], "taskcontextprovid": 47, "taxi": 23, "td": 37, "technic": 22, "techniqu": [34, 35], "tempor": 28, "temporari": [1, 2, 7, 37, 46], "temporarili": 37, "temporary_column": 36, "term": 33, "termin": [7, 13], "terminologi": 20, "test": [5, 21, 34, 35], "text": [1, 2, 5, 37], "textual": 27, "th": [5, 37], "than": [2, 4, 5, 7, 13, 24, 31, 34, 36, 37, 39, 41], "thei": [8, 18, 20, 26, 31, 46], "them": [2, 5, 7, 20, 21, 23, 25, 31, 35], "theme": 37, "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, 29, 31, 32, 33, 34, 35, 37, 38, 39, 45, 46, 47], "third": 23, "thoroughli": 20, "those": [2, 4, 7, 22, 24, 31, 35, 46], "though": [20, 31], "thread": 22, "three": [31, 33, 35], "threshold": 46, "through": [2, 3, 20, 22, 28, 35, 36, 37, 38], "thu": 18, "thusli": 20, "ticket": 21, "tie": 5, "tight": 20, "tile": 5, "time": [5, 18, 20, 21, 24, 26, 27, 31, 34, 36, 47], "time64": 5, "timestamp": [4, 5, 7, 27], "tip_amount": [23, 30], "tip_perc": 23, "tips_plus_tol": 30, "tlc": [23, 30], "tmp": [1, 7], "to_arrow_t": [2, 36], "to_hex": [4, 5, 7], "to_inn": [7, 13], "to_panda": [2, 25, 27, 36, 46], "to_polar": [2, 36], "to_proto": [7, 14], "to_pyarrow": [7, 15, 36], "to_pyarrow_dataset": 35, "to_pydict": [2, 32, 36], "to_pylist": [2, 36], "to_substrait_plan": 16, "to_timestamp": [5, 27], "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, 14], "todo": 20, "togeth": [2, 5, 24], "toler": [2, 7], "tolls_amount": 30, "toml": 21, "top": 25, "topic": 35, "total": [2, 4, 5, 7, 22, 23, 26, 27, 35, 38], "total_amount": [23, 36], "total_as_float": 27, "total_as_int": 27, "touch": 21, "toward": 5, "tr": 37, "track": 20, "tracker": 5, "tradit": 21, "trail": 2, "trait": [1, 18, 20], "transact": [1, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 20, "transform": [2, 7, 14, 23, 36], "translat": [5, 20], "treat": [4, 33, 41], "treatment": [4, 7], "tree": [7, 14, 26], "trigger": [2, 37, 39], "trim": [4, 5, 7], "trip": [23, 30, 35], "trip_dist": [23, 30], "trivial": 21, "true": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 18, 21, 24, 26, 27, 30, 31, 33, 34, 37, 41], "trunc": 5, "truncat": [2, 3, 5, 7, 13, 24, 27, 30, 33, 37], "truncated_row": [7, 13], "try": [1, 7, 11, 13, 20], "trycast": 4, "tune": [2, 7, 34], "tupl": [1, 2, 5, 7, 11, 13, 15, 18], "turn": [0, 2, 4, 7, 20, 46], "tutori": 38, "two": [2, 4, 5, 7, 14, 15, 20, 24, 26, 29, 31, 33, 34, 35], "type": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 27, 30, 31, 33, 34, 35, 38, 46], "type_class": 3, "typeerror": [3, 4], "typeguard": 18, "typic": [0, 2, 4, 7, 15, 17, 18, 23, 35], "typing_extens": [7, 15], "u": [20, 24, 26, 35], "udaf": [1, 18, 22, 31], "udaf1": 18, "udaf2": 18, "udaf3": 18, "udf": [1, 18, 22, 31], "udf4": 18, "udtf": 18, "udwf": [1, 18], "udwf1": 18, "udwf2": 18, "udwf3": 18, "ultim": 21, "unabl": 46, "unari": [7, 14], "unbound": [1, 4, 7, 18, 33], "unchang": [2, 27], "uncompress": [2, 7, 13], "undefin": 21, "under": [1, 20, 35], "underli": [4, 7, 13, 18, 20, 39], "understand": [20, 34, 36], "unfortun": 20, "unfrozen": 20, "unicod": [4, 5, 7], "unintend": 46, "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 2, 3, 5, 7, 18, 24], "unit": [4, 7, 33, 35], "unixtim": 5, "unknown": 4, "unless": 20, "unlik": [4, 7, 33], "unmatch": 29, "unnest": [2, 4], "unnest_column": 2, "unnestexpr": 4, "unoptim": 2, "unpars": [7, 19], "unsaf": [20, 47], "unspil": [1, 7], "until": 23, "up": [2, 7, 14, 18, 23, 26, 33, 34, 37], "updat": [1, 2, 7, 18, 20, 31, 47], "upon": [5, 20, 31], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 20, "urbango": 29, "url": 1, "us": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47], "usabl": 2, "usag": [1, 2, 4, 5, 7, 18, 24, 33], "use_shared_styl": [3, 7, 37], "user": [0, 1, 2, 4, 5, 7, 8, 14, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 37, 38, 47], "user_defin": [1, 7, 19, 31], "user_id": 36, "uses_window_fram": [18, 31], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [3, 20, 33, 34, 35], "uuid": 5, "uv": 21, "v": [21, 34], "v4": 5, "val": 46, "valid": [1, 2, 3, 4, 7, 8, 9, 10, 18], "validate_pycapsul": 47, "valu": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 28, 29, 30, 31, 33, 36, 37, 46], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 31, "values_b": 31, "values_view": 2, "var": 5, "var_pop": [5, 24], "var_samp": [5, 24], "var_sampl": 5, "vari": 34, "variabl": [1, 5, 7, 21, 26, 46], "varianc": 5, "variant": [4, 7, 14, 29], "variant_nam": [4, 7], "varieti": [26, 31, 35, 41], "variou": [13, 36, 37, 38], "vastli": [21, 34], "vec": 20, "vendorid": 30, "venomoth": 33, "venonat": 33, "venu": 27, "venufleur": 27, "venufleurmega": 27, "venusaur": [22, 27, 33, 35, 38, 46], "venusaurmega": [22, 27, 33, 35, 38, 46], "venv": 21, "verbos": 2, "veri": [40, 41], "verifi": 38, "version": [2, 3, 7, 20, 21, 29, 35, 47], "versu": 34, "via": [1, 2, 4, 7, 15, 16, 18, 20, 21, 22, 26, 29, 31, 35, 36, 38, 45, 46, 47], "view": [0, 1, 2, 7, 25, 27, 28, 38, 46], "view1": 32, "vink": 33, "violat": 3, "virtual": [1, 7, 21], "visual": [7, 14, 23, 37], "volatil": [18, 31], "voltorb": [24, 33], "volum": 34, "vulpix": 24, "wa": [1, 7], "wai": [20, 21, 24, 35, 36, 38], "wait": 20, "want": [20, 21, 24, 27, 31, 33, 37, 45], "wartortl": [22, 35, 38], "water": [22, 24, 27, 35, 38], "we": [0, 2, 7, 20, 21, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "weedl": [22, 33, 35, 38], "weight": [5, 26], "welcom": [21, 38], "well": [1, 7, 20, 21, 36, 46], "were": [20, 26], "what": [20, 23], "whatev": 18, "when": [1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 29, 31, 33, 34, 35, 36, 37, 43, 46], "when_expr": 4, "whenev": [20, 21, 36], "where": [2, 4, 5, 7, 14, 24, 26, 27, 31, 32, 33, 35, 46], "wherea": 26, "wherev": 20, "whether": [1, 2, 3, 4, 5, 7, 11, 13, 18, 26], "which": [0, 2, 4, 5, 7, 13, 18, 20, 21, 22, 24, 26, 30, 31, 33, 35, 36, 37, 47], "while": [18, 20, 29, 34], "white": 37, "who": [20, 47], "whole": 24, "why": 20, "wide": [26, 34, 35, 36], "width": [3, 37], "window": [1, 4, 5, 7, 18, 24, 28, 34], "window_fram": [4, 5, 7, 33], "windowevalu": [18, 31], "windowexpr": 4, "windowfram": [4, 5, 7, 33], "windowframebound": [4, 7], "windowudf": [1, 18], "windowudfexport": 18, "wish": [20, 29, 31], "with_": [7, 13], "with_allow_ddl": [1, 7], "with_allow_dml": [1, 7], "with_allow_stat": [1, 7], "with_batch_s": [1, 7], "with_column": [2, 36], "with_column_renam": 2, "with_com": [7, 13, 41], "with_create_default_catalog_and_schema": [1, 7, 34], "with_default_catalog_and_schema": [1, 7, 34], "with_delimit": [7, 13, 41], "with_disk_manager_dis": [1, 7], "with_disk_manager_o": [1, 7, 34], "with_disk_manager_specifi": [1, 7], "with_escap": [7, 13, 41], "with_fair_spill_pool": [1, 7, 34], "with_file_compression_typ": [7, 13, 41], "with_file_extens": [7, 13, 41], "with_file_sort_ord": [7, 13], "with_greedy_memory_pool": [1, 7], "with_has_head": [7, 13, 41], "with_head": 2, "with_information_schema": [1, 7, 34], "with_logical_extension_codec": 1, "with_newlines_in_valu": [7, 13], "with_null_regex": [7, 13, 41], "with_parquet_prun": [1, 7, 34], "with_pretti": 17, "with_quot": [7, 13], "with_repartition_aggreg": [1, 7, 34], "with_repartition_file_min_s": [1, 7], "with_repartition_file_scan": [1, 7], "with_repartition_join": [1, 7, 34], "with_repartition_sort": [1, 7], "with_repartition_window": [1, 7, 34], "with_schema": [7, 13], "with_schema_infer_max_record": [7, 13], "with_table_partition_col": [7, 13], "with_target_partit": [1, 7, 34], "with_temp_file_path": [1, 7], "with_termin": [7, 13], "with_truncated_row": [7, 13, 41], "with_unbounded_memory_pool": [1, 7], "within": [0, 5, 9, 18, 24, 26], "within_limit": 2, "without": [2, 4, 5, 7, 20, 21, 24, 27, 29, 30, 31, 36, 46], "won": 30, "word": [4, 5, 7], "work": [1, 2, 5, 7, 23, 27, 30, 34, 36, 37, 38, 46], "workflow": 21, "workload": 34, "worthwhil": [2, 7], "would": [4, 5, 8, 18, 20, 46], "wrap": [1, 2, 20], "wrapper": [1, 7, 15, 20, 21, 35], "write": [2, 7, 8, 16, 20, 31, 35, 36, 47], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_opt": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "write_t": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [2, 7, 20, 22, 35, 36], "x": [2, 5, 18, 22, 27, 33, 35, 38, 46], "xor": 5, "xz": [7, 13], "y": [2, 5, 18, 22, 27, 33, 35, 38, 46], "year": 5, "years_in_posit": 26, "yellow": [23, 35], "yellow_tripdata_2021": [23, 30], "yet": [2, 35], "yield": [2, 5, 36, 39], "you": [0, 1, 2, 5, 7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "your": [0, 2, 7, 18, 20, 21, 24, 25, 30, 31, 34, 35, 36, 37, 46, 47], "your_tabl": 36, "yourself": 20, "z": [1, 7, 18], "zero": [2, 5, 7, 15, 22, 39], "zstandard": [2, 7], "zstd": [2, 7, 13], "zubat": 24, "\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.options", "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", "Upgrade Guides"], "titleterms": {"0": 47, "52": 47, "The": 20, "addit": 37, "aggreg": [24, 31, 33], "altern": 20, "anti": 29, "apach": 35, "api": 19, "approach": 20, "argument": 36, "arrai": 26, "arrow": [20, 36, 39], "attribut": [4, 7, 12, 18], "avail": 33, "avro": 40, "base": [8, 36], "basic": [25, 37], "benchmark": 34, "best": 37, "boolean": 26, "build": 21, "built": 36, "cast": 27, "catalog": [0, 35], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 20, 36], "code": 21, "column": [26, 30, 36], "commit": 21, "common": [28, 36], "concept": 23, "condit": 27, "configur": [34, 37], "consider": 34, "content": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "context": [1, 23], "contextu": 37, "control": 37, "copi": 36, "core": 36, "cpu": 34, "creat": [35, 36, 37], "csv": 41, "custom": [35, 37, 45], "data": 35, "datafram": [2, 23, 35, 36], "dataframe_formatt": 3, "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 39, 47], "defin": [31, 35], "delta": 35, "depend": 21, "detail": 20, "develop": 21, "displai": 37, "distinct": 24, "duplic": 29, "exampl": [22, 34], "execut": 36, "export": 39, "expr": 4, "express": [23, 26, 36], "extens": 20, "ffi": 20, "file": 35, "fill_nul": 27, "filter": 24, "format": 37, "formatt": 37, "frame": 33, "from": [20, 39], "full": 29, "function": [3, 4, 5, 7, 11, 18, 24, 26, 27, 31, 33, 36], "guid": 47, "guidelin": [20, 21], "handl": 27, "hook": 21, "how": 21, "html": [36, 37], "html_formatt": 6, "iceberg": 35, "implement": 20, "import": [34, 39], "improv": 21, "inner": 29, "input": [8, 9, 10], "inspir": 20, "instal": [21, 22, 38], "introduct": [21, 38], "io": [11, 42], "issu": 20, "join": 29, "json": 43, "jupyt": 37, "kei": 29, "lake": 35, "left": 29, "librari": [35, 36], "liter": 26, "local": 35, "locat": 10, "manag": 37, "mathemat": 27, "maxim": 34, "memori": [35, 37], "miss": 27, "modul": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18], "mutabl": 20, "name": 36, "null": [24, 33], "object": 35, "object_stor": 12, "oper": [25, 28, 36], "optim": 37, "option": [13, 31], "order": [24, 33], "other": [27, 35], "overview": 36, "packag": [7, 9], "paramet": [24, 33], "parameter": 46, "parquet": 44, "partit": 33, "perform": 37, "plan": 14, "practic": 37, "pre": 21, "primari": 20, "provid": [35, 37, 45], "pyarrow": 36, "pyo3": 20, "python": [20, 21, 22, 36], "queri": 46, "record_batch": 15, "refer": 19, "regist": 32, "render": [36, 37], "resourc": 37, "return": [4, 5, 7], "run": 21, "rust": 21, "scalar": 31, "schema": 35, "select": 30, "semi": 29, "separ": 21, "session": 23, "set": [24, 33], "share": 37, "sourc": 35, "speed": 21, "sql": 46, "statu": 20, "store": 35, "stream": 36, "string": 27, "struct": 26, "style": 37, "submodul": [7, 9], "substrait": 16, "tabl": [31, 35, 45], "tempor": 27, "termin": 36, "treatment": [24, 33], "udwf": 31, "unpars": 17, "updat": 21, "upgrad": 47, "usag": 34, "user": [31, 35], "user_defin": 18, "valu": 27, "view": 32, "window": [31, 33], "work": 20, "zero": 36}}) \ No newline at end of file diff --git a/user-guide/basics.html b/user-guide/basics.html index c0247bdb3..98bef4d88 100644 --- a/user-guide/basics.html +++ b/user-guide/basics.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/aggregations.html b/user-guide/common-operations/aggregations.html index 7c0269ad8..fe12b67a1 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -610,15 +620,15 @@

    Distinct +----------+--------------------------------------------------+ | Type 1 | Type 2 List | +----------+--------------------------------------------------+ -| Bug | [Grass, Poison, Flying, ] | -| Poison | [Flying, , Ground] | -| Electric | [Steel, , Flying] | +| Bug | [Grass, , Flying, Poison] | +| Poison | [, Ground, Flying] | +| Electric | [Steel, Flying, ] | | Fairy | [] | | Normal | [Flying, , Fairy] | | Ice | [Flying, Psychic] | -| Grass | [Psychic, Poison, ] | -| Fire | [Flying, Dragon, ] | -| Water | [, Dark, Poison, Psychic, Fighting, Flying, Ice] | +| Grass | [Poison, , Psychic] | +| Fire | [Flying, , Dragon] | +| Water | [Psychic, Fighting, Poison, , Ice, Flying, Dark] | | Ground | [, Rock] | +----------+--------------------------------------------------+ Data truncated. @@ -635,14 +645,14 @@

    Distinct | Type 1 | Type 2 List | +----------+------------------------------------------------+ | Bug | [Poison, Grass, Flying] | -| Poison | [Ground, Flying] | -| Electric | [Steel, Flying] | -| Normal | [Fairy, Flying] | -| Ice | [Psychic, Flying] | +| Poison | [Flying, Ground] | +| Electric | [Flying, Steel] | +| Normal | [Flying, Fairy] | +| Ice | [Flying, Psychic] | | Grass | [Psychic, Poison] | -| Fire | [Flying, Dragon] | -| Water | [Poison, Flying, Ice, Fighting, Dark, Psychic] | -| Rock | [Ground, Water, Flying] | +| Fire | [Dragon, Flying] | +| Water | [Flying, Ice, Dark, Poison, Psychic, Fighting] | +| Rock | [Flying, Water, Ground] | | Ghost | [Poison] | +----------+------------------------------------------------+ Data truncated. @@ -653,15 +663,15 @@

    Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Grass, Poison, Flying] | -| Poison | [Flying, Ground] | -| Electric | [Flying, Steel] | +| Bug | [Flying, Poison, Grass] | +| Poison | [Ground, Flying] | +| Electric | [Steel, Flying] | | Fairy | | | Normal | [Fairy, Flying] | | Ice | [Psychic, Flying] | -| Grass | [Poison, Psychic] | -| Fire | [Flying, Dragon] | -| Water | [Psychic, Poison, Ice, Flying, Fighting, Dark] | +| Grass | [Psychic, Poison] | +| Fire | [Dragon, Flying] | +| Water | [Ice, Dark, Flying, Psychic, Fighting, Poison] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index 24cee81d8..cfcb45959 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -446,11 +456,11 @@

    Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 730 | A | -| 2 | ruby | 479 | A | -| 3 | java | 280 | B | -| 4 | haskell | 944 | C | -| 5 | go | 44 | B | +| 1 | python | 465 | A | +| 2 | ruby | 390 | A | +| 3 | java | 725 | B | +| 4 | haskell | 8 | C | +| 5 | go | 9 | B | +-----+---------+--------+--------+ @@ -461,8 +471,8 @@

    Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 730 | A | -| 2 | ruby | 479 | A | +| 1 | python | 465 | A | +| 2 | ruby | 390 | A | +-----+--------+--------+--------+ @@ -480,28 +490,28 @@

    Basic Operations
    In [8]: df.to_pandas()
     Out[8]: 
        nrs    names  random groups
    -0    1   python     730      A
    -1    2     ruby     479      A
    -2    3     java     280      B
    -3    4  haskell     944      C
    -4    5       go      44      B
    +0    1   python     465      A
    +1    2     ruby     390      A
    +2    3     java     725      B
    +3    4  haskell       8      C
    +4    5       go       9      B
     

    describe() shows a quick statistic summary of your data:

    In [9]: df.describe()
     Out[9]: 
     DataFrame()
    -+------------+--------------------+-------+------------------+--------+
    -| describe   | nrs                | names | random           | groups |
    -+------------+--------------------+-------+------------------+--------+
    -| count      | 5.0                | 5     | 5.0              | 5      |
    -| null_count | 0.0                | 0     | 0.0              | 0      |
    -| mean       | 3.0                | null  | 495.4            | null   |
    -| std        | 1.5811388300841898 | null  | 355.916844220669 | null   |
    -| min        | 1.0                | go    | 44.0             | A      |
    -| max        | 5.0                | ruby  | 944.0            | C      |
    -| median     | 3.0                | null  | 479.0            | null   |
    -+------------+--------------------+-------+------------------+--------+
    ++------------+--------------------+-------+--------------------+--------+
    +| describe   | nrs                | names | random             | groups |
    ++------------+--------------------+-------+--------------------+--------+
    +| count      | 5.0                | 5     | 5.0                | 5      |
    +| null_count | 0.0                | 0     | 0.0                | 0      |
    +| mean       | 3.0                | null  | 319.4              | null   |
    +| std        | 1.5811388300841898 | null  | 309.84399300293046 | null   |
    +| min        | 1.0                | go    | 8.0                | A      |
    +| max        | 5.0                | ruby  | 725.0              | C      |
    +| median     | 3.0                | null  | 390.0              | null   |
    ++------------+--------------------+-------+--------------------+--------+
     
    diff --git a/user-guide/common-operations/expressions.html b/user-guide/common-operations/expressions.html index f2358ca39..cbfda5390 100644 --- a/user-guide/common-operations/expressions.html +++ b/user-guide/common-operations/expressions.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index 867876c1d..d54ebd6f4 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -507,16 +517,16 @@

    Mathematical+------------------------------------------------------------------+ | power(pokemon.Attack,Int64(2)) - power(pokemon.Defense,Int64(2)) | +------------------------------------------------------------------+ -| 0 | -| -125 | -| -165 | -| -5129 | -| 855 | -| 732 | -| 972 | -| 4579 | -| 4732 | -| -1921 | +| 0.0 | +| -125.0 | +| -165.0 | +| -5129.0 | +| 855.0 | +| 732.0 | +| 972.0 | +| 4579.0 | +| 4732.0 | +| -1921.0 | +------------------------------------------------------------------+ @@ -556,16 +566,16 @@

    Temporal +-------------------------------+ | now() | +-------------------------------+ -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | -| 2026-01-05T16:06:57.764994749 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +| 2026-02-09T15:58:03.744596391 | +-------------------------------+ Data truncated. diff --git a/user-guide/common-operations/index.html b/user-guide/common-operations/index.html index 5bd5dc903..789adaf29 100644 --- a/user-guide/common-operations/index.html +++ b/user-guide/common-operations/index.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/joins.html b/user-guide/common-operations/joins.html index 20fb374e6..de8c62fd0 100644 --- a/user-guide/common-operations/joins.html +++ b/user-guide/common-operations/joins.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/select-and-filter.html b/user-guide/common-operations/select-and-filter.html index 180cd0c9f..90997c72f 100644 --- a/user-guide/common-operations/select-and-filter.html +++ b/user-guide/common-operations/select-and-filter.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/udf-and-udfa.html b/user-guide/common-operations/udf-and-udfa.html index 45ac30e2d..07eb1060c 100644 --- a/user-guide/common-operations/udf-and-udfa.html +++ b/user-guide/common-operations/udf-and-udfa.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -546,6 +556,15 @@

    Scalar Functions+---+---------+ +

    In this example we passed the PyArrow DataType when we defined the function +by calling udf(). If you need additional control, such as specifying +metadata or nullability of the input or output, you can instead specify a +PyArrow Field.

    +

    If you need to write a custom function but do not want to incur the performance +cost of converting to Python objects and back, a more advanced approach is to +write Rust based UDFs and to expose them to Python. There is an example in the +DataFusion blog +describing how to do this.

    Aggregate Functions

    diff --git a/user-guide/common-operations/views.html b/user-guide/common-operations/views.html index 118a2ea93..31155df55 100644 --- a/user-guide/common-operations/views.html +++ b/user-guide/common-operations/views.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/common-operations/windows.html b/user-guide/common-operations/windows.html index ac2682ab1..2202f7eb1 100644 --- a/user-guide/common-operations/windows.html +++ b/user-guide/common-operations/windows.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/configuration.html b/user-guide/configuration.html index c26e0b53f..642d665b5 100644 --- a/user-guide/configuration.html +++ b/user-guide/configuration.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/data-sources.html b/user-guide/data-sources.html index 40625ae25..a2b1c80e5 100644 --- a/user-guide/data-sources.html +++ b/user-guide/data-sources.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/dataframe/index.html b/user-guide/dataframe/index.html index 69a344d86..80c598120 100644 --- a/user-guide/dataframe/index.html +++ b/user-guide/dataframe/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/dataframe/rendering.html b/user-guide/dataframe/rendering.html index 4779e0f58..91bac2c59 100644 --- a/user-guide/dataframe/rendering.html +++ b/user-guide/dataframe/rendering.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -517,8 +527,8 @@

    Configuring the HTML Formattermax_width=1000, # Maximum width in pixels max_height=300, # Maximum height in pixels max_memory_bytes=2097152, # Maximum memory for rendering (2MB) - min_rows_display=20, # Minimum number of rows to display - repr_rows=10, # Number of rows to display in __repr__ + min_rows=10, # Minimum number of rows to display + max_rows=10, # Maximum rows to display in __repr__ enable_cell_expansion=True,# Allow expanding truncated cells custom_css=None, # Additional custom CSS show_truncation_message=True, # Show message when data is truncated @@ -635,8 +645,8 @@

    Memory and Display Controls
    configure_formatter(
         max_memory_bytes=4 * 1024 * 1024,  # 4MB maximum memory for display
    -    min_rows_display=50,               # Always show at least 50 rows
    -    repr_rows=20                       # Show 20 rows in __repr__ output
    +    min_rows=20,                       # Always show at least 20 rows
    +    max_rows=50                        # Show up to 50 rows in output
     )
     
    diff --git a/user-guide/introduction.html b/user-guide/introduction.html index 9e1434734..ddbae16d0 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -243,6 +243,11 @@ SQL

  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/arrow.html b/user-guide/io/arrow.html index 046a0ade6..748fdbb54 100644 --- a/user-guide/io/arrow.html +++ b/user-guide/io/arrow.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/avro.html b/user-guide/io/avro.html index 68cd7cc12..bf41d6c8a 100644 --- a/user-guide/io/avro.html +++ b/user-guide/io/avro.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/csv.html b/user-guide/io/csv.html index 64b2ccfac..5b1933d99 100644 --- a/user-guide/io/csv.html +++ b/user-guide/io/csv.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -437,6 +447,25 @@ df = ctx.table("file") +

    If you require additional control over how to read the CSV file, you can use +CsvReadOptions to set a variety of options.

    +
    from datafusion import CsvReadOptions
    +options = (
    +    CsvReadOptions()
    +    .with_has_header(True) # File contains a header row
    +    .with_delimiter(";") # Use ; as the delimiter instead of ,
    +    .with_comment("#")  # Skip lines starting with #
    +    .with_escape("\\")  # Escape character
    +    .with_null_regex(r"^(null|NULL|N/A)$")  # Treat these as NULL
    +    .with_truncated_rows(True) # Allow rows to have incomplete columns
    +    .with_file_compression_type("gzip")  # Read gzipped CSV
    +    .with_file_extension(".gz") # File extension other than .csv
    +)
    +df = ctx.read_csv("data.csv.gz", options=options)
    +
    +
    +

    Details for all CSV reading options can be found on the +DataFusion documentation site.

    diff --git a/user-guide/io/index.html b/user-guide/io/index.html index 183415639..5dd714ddf 100644 --- a/user-guide/io/index.html +++ b/user-guide/io/index.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/json.html b/user-guide/io/json.html index de0fc3b19..100317ffa 100644 --- a/user-guide/io/json.html +++ b/user-guide/io/json.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/parquet.html b/user-guide/io/parquet.html index 0d122763f..6039c851e 100644 --- a/user-guide/io/parquet.html +++ b/user-guide/io/parquet.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/io/table_provider.html b/user-guide/io/table_provider.html index ba7e1cbcb..875d160a8 100644 --- a/user-guide/io/table_provider.html +++ b/user-guide/io/table_provider.html @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan diff --git a/user-guide/sql.html b/user-guide/sql.html index 6dd6e0a48..0eeb3a249 100644 --- a/user-guide/sql.html +++ b/user-guide/sql.html @@ -34,7 +34,7 @@ - + @@ -243,6 +243,11 @@ SQL
  • +
  • + + Upgrade Guides + +
  • @@ -354,6 +359,11 @@ datafusion.object_store +

  • + + datafusion.options + +
  • datafusion.plan @@ -591,10 +601,10 @@

    Parameterized queriesConfiguration

    - +

    next

    -

    Introduction

    +

    Upgrade Guides

    diff --git a/user-guide/upgrade-guides.html b/user-guide/upgrade-guides.html new file mode 100644 index 000000000..97b92fc4a --- /dev/null +++ b/user-guide/upgrade-guides.html @@ -0,0 +1,571 @@ + + + + + + + + Upgrade Guides — Apache Arrow DataFusion documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + +
    + + + + +
    + + +
    + +
    + On this page +
    + + +
    + +
    + +
    + + +
    + + + + + + +
    + +
    + +
    +

    Upgrade Guides

    +
    +

    DataFusion 52.0.0

    +

    This version includes a major update to the Python Extensions due to upgrades +to the Foreign Function Interface. +Users who contribute their own CatalogProvider, SchemaProvider, +TableProvider or TableFunction via FFI must now provide access to a +LogicalExtensionCodec and a TaskContextProvider. The function signatures +for the methods to get these PyCapsule objects now requires an additional +parameter, which is a Python object that can be used to extract the +FFI_LogicalExtensionCodec that is necessary.

    +

    A complete example can be found in the FFI example. +Your methods need to be updated to take an additional parameter like in this +example.

    +
    #[pymethods]
    +impl MyCatalogProvider {
    +    pub fn __datafusion_catalog_provider__<'py>(
    +        &self,
    +        py: Python<'py>,
    +        session: Bound<PyAny>,
    +    ) -> PyResult<Bound<'py, PyCapsule>> {
    +        let name = cr"datafusion_catalog_provider".into();
    +
    +        let provider = Arc::clone(&self.inner) as Arc<dyn CatalogProvider + Send>;
    +
    +        let codec = ffi_logical_codec_from_pycapsule(session)?;
    +        let provider = FFI_CatalogProvider::new_with_ffi_codec(provider, None, codec);
    +
    +        PyCapsule::new(py, provider, Some(name))
    +    }
    +}
    +
    +
    +

    To extract the logical extension codec FFI object from the provided object you +can implement a helper method such as:

    +
    pub(crate) fn ffi_logical_codec_from_pycapsule(
    +    obj: Bound<PyAny>,
    +) -> PyResult<FFI_LogicalExtensionCodec> {
    +    let attr_name = "__datafusion_logical_extension_codec__";
    +    let capsule = if obj.hasattr(attr_name)? {
    +        obj.getattr(attr_name)?.call0()?
    +    } else {
    +        obj
    +    };
    +
    +    let capsule = capsule.downcast::<PyCapsule>()?;
    +    validate_pycapsule(capsule, "datafusion_logical_extension_codec")?;
    +
    +    let codec = unsafe { capsule.reference::<FFI_LogicalExtensionCodec>() };
    +
    +    Ok(codec.clone())
    +}
    +
    +
    +

    The DataFusion FFI interface updates no longer depend directly on the +datafusion core crate. You can improve your build times and potentially +reduce your library binary size by removing this dependency and instead +using the specific datafusion project crates.

    +

    For example, instead of including expressions like:

    +
    use datafusion::catalog::MemTable;
    +
    +
    +

    Instead you can now write:

    +
    use datafusion_catalog::MemTable;
    +
    +
    +
    +
    + + +
    + + + + + +
    + + +
    +
    + + + + +
    +
    + + + + + + +
    +
    + + + + \ No newline at end of file From 864566ab124d6df30b31a872ec39642d94dc064c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Feb 2026 20:25:20 +0000 Subject: [PATCH 33/36] Publish built docs triggered by 5affa06b17cdacd73b91808979309ce06312b2ae --- .../autoapi/datafusion/catalog/index.rst.txt | 83 ++ .../autoapi/datafusion/context/index.rst.txt | 22 +- .../datafusion/dataframe/index.rst.txt | 4 +- .../datafusion/functions/index.rst.txt | 25 +- _sources/autoapi/datafusion/index.rst.txt | 474 +++++++++- .../autoapi/datafusion/plan/index.rst.txt | 6 + .../datafusion/substrait/index.rst.txt | 20 + .../datafusion/user_defined/index.rst.txt | 18 +- .../common-operations/udf-and-udfa.rst.txt | 33 +- autoapi/datafusion/catalog/index.html | 195 +++- autoapi/datafusion/context/index.html | 65 +- autoapi/datafusion/dataframe/index.html | 4 +- autoapi/datafusion/functions/index.html | 158 ++-- autoapi/datafusion/index.html | 852 +++++++++++++++++- autoapi/datafusion/plan/index.html | 15 + autoapi/datafusion/substrait/index.html | 43 + autoapi/datafusion/user_defined/index.html | 16 +- genindex.html | 240 ++++- objects.inv | Bin 9168 -> 9481 bytes searchindex.js | 2 +- .../common-operations/aggregations.html | 32 +- user-guide/common-operations/basic-info.html | 34 +- user-guide/common-operations/functions.html | 20 +- .../common-operations/udf-and-udfa.html | 37 +- user-guide/introduction.html | 2 +- 25 files changed, 2160 insertions(+), 240 deletions(-) diff --git a/_sources/autoapi/datafusion/catalog/index.rst.txt b/_sources/autoapi/datafusion/catalog/index.rst.txt index aa511f3e0..f2c9776f3 100644 --- a/_sources/autoapi/datafusion/catalog/index.rst.txt +++ b/_sources/autoapi/datafusion/catalog/index.rst.txt @@ -15,7 +15,9 @@ Classes .. autoapisummary:: datafusion.catalog.Catalog + datafusion.catalog.CatalogList datafusion.catalog.CatalogProvider + datafusion.catalog.CatalogProviderList datafusion.catalog.Schema datafusion.catalog.SchemaProvider datafusion.catalog.Table @@ -84,6 +86,54 @@ Module Contents .. py:attribute:: catalog +.. py:class:: CatalogList(catalog_list: datafusion._internal.catalog.RawCatalogList) + + DataFusion data catalog list. + + This constructor is not typically called by the end user. + + + .. py:method:: __repr__() -> str + + Print a string representation of the catalog list. + + + + .. py:method:: catalog(name: str = 'datafusion') -> Catalog + + Returns the catalog with the given ``name`` from this catalog. + + + + .. py:method:: catalog_names() -> set[str] + + Returns the list of schemas in this catalog. + + + + .. py:method:: memory_catalog(ctx: datafusion.SessionContext | None = None) -> CatalogList + :staticmethod: + + + Create an in-memory catalog provider list. + + + + .. py:method:: names() -> set[str] + + This is an alias for `catalog_names`. + + + + .. py:method:: register_catalog(name: str, catalog: Catalog | CatalogProvider | CatalogProviderExportable) -> Catalog | None + + Register a catalog with this catalog list. + + + + .. py:attribute:: catalog_list + + .. py:class:: CatalogProvider Bases: :py:obj:`abc.ABC` @@ -129,6 +179,39 @@ Module Contents +.. py:class:: CatalogProviderList + + Bases: :py:obj:`abc.ABC` + + + Abstract class for defining a Python based Catalog Provider List. + + + .. py:method:: catalog(name: str) -> CatalogProviderExportable | CatalogProvider | Catalog | None + :abstractmethod: + + + Retrieve a specific catalog from this catalog list. + + + + .. py:method:: catalog_names() -> set[str] + :abstractmethod: + + + Set of the names of all catalogs in this catalog list. + + + + .. py:method:: register_catalog(name: str, catalog: CatalogProviderExportable | CatalogProvider | Catalog) -> None + + Add a catalog to this catalog list. + + This method is optional. If your catalog provides a fixed list of catalogs, you + do not need to implement this method. + + + .. py:class:: Schema(schema: datafusion._internal.catalog.RawSchema) DataFusion Schema. diff --git a/_sources/autoapi/datafusion/context/index.rst.txt b/_sources/autoapi/datafusion/context/index.rst.txt index 3c2be3ae2..f010a0103 100644 --- a/_sources/autoapi/datafusion/context/index.rst.txt +++ b/_sources/autoapi/datafusion/context/index.rst.txt @@ -16,7 +16,6 @@ Classes datafusion.context.ArrowArrayExportable datafusion.context.ArrowStreamExportable - datafusion.context.CatalogProviderExportable datafusion.context.RuntimeConfig datafusion.context.RuntimeEnvBuilder datafusion.context.SQLOptions @@ -54,19 +53,6 @@ Module Contents .. py:method:: __arrow_c_stream__(requested_schema: object | None = None) -> object -.. py:class:: CatalogProviderExportable - - Bases: :py:obj:`Protocol` - - - Type hint for object that has __datafusion_catalog_provider__ PyCapsule. - - https://docs.rs/datafusion/latest/datafusion/catalog/trait.CatalogProvider.html - - - .. py:method:: __datafusion_catalog_provider__(session: Any) -> object - - .. py:class:: RuntimeConfig Bases: :py:obj:`RuntimeEnvBuilder` @@ -698,12 +684,18 @@ Module Contents - .. py:method:: register_catalog_provider(name: str, provider: CatalogProviderExportable | datafusion.catalog.CatalogProvider | datafusion.catalog.Catalog) -> None + .. py:method:: register_catalog_provider(name: str, provider: datafusion.catalog.CatalogProviderExportable | datafusion.catalog.CatalogProvider | datafusion.catalog.Catalog) -> None Register a catalog provider. + .. py:method:: register_catalog_provider_list(provider: datafusion.catalog.CatalogProviderListExportable | datafusion.catalog.CatalogProviderList | datafusion.catalog.CatalogList) -> None + + Register a catalog provider list. + + + .. py:method:: register_csv(name: str, path: str | pathlib.Path | list[str | pathlib.Path], schema: pyarrow.Schema | None = None, has_header: bool = True, delimiter: str = ',', schema_infer_max_records: int = DEFAULT_MAX_INFER_SCHEMA, file_extension: str = '.csv', file_compression_type: str | None = None, options: datafusion.options.CsvReadOptions | None = None) -> None Register a CSV file as a table. diff --git a/_sources/autoapi/datafusion/dataframe/index.rst.txt b/_sources/autoapi/datafusion/dataframe/index.rst.txt index f4134a83d..0ac971060 100644 --- a/_sources/autoapi/datafusion/dataframe/index.rst.txt +++ b/_sources/autoapi/datafusion/dataframe/index.rst.txt @@ -27,7 +27,7 @@ Classes Module Contents --------------- -.. py:class:: Compression(*args, **kwds) +.. py:class:: Compression Bases: :py:obj:`enum.Enum` @@ -891,7 +891,7 @@ Module Contents .. py:attribute:: _raw_write_options -.. py:class:: InsertOp(*args, **kwds) +.. py:class:: InsertOp Bases: :py:obj:`enum.Enum` diff --git a/_sources/autoapi/datafusion/functions/index.rst.txt b/_sources/autoapi/datafusion/functions/index.rst.txt index 10b7f1a01..f1c509093 100644 --- a/_sources/autoapi/datafusion/functions/index.rst.txt +++ b/_sources/autoapi/datafusion/functions/index.rst.txt @@ -195,6 +195,7 @@ Functions datafusion.functions.range datafusion.functions.rank datafusion.functions.regexp_count + datafusion.functions.regexp_instr datafusion.functions.regexp_like datafusion.functions.regexp_match datafusion.functions.regexp_replace @@ -390,7 +391,7 @@ Module Contents For example:: - df.select(array_agg(col("a"), order_by="b")) + df.aggregate([], array_agg(col("a"), order_by="b")) .. py:function:: array_append(array: datafusion.expr.Expr, element: datafusion.expr.Expr) -> datafusion.expr.Expr @@ -1056,7 +1057,7 @@ Module Contents For example:: - df.select(first_value(col("a"), order_by="ts")) + df.aggregate([], first_value(col("a"), order_by="ts")) .. py:function:: flatten(array: datafusion.expr.Expr) -> datafusion.expr.Expr @@ -1152,7 +1153,7 @@ Module Contents For example:: - df.select(last_value(col("a"), order_by="ts")) + df.aggregate([], last_value(col("a"), order_by="ts")) .. py:function:: lcm(x: datafusion.expr.Expr, y: datafusion.expr.Expr) -> datafusion.expr.Expr @@ -1521,7 +1522,7 @@ Module Contents .. py:function:: min(expression: datafusion.expr.Expr, filter: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr - Returns the minimum value of the argument. + Aggregate function that returns the minimum value of the argument. If using the builder functions described in ref:`_aggregation` this function ignores the options ``order_by``, ``null_treatment``, and ``distinct``. @@ -1565,7 +1566,7 @@ Module Contents For example:: - df.select(nth_value(col("a"), 2, order_by="ts")) + df.aggregate([], nth_value(col("a"), 2, order_by="ts")) .. py:function:: ntile(groups: int, partition_by: list[datafusion.expr.Expr] | datafusion.expr.Expr | None = None, order_by: list[datafusion.expr.SortKey] | datafusion.expr.SortKey | None = None) -> datafusion.expr.Expr @@ -1718,7 +1719,7 @@ Module Contents rank(order_by="points") -.. py:function:: regexp_count(string: datafusion.expr.Expr, pattern: datafusion.expr.Expr, start: datafusion.expr.Expr, flags: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr +.. py:function:: regexp_count(string: datafusion.expr.Expr, pattern: datafusion.expr.Expr, start: datafusion.expr.Expr | None = None, flags: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Returns the number of matches in a string. @@ -1726,6 +1727,16 @@ Module Contents expression. +.. py:function:: regexp_instr(values: datafusion.expr.Expr, regex: datafusion.expr.Expr, start: datafusion.expr.Expr | None = None, n: datafusion.expr.Expr | None = None, flags: datafusion.expr.Expr | None = None, sub_expr: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr + + Returns the position of a regular expression match in a string. + + Searches ``values`` for the ``n``-th occurrence of ``regex``, starting at position + ``start`` (the first position is 1). Returns the starting or ending position based + on ``end_position``. Use ``flags`` to control regex behavior and ``sub_expr`` to + return the position of a specific capture group instead of the entire match. + + .. py:function:: regexp_like(string: datafusion.expr.Expr, regex: datafusion.expr.Expr, flags: datafusion.expr.Expr | None = None) -> datafusion.expr.Expr Find if any regular expression (regex) matches exist. @@ -2057,7 +2068,7 @@ Module Contents For example:: - df.select(string_agg(col("a"), ",", order_by="b")) + df.aggregate([], string_agg(col("a"), ",", order_by="b")) .. py:function:: strpos(string: datafusion.expr.Expr, substring: datafusion.expr.Expr) -> datafusion.expr.Expr diff --git a/_sources/autoapi/datafusion/index.rst.txt b/_sources/autoapi/datafusion/index.rst.txt index 8afeae253..24fecff4f 100644 --- a/_sources/autoapi/datafusion/index.rst.txt +++ b/_sources/autoapi/datafusion/index.rst.txt @@ -44,6 +44,10 @@ Attributes datafusion.DFSchema datafusion.col datafusion.column + datafusion.udaf + datafusion.udf + datafusion.udtf + datafusion.udwf Classes @@ -51,6 +55,8 @@ Classes .. autoapisummary:: + datafusion.Accumulator + datafusion.AggregateUDF datafusion.Catalog datafusion.CsvReadOptions datafusion.DataFrameWriteOptions @@ -65,9 +71,12 @@ Classes datafusion.RecordBatchStream datafusion.RuntimeEnvBuilder datafusion.SQLOptions + datafusion.ScalarUDF datafusion.SessionConfig datafusion.Table + datafusion.TableFunction datafusion.WindowFrame + datafusion.WindowUDF Functions @@ -87,6 +96,179 @@ Functions Package Contents ---------------- +.. py:class:: Accumulator + + Defines how an :py:class:`AggregateUDF` accumulates values. + + + .. py:method:: evaluate() -> pyarrow.Scalar + :abstractmethod: + + + Return the resultant value. + + While this function template expects a PyArrow Scalar value return type, + you can return any value that can be converted into a Scalar. This + includes basic Python data types such as integers and strings. In + addition to primitive types, we currently support PyArrow, nanoarrow, + and arro3 objects in addition to primitive data types. Other objects + that support the Arrow FFI standard will be given a "best attempt" at + conversion to scalar objects. + + + + .. py:method:: merge(states: list[pyarrow.Array]) -> None + :abstractmethod: + + + Merge a set of states. + + + + .. py:method:: state() -> list[pyarrow.Scalar] + :abstractmethod: + + + Return the current state. + + While this function template expects PyArrow Scalar values return type, + you can return any value that can be converted into a Scalar. This + includes basic Python data types such as integers and strings. In + addition to primitive types, we currently support PyArrow, nanoarrow, + and arro3 objects in addition to primitive data types. Other objects + that support the Arrow FFI standard will be given a "best attempt" at + conversion to scalar objects. + + + + .. py:method:: update(*values: pyarrow.Array) -> None + :abstractmethod: + + + Evaluate an array of values and update state. + + + +.. py:class:: AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str) + AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...) + + Class for performing scalar user-defined functions (UDF). + + Aggregate UDFs operate on a group of rows and return a single value. See + also :py:class:`ScalarUDF` for operating on a row by row basis. + + Instantiate a user-defined aggregate function (UDAF). + + See :py:func:`udaf` for a convenience function and argument + descriptions. + + + .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr + + Execute the UDAF. + + This function is not typically called by an end user. These calls will + occur during the evaluation of the dataframe. + + + + .. py:method:: __repr__() -> str + + Print a string representation of the Aggregate UDF. + + + + .. py:method:: from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) -> AggregateUDF + :staticmethod: + + + Create an Aggregate UDF from AggregateUDF PyCapsule object. + + This function will instantiate a Aggregate UDF that uses a DataFusion + AggregateUDF that is exported via the FFI bindings. + + + + .. py:method:: udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, AggregateUDF] + udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) -> AggregateUDF + udaf(accum: AggregateUDFExportable) -> AggregateUDF + udaf(accum: _typeshed.CapsuleType) -> AggregateUDF + :staticmethod: + + + Create a new User-Defined Aggregate Function (UDAF). + + This class allows you to define an aggregate function that can be used in + data aggregation or window function calls. + + Usage: + - As a function: ``udaf(accum, input_types, return_type, state_type, volatility, name)``. + - As a decorator: ``@udaf(input_types, return_type, state_type, volatility, name)``. + When using ``udaf`` as a decorator, do not pass ``accum`` explicitly. + + Function example: + + If your :py:class:`Accumulator` can be instantiated with no arguments, you + can simply pass it's type as `accum`. If you need to pass additional + arguments to it's constructor, you can define a lambda or a factory method. + During runtime the :py:class:`Accumulator` will be constructed for every + instance in which this UDAF is used. The following examples are all valid:: + + import pyarrow as pa + import pyarrow.compute as pc + + class Summarize(Accumulator): + def __init__(self, bias: float = 0.0): + self._sum = pa.scalar(bias) + + def state(self) -> list[pa.Scalar]: + return [self._sum] + + def update(self, values: pa.Array) -> None: + self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py()) + + def merge(self, states: list[pa.Array]) -> None: + self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py()) + + def evaluate(self) -> pa.Scalar: + return self._sum + + def sum_bias_10() -> Summarize: + return Summarize(10.0) + + udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()], + "immutable") + udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()], + "immutable") + udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(), + [pa.float64()], "immutable") + + Decorator example::: + + @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable") + def udf4() -> Summarize: + return Summarize(10.0) + + :param accum: The accumulator python function. Only needed when calling as a + function. Skip this argument when using ``udaf`` as a decorator. + If you have a Rust backed AggregateUDF within a PyCapsule, you can + pass this parameter and ignore the rest. They will be determined + directly from the underlying function. See the online documentation + for more information. + :param input_types: The data types of the arguments to ``accum``. + :param return_type: The data type of the return value. + :param state_type: The data types of the intermediate accumulation. + :param volatility: See :py:class:`Volatility` for allowed values. + :param name: A descriptive name for the function. + + :returns: A user-defined aggregate function, which can be used in either data + aggregation or window function calls. + + + + .. py:attribute:: _udaf + + .. py:class:: Catalog(catalog: datafusion._internal.catalog.RawCatalog) DataFusion data catalog. @@ -1298,7 +1480,7 @@ Package Contents .. py:attribute:: expr -.. py:class:: InsertOp(*args, **kwds) +.. py:class:: InsertOp Bases: :py:obj:`enum.Enum` @@ -1343,6 +1525,12 @@ Package Contents This constructor should not be called by the end user. + .. py:method:: __eq__(other: LogicalPlan) -> bool + + Test equality. + + + .. py:method:: __repr__() -> str Generate a printable representation of the plan. @@ -1897,6 +2085,101 @@ Package Contents .. py:attribute:: options_internal +.. py:class:: ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_fields: list[pyarrow.Field], return_field: _R, volatility: Volatility | str) + + Class for performing scalar user-defined functions (UDF). + + Scalar UDFs operate on a row by row basis. See also :py:class:`AggregateUDF` for + operating on a group of rows. + + Instantiate a scalar user-defined function (UDF). + + See helper method :py:func:`udf` for argument details. + + + .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr + + Execute the UDF. + + This function is not typically called by an end user. These calls will + occur during the evaluation of the dataframe. + + + + .. py:method:: __repr__() -> str + + Print a string representation of the Scalar UDF. + + + + .. py:method:: from_pycapsule(func: ScalarUDFExportable) -> ScalarUDF + :staticmethod: + + + Create a Scalar UDF from ScalarUDF PyCapsule object. + + This function will instantiate a Scalar UDF that uses a DataFusion + ScalarUDF that is exported via the FFI bindings. + + + + .. py:method:: udf(input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, ScalarUDF] + udf(func: collections.abc.Callable[Ellipsis, _R], input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) -> ScalarUDF + udf(func: ScalarUDFExportable) -> ScalarUDF + :staticmethod: + + + Create a new User-Defined Function (UDF). + + This class can be used both as either a function or a decorator. + + Usage: + - As a function: ``udf(func, input_fields, return_field, volatility, name)``. + - As a decorator: ``@udf(input_fields, return_field, volatility, name)``. + When used a decorator, do **not** pass ``func`` explicitly. + + In lieu of passing a PyArrow Field, you can pass a DataType for simplicity. + When you do so, it will be assumed that the nullability of the inputs and + output are True and that they have no metadata. + + :param func: Only needed when calling as a function. + Skip this argument when using `udf` as a decorator. If you have a Rust + backed ScalarUDF within a PyCapsule, you can pass this parameter + and ignore the rest. They will be determined directly from the + underlying function. See the online documentation for more information. + :type func: Callable, optional + :param input_fields: The data types or Fields + of the arguments to ``func``. This list must be of the same length + as the number of arguments. + :type input_fields: list[pa.Field | pa.DataType] + :param return_field: The field of the return value from the function. + :type return_field: _R + :param volatility: See `Volatility` for allowed values. + :type volatility: Volatility | str + :param name: A descriptive name for the function. + :type name: Optional[str] + + :returns: A user-defined function that can be used in SQL expressions, + data aggregation, or window function calls. + + Example: Using ``udf`` as a function:: + + def double_func(x): + return x * 2 + double_udf = udf(double_func, [pa.int32()], pa.int32(), + "volatile", "double_it") + + Example: Using ``udf`` as a decorator:: + + @udf([pa.int32()], pa.int32(), "volatile", "double_it") + def double_udf(x): + return x * 2 + + + + .. py:attribute:: _udf + + .. py:class:: SessionConfig(config_options: dict[str, str] | None = None) Session configuration options. @@ -2105,6 +2388,59 @@ Package Contents Returns the schema associated with this table. +.. py:class:: TableFunction(name: str, func: collections.abc.Callable[[], any], ctx: datafusion.SessionContext | None = None) + + Class for performing user-defined table functions (UDTF). + + Table functions generate new table providers based on the + input expressions. + + Instantiate a user-defined table function (UDTF). + + See :py:func:`udtf` for a convenience function and argument + descriptions. + + + .. py:method:: __call__(*args: datafusion.expr.Expr) -> Any + + Execute the UDTF and return a table provider. + + + + .. py:method:: __repr__() -> str + + User printable representation. + + + + .. py:method:: _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) -> TableFunction + :staticmethod: + + + Create a TableFunction instance from function arguments. + + + + .. py:method:: _create_table_udf_decorator(name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] + :staticmethod: + + + Create a decorator for a WindowUDF. + + + + .. py:method:: udtf(name: str) -> collections.abc.Callable[Ellipsis, Any] + udtf(func: collections.abc.Callable[[], Any], name: str) -> TableFunction + :staticmethod: + + + Create a new User-Defined Table Function (UDTF). + + + + .. py:attribute:: _udtf + + .. py:class:: WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None) Defines a window frame for performing window operations. @@ -2147,6 +2483,134 @@ Package Contents .. py:attribute:: window_frame +.. py:class:: WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str) + + Class for performing window user-defined functions (UDF). + + Window UDFs operate on a partition of rows. See + also :py:class:`ScalarUDF` for operating on a row by row basis. + + Instantiate a user-defined window function (UDWF). + + See :py:func:`udwf` for a convenience function and argument + descriptions. + + + .. py:method:: __call__(*args: datafusion.expr.Expr) -> datafusion.expr.Expr + + Execute the UDWF. + + This function is not typically called by an end user. These calls will + occur during the evaluation of the dataframe. + + + + .. py:method:: __repr__() -> str + + Print a string representation of the Window UDF. + + + + .. py:method:: _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF + :staticmethod: + + + Create a WindowUDF instance from function arguments. + + + + .. py:method:: _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]] + :staticmethod: + + + Create a decorator for a WindowUDF. + + + + .. py:method:: _get_default_name(func: collections.abc.Callable) -> str + :staticmethod: + + + Get the default name for a function based on its attributes. + + + + .. py:method:: _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) -> list[pyarrow.DataType] + :staticmethod: + + + Convert a single DataType to a list if needed. + + + + .. py:method:: from_pycapsule(func: WindowUDFExportable) -> WindowUDF + :staticmethod: + + + Create a Window UDF from WindowUDF PyCapsule object. + + This function will instantiate a Window UDF that uses a DataFusion + WindowUDF that is exported via the FFI bindings. + + + + .. py:method:: udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> collections.abc.Callable[Ellipsis, WindowUDF] + udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) -> WindowUDF + :staticmethod: + + + Create a new User-Defined Window Function (UDWF). + + This class can be used both as either a function or a decorator. + + Usage: + - As a function: ``udwf(func, input_types, return_type, volatility, name)``. + - As a decorator: ``@udwf(input_types, return_type, volatility, name)``. + When using ``udwf`` as a decorator, do not pass ``func`` explicitly. + + Function example:: + + import pyarrow as pa + + class BiasedNumbers(WindowEvaluator): + def __init__(self, start: int = 0) -> None: + self.start = start + + def evaluate_all(self, values: list[pa.Array], + num_rows: int) -> pa.Array: + return pa.array([self.start + i for i in range(num_rows)]) + + def bias_10() -> BiasedNumbers: + return BiasedNumbers(10) + + udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable") + udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable") + udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable") + + + Decorator example:: + + @udwf(pa.int64(), pa.int64(), "immutable") + def biased_numbers() -> BiasedNumbers: + return BiasedNumbers(10) + + :param func: Only needed when calling as a function. Skip this argument when + using ``udwf`` as a decorator. If you have a Rust backed WindowUDF + within a PyCapsule, you can pass this parameter and ignore the rest. + They will be determined directly from the underlying function. See + the online documentation for more information. + :param input_types: The data types of the arguments. + :param return_type: The data type of the return value. + :param volatility: See :py:class:`Volatility` for allowed values. + :param name: A descriptive name for the function. + + :returns: A user-defined window function that can be used in window function calls. + + + + .. py:attribute:: _udwf + + .. py:function:: configure_formatter(**kwargs: Any) -> None Configure the global DataFrame HTML formatter. @@ -2276,3 +2740,11 @@ Package Contents .. py:data:: column :type: Col +.. py:data:: udaf + +.. py:data:: udf + +.. py:data:: udtf + +.. py:data:: udwf + diff --git a/_sources/autoapi/datafusion/plan/index.rst.txt b/_sources/autoapi/datafusion/plan/index.rst.txt index c29dcdad1..93af06184 100644 --- a/_sources/autoapi/datafusion/plan/index.rst.txt +++ b/_sources/autoapi/datafusion/plan/index.rst.txt @@ -100,6 +100,12 @@ Module Contents This constructor should not be called by the end user. + .. py:method:: __eq__(other: LogicalPlan) -> bool + + Test equality. + + + .. py:method:: __repr__() -> str Generate a printable representation of the plan. diff --git a/_sources/autoapi/datafusion/substrait/index.rst.txt b/_sources/autoapi/datafusion/substrait/index.rst.txt index 38160a6ad..b9a1fd525 100644 --- a/_sources/autoapi/datafusion/substrait/index.rst.txt +++ b/_sources/autoapi/datafusion/substrait/index.rst.txt @@ -63,6 +63,26 @@ Module Contents + .. py:method:: from_json(json: str) -> Plan + :staticmethod: + + + Parse a plan from a JSON string representation. + + :param json: JSON representation of a Substrait plan. + + :returns: Plan object representing the Substrait plan. + + + + .. py:method:: to_json() -> str + + Get the JSON representation of the Substrait plan. + + :returns: A JSON representation of the Substrait plan. + + + .. py:attribute:: plan_internal diff --git a/_sources/autoapi/datafusion/user_defined/index.rst.txt b/_sources/autoapi/datafusion/user_defined/index.rst.txt index 1a7a93d34..21063829c 100644 --- a/_sources/autoapi/datafusion/user_defined/index.rst.txt +++ b/_sources/autoapi/datafusion/user_defined/index.rst.txt @@ -62,6 +62,14 @@ Module Contents Return the resultant value. + While this function template expects a PyArrow Scalar value return type, + you can return any value that can be converted into a Scalar. This + includes basic Python data types such as integers and strings. In + addition to primitive types, we currently support PyArrow, nanoarrow, + and arro3 objects in addition to primitive data types. Other objects + that support the Arrow FFI standard will be given a "best attempt" at + conversion to scalar objects. + .. py:method:: merge(states: list[pyarrow.Array]) -> None @@ -78,6 +86,14 @@ Module Contents Return the current state. + While this function template expects PyArrow Scalar values return type, + you can return any value that can be converted into a Scalar. This + includes basic Python data types such as integers and strings. In + addition to primitive types, we currently support PyArrow, nanoarrow, + and arro3 objects in addition to primitive data types. Other objects + that support the Arrow FFI standard will be given a "best attempt" at + conversion to scalar objects. + .. py:method:: update(*values: pyarrow.Array) -> None @@ -378,7 +394,7 @@ Module Contents .. py:attribute:: _udtf -.. py:class:: Volatility(*args, **kwds) +.. py:class:: Volatility Bases: :py:obj:`enum.Enum` diff --git a/_sources/user-guide/common-operations/udf-and-udfa.rst.txt b/_sources/user-guide/common-operations/udf-and-udfa.rst.txt index d554e1e25..f669721a3 100644 --- a/_sources/user-guide/common-operations/udf-and-udfa.rst.txt +++ b/_sources/user-guide/common-operations/udf-and-udfa.rst.txt @@ -123,7 +123,7 @@ also see how the inputs to ``update`` and ``merge`` differ. .. code-block:: python - import pyarrow + import pyarrow as pa import pyarrow.compute import datafusion from datafusion import col, udaf, Accumulator @@ -136,16 +136,16 @@ also see how the inputs to ``update`` and ``merge`` differ. def __init__(self): self._sum = 0.0 - def update(self, values_a: pyarrow.Array, values_b: pyarrow.Array) -> None: + def update(self, values_a: pa.Array, values_b: pa.Array) -> None: self._sum = self._sum + pyarrow.compute.sum(values_a).as_py() - pyarrow.compute.sum(values_b).as_py() - def merge(self, states: List[pyarrow.Array]) -> None: + def merge(self, states: list[pa.Array]) -> None: self._sum = self._sum + pyarrow.compute.sum(states[0]).as_py() - def state(self) -> pyarrow.Array: - return pyarrow.array([self._sum]) + def state(self) -> list[pa.Scalar]: + return [pyarrow.scalar(self._sum)] - def evaluate(self) -> pyarrow.Scalar: + def evaluate(self) -> pa.Scalar: return pyarrow.scalar(self._sum) ctx = datafusion.SessionContext() @@ -156,10 +156,29 @@ also see how the inputs to ``update`` and ``merge`` differ. } ) - my_udaf = udaf(MyAccumulator, [pyarrow.float64(), pyarrow.float64()], pyarrow.float64(), [pyarrow.float64()], 'stable') + my_udaf = udaf(MyAccumulator, [pa.float64(), pa.float64()], pa.float64(), [pa.float64()], 'stable') df.aggregate([], [my_udaf(col("a"), col("b")).alias("col_diff")]) +FAQ +^^^ + +**How do I return a list from a UDAF?** + +Both the ``evaluate`` and the ``state`` functions expect to return scalar values. +If you wish to return a list array as a scalar value, the best practice is to +wrap the values in a ``pyarrow.Scalar`` object. For example, you can return a +timestamp list with ``pa.scalar([...], type=pa.list_(pa.timestamp("ms")))`` and +register the appropriate return or state types as +``return_type=pa.list_(pa.timestamp("ms"))`` and +``state_type=[pa.list_(pa.timestamp("ms"))]``, respectively. + +As of DataFusion 52.0.0 , you can pass return any Python object, including a +PyArrow array, as the return value(s) for these functions and DataFusion will +attempt to create a scalar type from the value. DataFusion has been tested to +convert PyArrow, nanoarrow, and arro3 objects as well as primitive data types +like integers, strings, and so on. + Window Functions ---------------- diff --git a/autoapi/datafusion/catalog/index.html b/autoapi/datafusion/catalog/index.html index e99ff9e4e..2defa8e95 100644 --- a/autoapi/datafusion/catalog/index.html +++ b/autoapi/datafusion/catalog/index.html @@ -519,6 +519,80 @@

  • +
  • + + + + CatalogList + + + + +
  • @@ -566,6 +640,44 @@
  • +
  • + + + + CatalogProviderList + + + + +
  • @@ -821,9 +933,15 @@

    Classes

  • Catalog

    DataFusion data catalog.

    CatalogProvider

    CatalogList

    DataFusion data catalog list.

    CatalogProvider

    Abstract class for defining a Python based Catalog Provider.

    CatalogProviderList

    Abstract class for defining a Python based Catalog Provider List.

    Schema

    DataFusion Schema.

    ArrowStreamExportable

    Type hint for object exporting Arrow C Stream via Arrow PyCapsule Interface.

    CatalogProviderExportable

    Type hint for object that has __datafusion_catalog_provider__ PyCapsule.

    RuntimeConfig

    RuntimeConfig

    See RuntimeEnvBuilder.

    RuntimeEnvBuilder

    RuntimeEnvBuilder

    Runtime configuration options.

    SQLOptions

    SQLOptions

    Options to be used when performing SQL queries.

    SessionConfig

    SessionConfig

    Session configuration options.

    SessionContext

    SessionContext

    This is the main interface for executing queries and creating DataFrames.

    TableProviderExportable

    TableProviderExportable

    Type hint for object that has __datafusion_table_provider__ PyCapsule.

    min(→ datafusion.expr.Expr)

    Returns the minimum value of the argument.

    Aggregate function that returns the minimum value of the argument.

    named_struct(→ datafusion.expr.Expr)

    Returns a struct with the given names and arguments pairs.

    regexp_count(→ datafusion.expr.Expr)

    Returns the number of matches in a string.

    regexp_like(→ datafusion.expr.Expr)

    regexp_instr(→ datafusion.expr.Expr)

    Returns the position of a regular expression match in a string.

    regexp_like(→ datafusion.expr.Expr)

    Find if any regular expression (regex) matches exist.

    regexp_match(→ datafusion.expr.Expr)

    regexp_match(→ datafusion.expr.Expr)

    Perform regular expression (regex) matching.

    regexp_replace(→ datafusion.expr.Expr)

    regexp_replace(→ datafusion.expr.Expr)

    Replaces substring(s) matching a PCRE-like regular expression.

    regr_avgx(→ datafusion.expr.Expr)

    regr_avgx(→ datafusion.expr.Expr)

    Computes the average of the independent variable x.

    regr_avgy(→ datafusion.expr.Expr)

    regr_avgy(→ datafusion.expr.Expr)

    Computes the average of the dependent variable y.

    regr_count(→ datafusion.expr.Expr)

    regr_count(→ datafusion.expr.Expr)

    Counts the number of rows in which both expressions are not null.

    regr_intercept(→ datafusion.expr.Expr)

    regr_intercept(→ datafusion.expr.Expr)

    Computes the intercept from the linear regression.

    regr_r2(→ datafusion.expr.Expr)

    regr_r2(→ datafusion.expr.Expr)

    Computes the R-squared value from linear regression.

    regr_slope(→ datafusion.expr.Expr)

    regr_slope(→ datafusion.expr.Expr)

    Computes the slope from linear regression.

    regr_sxx(→ datafusion.expr.Expr)

    regr_sxx(→ datafusion.expr.Expr)

    Computes the sum of squares of the independent variable x.

    regr_sxy(→ datafusion.expr.Expr)

    regr_sxy(→ datafusion.expr.Expr)

    Computes the sum of products of pairs of numbers.

    regr_syy(→ datafusion.expr.Expr)

    regr_syy(→ datafusion.expr.Expr)

    Computes the sum of squares of the dependent variable y.

    repeat(→ datafusion.expr.Expr)

    repeat(→ datafusion.expr.Expr)

    Repeats the string to n times.

    replace(→ datafusion.expr.Expr)

    replace(→ datafusion.expr.Expr)

    Replaces all occurrences of from_val with to_val in the string.

    reverse(→ datafusion.expr.Expr)

    reverse(→ datafusion.expr.Expr)

    Reverse the string argument.

    right(→ datafusion.expr.Expr)

    right(→ datafusion.expr.Expr)

    Returns the last n characters in the string.

    round(→ datafusion.expr.Expr)

    round(→ datafusion.expr.Expr)

    Round the argument to the nearest integer.

    row_number(→ datafusion.expr.Expr)

    row_number(→ datafusion.expr.Expr)

    Create a row number window function.

    rpad(→ datafusion.expr.Expr)

    rpad(→ datafusion.expr.Expr)

    Add right padding to a string.

    rtrim(→ datafusion.expr.Expr)

    rtrim(→ datafusion.expr.Expr)

    Removes all characters, spaces by default, from the end of a string.

    sha224(→ datafusion.expr.Expr)

    sha224(→ datafusion.expr.Expr)

    Computes the SHA-224 hash of a binary string.

    sha256(→ datafusion.expr.Expr)

    sha256(→ datafusion.expr.Expr)

    Computes the SHA-256 hash of a binary string.

    sha384(→ datafusion.expr.Expr)

    sha384(→ datafusion.expr.Expr)

    Computes the SHA-384 hash of a binary string.

    sha512(→ datafusion.expr.Expr)

    sha512(→ datafusion.expr.Expr)

    Computes the SHA-512 hash of a binary string.

    signum(→ datafusion.expr.Expr)

    signum(→ datafusion.expr.Expr)

    Returns the sign of the argument (-1, 0, +1).

    sin(→ datafusion.expr.Expr)

    sin(→ datafusion.expr.Expr)

    Returns the sine of the argument.

    sinh(→ datafusion.expr.Expr)

    sinh(→ datafusion.expr.Expr)

    Returns the hyperbolic sine of the argument.

    split_part(→ datafusion.expr.Expr)

    split_part(→ datafusion.expr.Expr)

    Split a string and return one part.

    sqrt(→ datafusion.expr.Expr)

    sqrt(→ datafusion.expr.Expr)

    Returns the square root of the argument.

    starts_with(→ datafusion.expr.Expr)

    starts_with(→ datafusion.expr.Expr)

    Returns true if string starts with prefix.

    stddev(→ datafusion.expr.Expr)

    stddev(→ datafusion.expr.Expr)

    Computes the standard deviation of the argument.

    stddev_pop(→ datafusion.expr.Expr)

    stddev_pop(→ datafusion.expr.Expr)

    Computes the population standard deviation of the argument.

    stddev_samp(→ datafusion.expr.Expr)

    stddev_samp(→ datafusion.expr.Expr)

    Computes the sample standard deviation of the argument.

    string_agg(→ datafusion.expr.Expr)

    string_agg(→ datafusion.expr.Expr)

    Concatenates the input strings.

    strpos(→ datafusion.expr.Expr)

    strpos(→ datafusion.expr.Expr)

    Finds the position from where the substring matches the string.

    struct(→ datafusion.expr.Expr)

    struct(→ datafusion.expr.Expr)

    Returns a struct with the given arguments.

    substr(→ datafusion.expr.Expr)

    substr(→ datafusion.expr.Expr)

    Substring from the position to the end.

    substr_index(→ datafusion.expr.Expr)

    substr_index(→ datafusion.expr.Expr)

    Returns an indexed substring.

    substring(→ datafusion.expr.Expr)

    substring(→ datafusion.expr.Expr)

    Substring from the position with length characters.

    sum(→ datafusion.expr.Expr)

    sum(→ datafusion.expr.Expr)

    Computes the sum of a set of numbers.

    tan(→ datafusion.expr.Expr)

    tan(→ datafusion.expr.Expr)

    Returns the tangent of the argument.

    tanh(→ datafusion.expr.Expr)

    tanh(→ datafusion.expr.Expr)

    Returns the hyperbolic tangent of the argument.

    to_hex(→ datafusion.expr.Expr)

    to_hex(→ datafusion.expr.Expr)

    Converts an integer to a hexadecimal string.

    to_timestamp(→ datafusion.expr.Expr)

    to_timestamp(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Timestamp in nanoseconds.

    to_timestamp_micros(→ datafusion.expr.Expr)

    to_timestamp_micros(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Timestamp in microseconds.

    to_timestamp_millis(→ datafusion.expr.Expr)

    to_timestamp_millis(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Timestamp in milliseconds.

    to_timestamp_nanos(→ datafusion.expr.Expr)

    to_timestamp_nanos(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Timestamp in nanoseconds.

    to_timestamp_seconds(→ datafusion.expr.Expr)

    to_timestamp_seconds(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Timestamp in seconds.

    to_unixtime(→ datafusion.expr.Expr)

    to_unixtime(→ datafusion.expr.Expr)

    Converts a string and optional formats to a Unixtime.

    translate(→ datafusion.expr.Expr)

    translate(→ datafusion.expr.Expr)

    Replaces the characters in from_val with the counterpart in to_val.

    trim(→ datafusion.expr.Expr)

    trim(→ datafusion.expr.Expr)

    Removes all characters, spaces by default, from both sides of a string.

    trunc(→ datafusion.expr.Expr)

    trunc(→ datafusion.expr.Expr)

    Truncate the number toward zero with optional precision.

    upper(→ datafusion.expr.Expr)

    upper(→ datafusion.expr.Expr)

    Converts a string to uppercase.

    uuid(→ datafusion.expr.Expr)

    uuid(→ datafusion.expr.Expr)

    Returns uuid v4 as a string value.

    var(→ datafusion.expr.Expr)

    var(→ datafusion.expr.Expr)

    Computes the sample variance of the argument.

    var_pop(→ datafusion.expr.Expr)

    var_pop(→ datafusion.expr.Expr)

    Computes the population variance of the argument.

    var_samp(→ datafusion.expr.Expr)

    var_samp(→ datafusion.expr.Expr)

    Computes the sample variance of the argument.

    var_sample(→ datafusion.expr.Expr)

    var_sample(→ datafusion.expr.Expr)

    Computes the sample variance of the argument.

    when(→ datafusion.expr.CaseBuilder)

    when(→ datafusion.expr.CaseBuilder)

    Create a case expression that has no base expression.

    window(→ datafusion.expr.Expr)

    window(→ datafusion.expr.Expr)

    Creates a new Window function expression.

    column

    udaf

    udf

    udtf

    udwf

    @@ -3092,6 +3465,12 @@

    Attributes

    + + + + + + @@ -3134,15 +3513,24 @@

    Classes

    - + + + + - + + + + + + +

    Accumulator

    Defines how an AggregateUDF accumulates values.

    AggregateUDF

    Class for performing scalar user-defined functions (UDF).

    Catalog

    DataFusion data catalog.

    SQLOptions

    Options to be used when performing SQL queries.

    SessionConfig

    ScalarUDF

    Class for performing scalar user-defined functions (UDF).

    SessionConfig

    Session configuration options.

    Table

    Table

    A DataFusion table.

    TableFunction

    Class for performing user-defined table functions (UDTF).

    WindowFrame

    Defines a window frame for performing window operations.

    WindowUDF

    Class for performing window user-defined functions (UDF).

    @@ -3176,6 +3564,175 @@

    Functions

    Package Contents

    +
    +
    +class datafusion.Accumulator
    +

    Defines how an AggregateUDF accumulates values.

    +
    +
    +abstract evaluate() pyarrow.Scalar
    +

    Return the resultant value.

    +

    While this function template expects a PyArrow Scalar value return type, +you can return any value that can be converted into a Scalar. This +includes basic Python data types such as integers and strings. In +addition to primitive types, we currently support PyArrow, nanoarrow, +and arro3 objects in addition to primitive data types. Other objects +that support the Arrow FFI standard will be given a “best attempt” at +conversion to scalar objects.

    +
    + +
    +
    +abstract merge(states: list[pyarrow.Array]) None
    +

    Merge a set of states.

    +
    + +
    +
    +abstract state() list[pyarrow.Scalar]
    +

    Return the current state.

    +

    While this function template expects PyArrow Scalar values return type, +you can return any value that can be converted into a Scalar. This +includes basic Python data types such as integers and strings. In +addition to primitive types, we currently support PyArrow, nanoarrow, +and arro3 objects in addition to primitive data types. Other objects +that support the Arrow FFI standard will be given a “best attempt” at +conversion to scalar objects.

    +
    + +
    +
    +abstract update(*values: pyarrow.Array) None
    +

    Evaluate an array of values and update state.

    +
    + +
    + +
    +
    +class datafusion.AggregateUDF(name: str, accumulator: collections.abc.Callable[[], Accumulator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str)
    +
    +class datafusion.AggregateUDF(name: str, accumulator: AggregateUDFExportable, input_types: None = ..., return_type: None = ..., state_type: None = ..., volatility: None = ...)
    +

    Class for performing scalar user-defined functions (UDF).

    +

    Aggregate UDFs operate on a group of rows and return a single value. See +also ScalarUDF for operating on a row by row basis.

    +

    Instantiate a user-defined aggregate function (UDAF).

    +

    See udaf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDAF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +__repr__() str
    +

    Print a string representation of the Aggregate UDF.

    +
    + +
    +
    +static from_pycapsule(func: AggregateUDFExportable | _typeshed.CapsuleType) AggregateUDF
    +

    Create an Aggregate UDF from AggregateUDF PyCapsule object.

    +

    This function will instantiate a Aggregate UDF that uses a DataFusion +AggregateUDF that is exported via the FFI bindings.

    +
    + +
    +
    +static udaf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, AggregateUDF]
    +
    +static udaf(accum: collections.abc.Callable[[], Accumulator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, state_type: list[pyarrow.DataType], volatility: Volatility | str, name: str | None = None) AggregateUDF
    +
    +static udaf(accum: AggregateUDFExportable) AggregateUDF
    +
    +static udaf(accum: _typeshed.CapsuleType) AggregateUDF
    +

    Create a new User-Defined Aggregate Function (UDAF).

    +

    This class allows you to define an aggregate function that can be used in +data aggregation or window function calls.

    +
    +
    Usage:
      +
    • As a function: udaf(accum, input_types, return_type, state_type, volatility, name).

    • +
    • As a decorator: @udaf(input_types, return_type, state_type, volatility, name). +When using udaf as a decorator, do not pass accum explicitly.

    • +
    +
    +
    +

    Function example:

    +

    If your Accumulator can be instantiated with no arguments, you +can simply pass it’s type as accum. If you need to pass additional +arguments to it’s constructor, you can define a lambda or a factory method. +During runtime the Accumulator will be constructed for every +instance in which this UDAF is used. The following examples are all valid:

    +
    import pyarrow as pa
    +import pyarrow.compute as pc
    +
    +class Summarize(Accumulator):
    +    def __init__(self, bias: float = 0.0):
    +        self._sum = pa.scalar(bias)
    +
    +    def state(self) -> list[pa.Scalar]:
    +        return [self._sum]
    +
    +    def update(self, values: pa.Array) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(values).as_py())
    +
    +    def merge(self, states: list[pa.Array]) -> None:
    +        self._sum = pa.scalar(self._sum.as_py() + pc.sum(states[0]).as_py())
    +
    +    def evaluate(self) -> pa.Scalar:
    +        return self._sum
    +
    +def sum_bias_10() -> Summarize:
    +    return Summarize(10.0)
    +
    +udaf1 = udaf(Summarize, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf2 = udaf(sum_bias_10, pa.float64(), pa.float64(), [pa.float64()],
    +    "immutable")
    +udaf3 = udaf(lambda: Summarize(20.0), pa.float64(), pa.float64(),
    +    [pa.float64()], "immutable")
    +
    +
    +

    Decorator example::

    +
    @udaf(pa.float64(), pa.float64(), [pa.float64()], "immutable")
    +def udf4() -> Summarize:
    +    return Summarize(10.0)
    +
    +
    +
    +
    Parameters:
    +
      +
    • accum – The accumulator python function. Only needed when calling as a +function. Skip this argument when using udaf as a decorator. +If you have a Rust backed AggregateUDF within a PyCapsule, you can +pass this parameter and ignore the rest. They will be determined +directly from the underlying function. See the online documentation +for more information.

    • +
    • input_types – The data types of the arguments to accum.

    • +
    • return_type – The data type of the return value.

    • +
    • state_type – The data types of the intermediate accumulation.

    • +
    • volatility – See Volatility for allowed values.

    • +
    • name – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined aggregate function, which can be used in either data +aggregation or window function calls.

    +
    +
    +
    + +
    +
    +_udaf
    +
    + +
    +
    class datafusion.Catalog(catalog: datafusion._internal.catalog.RawCatalog)
    @@ -4396,7 +4953,7 @@

    Returns:
    -class datafusion.InsertOp(*args, **kwds)
    +class datafusion.InsertOp

    Bases: enum.Enum

    Insert operation mode.

    These modes are used by the table writing feature to define how record @@ -4434,6 +4991,12 @@

    Returns:A LogicalPlan can be created by the SQL query planner, the DataFrame API, or programmatically (for example custom query languages).

    This constructor should not be called by the end user.

    +
    +
    +__eq__(other: LogicalPlan) bool
    +

    Test equality.

    +
    +
    __repr__() str
    @@ -5038,6 +5601,99 @@

    Returns:

    +
    +
    +class datafusion.ScalarUDF(name: str, func: collections.abc.Callable[Ellipsis, _R], input_fields: list[pyarrow.Field], return_field: _R, volatility: Volatility | str)
    +

    Class for performing scalar user-defined functions (UDF).

    +

    Scalar UDFs operate on a row by row basis. See also AggregateUDF for +operating on a group of rows.

    +

    Instantiate a scalar user-defined function (UDF).

    +

    See helper method udf() for argument details.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +__repr__() str
    +

    Print a string representation of the Scalar UDF.

    +
    + +
    +
    +static from_pycapsule(func: ScalarUDFExportable) ScalarUDF
    +

    Create a Scalar UDF from ScalarUDF PyCapsule object.

    +

    This function will instantiate a Scalar UDF that uses a DataFusion +ScalarUDF that is exported via the FFI bindings.

    +
    + +
    +
    +static udf(input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, ScalarUDF]
    +
    +static udf(func: collections.abc.Callable[Ellipsis, _R], input_fields: collections.abc.Sequence[pyarrow.DataType | pyarrow.Field] | pyarrow.DataType | pyarrow.Field, return_field: pyarrow.DataType | pyarrow.Field, volatility: Volatility | str, name: str | None = None) ScalarUDF
    +
    +static udf(func: ScalarUDFExportable) ScalarUDF
    +

    Create a new User-Defined Function (UDF).

    +

    This class can be used both as either a function or a decorator.

    +
    +
    Usage:
      +
    • As a function: udf(func, input_fields, return_field, volatility, name).

    • +
    • As a decorator: @udf(input_fields, return_field, volatility, name). +When used a decorator, do not pass func explicitly.

    • +
    +
    +
    +

    In lieu of passing a PyArrow Field, you can pass a DataType for simplicity. +When you do so, it will be assumed that the nullability of the inputs and +output are True and that they have no metadata.

    +
    +
    Parameters:
    +
      +
    • func (Callable, optional) – Only needed when calling as a function. +Skip this argument when using udf as a decorator. If you have a Rust +backed ScalarUDF within a PyCapsule, you can pass this parameter +and ignore the rest. They will be determined directly from the +underlying function. See the online documentation for more information.

    • +
    • input_fields (list[pa.Field | pa.DataType]) – The data types or Fields +of the arguments to func. This list must be of the same length +as the number of arguments.

    • +
    • return_field (_R) – The field of the return value from the function.

    • +
    • volatility (Volatility | str) – See Volatility for allowed values.

    • +
    • name (Optional[str]) – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined function that can be used in SQL expressions, +data aggregation, or window function calls.

    +
    +
    +

    Example: Using udf as a function:

    +
    def double_func(x):
    +    return x * 2
    +double_udf = udf(double_func, [pa.int32()], pa.int32(),
    +"volatile", "double_it")
    +
    +
    +

    Example: Using udf as a decorator:

    +
    @udf([pa.int32()], pa.int32(), "volatile", "double_it")
    +def double_udf(x):
    +    return x * 2
    +
    +
    +
    + +
    +
    +_udf
    +
    + +
    +
    class datafusion.SessionConfig(config_options: dict[str, str] | None = None)
    @@ -5296,6 +5952,54 @@

    Returns:

    +
    +
    +class datafusion.TableFunction(name: str, func: collections.abc.Callable[[], any], ctx: datafusion.SessionContext | None = None)
    +

    Class for performing user-defined table functions (UDTF).

    +

    Table functions generate new table providers based on the +input expressions.

    +

    Instantiate a user-defined table function (UDTF).

    +

    See udtf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) Any
    +

    Execute the UDTF and return a table provider.

    +
    + +
    +
    +__repr__() str
    +

    User printable representation.

    +
    + +
    +
    +static _create_table_udf(func: collections.abc.Callable[Ellipsis, Any], name: str) TableFunction
    +

    Create a TableFunction instance from function arguments.

    +
    + +
    +
    +static _create_table_udf_decorator(name: str | None = None) collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]]
    +

    Create a decorator for a WindowUDF.

    +
    + +
    +
    +static udtf(name: str) collections.abc.Callable[Ellipsis, Any]
    +
    +static udtf(func: collections.abc.Callable[[], Any], name: str) TableFunction
    +

    Create a new User-Defined Table Function (UDTF).

    +
    + +
    +
    +_udtf
    +
    + +
    +
    class datafusion.WindowFrame(units: str, start_bound: Any | None, end_bound: Any | None)
    @@ -5345,6 +6049,128 @@

    Returns:

    +
    +
    +class datafusion.WindowUDF(name: str, func: collections.abc.Callable[[], WindowEvaluator], input_types: list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str)
    +

    Class for performing window user-defined functions (UDF).

    +

    Window UDFs operate on a partition of rows. See +also ScalarUDF for operating on a row by row basis.

    +

    Instantiate a user-defined window function (UDWF).

    +

    See udwf() for a convenience function and argument +descriptions.

    +
    +
    +__call__(*args: datafusion.expr.Expr) datafusion.expr.Expr
    +

    Execute the UDWF.

    +

    This function is not typically called by an end user. These calls will +occur during the evaluation of the dataframe.

    +
    + +
    +
    +__repr__() str
    +

    Print a string representation of the Window UDF.

    +
    + +
    +
    +static _create_window_udf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +

    Create a WindowUDF instance from function arguments.

    +
    + +
    +
    +static _create_window_udf_decorator(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[[collections.abc.Callable[[], WindowEvaluator]], collections.abc.Callable[Ellipsis, datafusion.expr.Expr]]
    +

    Create a decorator for a WindowUDF.

    +
    + +
    +
    +static _get_default_name(func: collections.abc.Callable) str
    +

    Get the default name for a function based on its attributes.

    +
    + +
    +
    +static _normalize_input_types(input_types: pyarrow.DataType | list[pyarrow.DataType]) list[pyarrow.DataType]
    +

    Convert a single DataType to a list if needed.

    +
    + +
    +
    +static from_pycapsule(func: WindowUDFExportable) WindowUDF
    +

    Create a Window UDF from WindowUDF PyCapsule object.

    +

    This function will instantiate a Window UDF that uses a DataFusion +WindowUDF that is exported via the FFI bindings.

    +
    + +
    +
    +static udwf(input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) collections.abc.Callable[Ellipsis, WindowUDF]
    +
    +static udwf(func: collections.abc.Callable[[], WindowEvaluator], input_types: pyarrow.DataType | list[pyarrow.DataType], return_type: pyarrow.DataType, volatility: Volatility | str, name: str | None = None) WindowUDF
    +

    Create a new User-Defined Window Function (UDWF).

    +

    This class can be used both as either a function or a decorator.

    +
    +
    Usage:
      +
    • As a function: udwf(func, input_types, return_type, volatility, name).

    • +
    • As a decorator: @udwf(input_types, return_type, volatility, name). +When using udwf as a decorator, do not pass func explicitly.

    • +
    +
    +
    +

    Function example:

    +
    import pyarrow as pa
    +
    +class BiasedNumbers(WindowEvaluator):
    +    def __init__(self, start: int = 0) -> None:
    +        self.start = start
    +
    +    def evaluate_all(self, values: list[pa.Array],
    +        num_rows: int) -> pa.Array:
    +        return pa.array([self.start + i for i in range(num_rows)])
    +
    +def bias_10() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +udwf1 = udwf(BiasedNumbers, pa.int64(), pa.int64(), "immutable")
    +udwf2 = udwf(bias_10, pa.int64(), pa.int64(), "immutable")
    +udwf3 = udwf(lambda: BiasedNumbers(20), pa.int64(), pa.int64(), "immutable")
    +
    +
    +

    Decorator example:

    +
    @udwf(pa.int64(), pa.int64(), "immutable")
    +def biased_numbers() -> BiasedNumbers:
    +    return BiasedNumbers(10)
    +
    +
    +
    +
    Parameters:
    +
      +
    • func – Only needed when calling as a function. Skip this argument when +using udwf as a decorator. If you have a Rust backed WindowUDF +within a PyCapsule, you can pass this parameter and ignore the rest. +They will be determined directly from the underlying function. See +the online documentation for more information.

    • +
    • input_types – The data types of the arguments.

    • +
    • return_type – The data type of the return value.

    • +
    • volatility – See Volatility for allowed values.

    • +
    • name – A descriptive name for the function.

    • +
    +
    +
    Returns:
    +

    A user-defined window function that can be used in window function calls.

    +
    +
    +
    + +
    +
    +_udwf
    +
    + +
    +
    datafusion.configure_formatter(**kwargs: Any) None
    @@ -5511,6 +6337,26 @@

    Returns:datafusion.column: Col

    +
    +
    +datafusion.udaf
    +
    + +
    +
    +datafusion.udf
    +
    + +
    +
    +datafusion.udtf
    +
    + +
    +
    +datafusion.udwf
    +
    + diff --git a/autoapi/datafusion/plan/index.html b/autoapi/datafusion/plan/index.html index da7b1c25d..07cc3fdf6 100644 --- a/autoapi/datafusion/plan/index.html +++ b/autoapi/datafusion/plan/index.html @@ -519,6 +519,15 @@

    +
    __repr__() str
    diff --git a/autoapi/datafusion/substrait/index.html b/autoapi/datafusion/substrait/index.html index 748f75d20..52aeeca59 100644 --- a/autoapi/datafusion/substrait/index.html +++ b/autoapi/datafusion/substrait/index.html @@ -465,6 +465,24 @@

  • +
  • + + + + Plan.from_json() + + + +
  • +
  • + + + + Plan.to_json() + + + +
  • @@ -643,6 +661,31 @@

    Module Contents +
    +static from_json(json: str) Plan
    +

    Parse a plan from a JSON string representation.

    +
    +
    Parameters:
    +

    json – JSON representation of a Substrait plan.

    +
    +
    Returns:
    +

    Plan object representing the Substrait plan.

    +
    +
    +
    + +
    +
    +to_json() str
    +

    Get the JSON representation of the Substrait plan.

    +
    +
    Returns:
    +

    A JSON representation of the Substrait plan.

    +
    +
    +
    +
    plan_internal
    diff --git a/autoapi/datafusion/user_defined/index.html b/autoapi/datafusion/user_defined/index.html index 0686e59c0..4dbf00e96 100644 --- a/autoapi/datafusion/user_defined/index.html +++ b/autoapi/datafusion/user_defined/index.html @@ -1134,6 +1134,13 @@

    Module Contents abstract evaluate() pyarrow.Scalar

    Return the resultant value.

    +

    While this function template expects a PyArrow Scalar value return type, +you can return any value that can be converted into a Scalar. This +includes basic Python data types such as integers and strings. In +addition to primitive types, we currently support PyArrow, nanoarrow, +and arro3 objects in addition to primitive data types. Other objects +that support the Arrow FFI standard will be given a “best attempt” at +conversion to scalar objects.

    @@ -1146,6 +1153,13 @@

    Module Contents abstract state() list[pyarrow.Scalar]

    Return the current state.

    +

    While this function template expects PyArrow Scalar values return type, +you can return any value that can be converted into a Scalar. This +includes basic Python data types such as integers and strings. In +addition to primitive types, we currently support PyArrow, nanoarrow, +and arro3 objects in addition to primitive data types. Other objects +that support the Arrow FFI standard will be given a “best attempt” at +conversion to scalar objects.

    @@ -1448,7 +1462,7 @@

    Module Contents
    -class datafusion.user_defined.Volatility(*args, **kwds)
    +class datafusion.user_defined.Volatility

    Bases: enum.Enum

    Defines how stable or volatile a function is.

    When setting the volatility of a function, you can either pass this diff --git a/genindex.html b/genindex.html index 7390ebec7..277d439ea 100644 --- a/genindex.html +++ b/genindex.html @@ -490,9 +490,15 @@

    _

  • (datafusion.dataframe.DataFrame method)
  • -
  • __call__() (datafusion.dataframe_formatter.CellFormatter method) +
  • __call__() (datafusion.AggregateUDF method)
  • __datafusion_aggregate_udf__() (datafusion.user_defined.AggregateUDFExportable method) -
  • -
  • __datafusion_catalog_provider__() (datafusion.context.CatalogProviderExportable method)
  • __datafusion_logical_extension_codec__() (datafusion.context.SessionContext method)
  • @@ -520,6 +526,10 @@

    _

  • __ge__() (datafusion.Expr method) @@ -610,10 +620,14 @@

    _

  • (datafusion.expr.Expr attribute)
  • -
  • __repr__() (datafusion.Catalog method) +
  • __repr__() (datafusion.AggregateUDF method)
  • + +
  • from_json() (datafusion.substrait.Plan static method) +
  • from_pandas() (datafusion.context.SessionContext method)
  • from_polars() (datafusion.context.SessionContext method) @@ -1983,12 +2071,18 @@

    F

  • (datafusion.plan.LogicalPlan static method)
  • -
  • from_pycapsule() (datafusion.user_defined.AggregateUDF static method) +
  • from_pycapsule() (datafusion.AggregateUDF static method)
  • from_pydict() (datafusion.context.SessionContext method) @@ -2481,14 +2575,20 @@

    M

  • memory_schema() (datafusion.catalog.Schema static method)
  • +
  • to_json() (datafusion.substrait.Plan method) +
  • to_pandas() (datafusion.dataframe.DataFrame method)
  • to_polars() (datafusion.dataframe.DataFrame method)
  • +
    -
  • __repr__() (datafusion.AggregateUDF method) +
  • __repr__() (datafusion.Catalog method)
  • -
  • from_pycapsule() (datafusion.AggregateUDF static method) +
  • from_pycapsule() (datafusion.user_defined.AggregateUDF static method)
  • from_pydict() (datafusion.context.SessionContext method) @@ -2583,12 +2511,8 @@

    M

  • -
  • __repr__() (datafusion.Catalog method) +
  • __repr__() (datafusion.AggregateUDF method)
  • -
  • from_pycapsule() (datafusion.user_defined.AggregateUDF static method) +
  • from_pycapsule() (datafusion.AggregateUDF static method)
  • from_pydict() (datafusion.context.SessionContext method) @@ -2511,8 +2583,12 @@

    M

    • to_pyarrow() (datafusion.record_batch.RecordBatch method)
        @@ -3442,22 +3530,56 @@

        T

        U

        + -
        • Unnest (in module datafusion.expr)
        • unnest_columns() (datafusion.dataframe.DataFrame method) @@ -3478,8 +3598,12 @@

          U

        • unparser (datafusion.unparser.Unparser attribute)
        • -
        • update() (datafusion.user_defined.Accumulator method) +
        • update() (datafusion.Accumulator method) + +
        • upper() (datafusion.Expr method)
            @@ -3562,8 +3686,12 @@

            W

        • WindowFrameBound (class in datafusion.expr)
        • -
        • WindowUDF (class in datafusion.user_defined) +
        • WindowUDF (class in datafusion) + +
        • WindowUDFExportable (class in datafusion.user_defined)
        • with_allow_ddl() (datafusion.context.SQLOptions method) diff --git a/objects.inv b/objects.inv index 905cdeae27c2c43f318848526a690f53241e069e..c8c4788a3c3533285d2ef8d92a40ef86b9b56333 100644 GIT binary patch delta 9384 zcmV;ZBv;#^NQp|2hks3X+c>g@_x=?=XYSVO>GbrRduHc2PLF%siN{X5@63h=A|VM0 z2rvLCOZoK|A0$P}k_Zx2a&Hn@BA*uo@lgN@g^ZMBQE4W{WwHH7F0+c$%fDWds+6Q) zKVqP zjFu~z#n5u9mOv<7f~Be|vN+aqsp!%mKEHcEJ<~goS(2oL^CW>ulffxkC^%e|k%eWE zvQ%tdnY@d^EtJfYVw;je+j0++#wLl=P&eiym&?g7v%Vi7;~P@COVQ+9Z&>!LIngve zRT(uo&U8stqJPsB%}G2mr@2(yr1QLSJVA1*<1ygR3Cl@hA5*U%Dak$-rTI%wFZVsn zER}gqMHyFU`^b!PmNWArAfZ&7#)m=@7mU-yJbt05w!bIk7D0e+N-7$&0hFwzDif(P z*nD0Qovh5?uv9^xITKVTOeEG?@$~?VUYU;A)PA~wqaxcFhSa(PZkvw0b$& zm`q4bi2%)9(+`=#RuEM(`-Q179F|X2&O~DjgHff)72yjpL~}bURV7S^N3%r9XV46I zX5}jBG{Ydtb*0_Zwt5c)v-8;~s950r|aV8IIdF%y7tP zOYbQ2aDU?rr*f=$22|)Z(16?*E$TG(yZ2A++p}MfzTbR&uZ(T}hcaztta*KqHcJ$F zPM+;IiQEZH?m^ylMu(G9dAp%$Wz+G%iGZO145asXHqVMWeUr1Q&rDa0XNn4_G-gbj z6mEfWiM>9?80b^|KM@p)Fc5# zitgz=hNY`CFCa*5*@=F%w){ksn%5r<($yS@WQO;*&a>m@0MWIN9-QO25f zqkm@||A=I+BNIhZ34vI}GB_jA=}^j;W*N(&K)PfiEkR&3FUlmRE%= zk~vAgg29YQEC6!8u4!@+i_$4$(F`U45Yex`Bmw{tn~XUvpDB$^$()ri6=H5$;XIO& z5+Mak33m&L(J+-UVVcG0W+Np!wkD->6@QJOjK?BYM8UjmOCqUVi3Y-{Sc2qLES_LK1ws^1CXykCIy5sK{rJ_LB(6J3sVoJVkEY4STJteT>*lr zI6!iumi0V@o4k$gBNtrC=#0Z0Tb<5we7MRh9%ni7$Lie}AVc za%y!3(xY+HP(h5OY7R)N=U8x0CqN$0RPyMitEMDw(ams(TO^BQ#+F4cmp}eBp7ACc z@f_WZasb;t&wh?1xW)ETQBvkKdT1++@d{KKoIgY|kF_V{I{H2B7OkRFQ*6zxwbMi- zN|B5a5!+HIYVt=%r-g33Q@dTtBYz^(pu95LOt8E-zaWnRsIVQE-dNI#ym|9C0LagO zkB9v9zW^!u`N!C1S+k|6qF+(;d>FuVnDq&ZMSP1#m=Z6R35-1vKfwnuzgNm+72{Xd zK-R^na;2v)u?yqm+VE1xqXNRLax;l(#-;+KocE!9$1Mv*&5~KaN z4#1M7BE@RWzQa;ueZ!73qrG6eXb7jXE{}<#Dm4r%-pg!{7Tt?H5cRF1<&B$Sk99#k z1e?vdG%v)@8zxj(ui-4J`hN_oEQ$hIL1b%qh0ZPnczDKA`+=w}-b)obV3|*%>&R)l*EcZ2P+@ze{R2On-RK>%?vFLX^_% zJ4F*gX$y~PxSYd$9>{jLPjd)7h~G z*rO}JZ*5{HTNNFK-G9>Iic6Y!N5Y8FY!} zm(F_cJkwv3oCsqyDEmj-cu&mV0F@Z8xDbAA{USWZf-sA>&VNmXlpLII{p_-BQpX)a zktk_iG$X{AMeif{O3aPDo*AnwCJ1>VIoN->?V6`bm)_qYF~;vWXk#Hb}=VIUGox z8Pe5r3Sey05VXEfq>jkg^d%@Fu3ycWfG=7vRCG!ZALNT@+F zmjzQ=9Dl2>x^<>SH43Mw5G_K7ZwpRiZpS$ccA&zV)!eSrIiH^-(lfF{uCnI^Oi=_I zw(f{c;-+!BvA9p1O;BGpd`3ZiVPKT?1K88N;L0JPVmdlj;eYGG6JF;HboK9v;JsGtit02FliyZY ztOs~da?OSp6en}f&=|K;XA?RPAE{b2Dj2O^mp#KSvS(;QdQy0GaTjwLLSbgo6Sv^5@AHvXKart|z|0n>T@!r8U;2)?%7 z%eR|CsxqW5zSI~2AMZ3hQqOy^+xNB_w$XG9Ow5NEjP&zI9xT@FL(-ail6W#opFA{(Goej zM7Uq^2&EC8suQWG?fGa=)~V=`o~=aQd_-V-)TZlq^yl-5*FSuoL2o`18j zszIK#V3I+ewP0#Np0;3Wfu6TfdZRsYr>He!QsAz}{h1`YYZC6`>+FteO;VZB6mqn6 zO1>n<+^#RQp@Q6W7^-;S{MBRu^SwJRZRA0<@q$y%C!MSsy2=&F51bO6tWp~h_QH_Z zd0;|`n>uXjUK3yqN4ne~S(EP1(SOSoQ-$1F3D_FKJ9I0KE#%JP#N)f-6%>>JKms|h zyaTAQu!%<2ken!NjjfH7gRQ|s)~cpzEV-PUMyqaDP$W!inI&XBe1t-rLaNue0$;Qg zxC-?U4OaxWez*Mx@(b_#=d{M=`4tn?>ba9eE#0+9=;~**5OP(jRk%ChWPf?C5-;ap zXj&$^l_-#ck)Q@L|uXm=mRS&Sv)^1c8S)4=VEF$GuRG!bEvSt*|s@DF`gk^XV z-#8}QpMKN{`-viiTjj^Nd`;DG*>q&~4Nla#{WNZ72)-Lf`1_N5-G&ol@~uB(bHZ<@ zy>Qrbr@eG`(~nDiBBKuCLw~rlw~rq`-QNYw%uJW~<-d0ir~>!@{TntvdA$AuRpaTy z^~1w|P$fQpxcT_o!{hDK)9pJ{q5nR8!WD4S3%VS%eWojP_c?RArW{u4o%s|J#b6>e zJlJN0z(}vS=}P8Zn1?}?z|O3&#h%H0hqqUwNi<906iXl_W{idhAAdHWCbK2yG{wdz zVF!B0s)$Yr7D4zTTPQ~8YNdL@N{%)x;C@|8x(ADGCc73+{t_;3oJI>q_ill zlO3LdTN3L;zQ0#&_%!thfq-Myr_xuHpuJz`vZ)b!A|oJ! zCY`1VScfo7b|TU6?SJ_qDDV;P8B;avJXy}Z(=0iMnrZH|Y5Ts}2`9Wxy5o>{28m?8 zO;$v&u%yELY$wwxrV;DuwGFG0Rcw*M(^yHg_Alh*;Hm7AFtk3?bPFT=Zz5E}oNr2@sJ{i>Psmn4O0^a4c+_B!GesJ>;J%{MgBH!hvU` zPlJY^n?8|0<}CGz65;2oj}w@1ZgafA)U%wSmBS9Wg;ota^cFyM+&Rzyf|Jfe1<)OF zZYhA;q$4pW>3@znS2|uG`mAYyB%G^yMxRLytvceIY5?iTv#a4!FyTCF2=OszTm$IE zoO=x^KkDpg2;sB!2Y_d01L$M-M*wGQ!|1}Dw+)z{s57_$(lPB^ZV2JmF-+pl?*`DH zaHcnu>X>uBM``w>@CCWz?rs_3l)JlWc0)OT-&GB~8xE`O3SoT9r)N2=;w9=&+;o0)y(-jmg7d<^bTmBR&@>lpAS`%K;*Lzvk zL;lZ_j(;``n%1wIkS}CStY>KPiZ!|(-so2?sP+iA-DR(umZnwFubPTFq>HOD&UzVZ z1VbmNZb~fW)yis}hA}&Npp#&0i+d^K2VfXUSy8rJm9L$OI#TU?TT=bnX=$3W(}Chq zlkm*4S1uV$yn2(~?mO=fv|ppny6sM{TrRXVe}4|!tFMwLo%Fo4S6?SZE9(;I=eMlm zRZg`gOZu8+SeM(q$QiGdlFIr&uZW!mc8NMu)%JGslT{2nKL|&3){Y+B)1RS?9!o@B zS9V_*karBb+A|39m^z-#3FZA_!_0L=7Ubn8jb|p&`T_~zo zyMM3jH&juP(%~a|0QA>{v&=5)%D<5)LDQ-2sr*tu6DX*P-k9kB{97Ei_C{)(|kS+1yh zW|~5SpI1}>F-w3~9&nIf7^m2Nk^mg%E_bsFO%I6Mox%(Oz1{e8e%d2CA)s*0W}o-A zUcH52-r0+wV86NPQqVm7z20XZ$9hMti*gFmE555ko&Y`OyUsSeNK($9n$xxbXn#r; zz*Ws6;p&8?LA?Wmf+=XX|M&2ieEQGBZF2kg`0)_{Xir&qq@2KH+U@R~gIJI$w;F=e z#z~0=LD)GKV}rV7*|1O97@mOT(Qlx*B?ZO>2C5swEJ1P1pV0$}(Mm>Q z-63Yc%$)-jAXFgaX(5YbPSURk*oBe;^j+08TrS|CI%N!y#snw~umF`rfPcc^k~ZH> zzr*lY30?i>rZ>sKXekj=xUhmE;CRasSd}qhnsUI#EF@NRIBc!}VRSf#TR3b*6m*%f zOp?0utDwOOjujL%Ya|Z1SOZ#3phit z$Z^ENv;<=`q9rcd~FCw_X&056qot!X6+pWD}T)p0=();<@UtD z*Q|#W7WaZr@p>S)WOg94eMnD_9c1;z8Ruu)HrBG)aY-{{%E|Sm5 z?j+-AXnl-yynow!#_6ZJZ;U3@b2D+AUu=X#Q~jSPfV=74J^KpqYlTLV1V2MO?8AKmz^-Bxm~0QTrSGz0iL zig6^3la#Jxv(YRP<_@W&5Fq)50_|dWq-mwJDHH#O>1-bRXZ^*&p3E?xD7c=`^M1FM z8_2#5V|f6=On+lxQU|f`?WrEH#Z!QGH8dzt58)O{bV@}Nwj7Kaaw6s^pq-`F$$}{u zzm}G34>@Xv=m3kxmisRXQQP3^ZA}8&z3p~wnYI9+h5BR<;v>HMN>i%!Z!)8xSYsch zyn-3Sb+EU7lQS6aPD{T>?4GVE2SqQr~ zus_^920+K*L9^uL3Ku|2*TB0=Qh?a~wIo3F{yY&F8m1U|*83)PAZ5TGQ3z>2bh$2y zj0>4k307(hyjzS;=CXnbFR_nzvzs`0w9@AAZ<{2;6%&V?`S;o82tuk|#>>S*(-Jt( zJ)Y^rjDOCQY4L27O)QCpw8y6bna_s=3Pn?zAqrH&y=4kg@~O}^h*e|$pANM&5|}iH zLPt@XoAprGruM?&*iG%F&AzkKDLhC%j;tN2p_waiXfwb7g%*X9o1SAF0zRkK9|Q?* zx)w9UE?IqG#(7k{>)Uf1h#OSV?i53TCSH#5M3|c}%r_WN_@`fk*Do7sguojf{QxG=WT`Ny8w9MB93^`# z7a_Tg*F7Y3FQyADT7&nLO@tRvW*z7Slz-We_X3UH5Bmbk2QRs)B%Eq^yD63MFAilU z(^HdY4G&fbZwn!r@T)j=bR1Y@C2*kb+;MpF8VPD=gK)r_cX%ZR87sv&38rc7TnbBV!+*hIg{C&dH2CCY#($O+ zzCxocn^A%B#;C}&TN?)lZwh!M%CcTBrWq*MT$C`8)E-^1Xr;?t5D-xGE<715R>F@} zUj!?IgfCO@A-gFI9KnF-L{|gFHUZ3Fp-mh!NGc~wcqCR0<0<(33a2E4XD&*3CdOO> zr)y&&tV#-Ri@M-$IL=ZIjW7$~xqm1V481Ua2w)sXDF;XLlk#j7U#1$3V)HmQlG{$r zM)KNmbPT7Rz0i>0Xn|I5u$*3caHOQ;xV(5amdDGEj^gm*@HqZ19W;j9MHerS;26#> z4I0DOrOQUlb0klfnvUV<;?O95E}o3w=HkF;UM`M~;^e~NiE@d6^r3%&p?`1SnROsw zP-uZLfWuhH&&gNQj$!P0ab%1&5C_JXcge{H9O)xDgCZ&XEDp{Fu^is2w-FUH+hAAl zLlHs58oWOjes3-)vRvUzWV!8i;LwV520kc7cvJfk%|Y3nC=#IDHB}tG>8>|hqAbxB z;Et{Zd=)D&Y=TZyc37;)WPgr8T~Y)nczIHENjF7;;)GMPnTMS8q_Tn#%&GXz0xbiHlP(^cI1OF=d8UpWA~& zK(QEMA5;?z2p0OBh$^2WSQ7{{3<_h0VRwoMG}Rv_0!*#X6al8zM}LceQriy#Z$yOILG* z(Tb;f7XutN!U~LrZypi0s$y&^-JJylOtp@grZt1Fyj^yZvsA&?w>=5Y8LosN0{I~{ zO=W$09Q#CECAwIG!jIMO6+#-9>?{*}Y6%fcZQ7*8{JXeiU;eYVZqu zD0eom7|)WjIoRV=NZIKkHoC7=il)}}vdOJzrFp%#emLLlm4Bg`Z?B!bHUGE=c#@S$ zX;AL(iv-ihzk}&g)80go9PMEasbeAa?c1ySFsko|HeX`F=+PTk&|kv0_}=k`>sM3+(x zwxHc>hf6~D>VMgFPQFX=^wa5M7LEy=BL5=glG7V5s|+6g&$2AwskT~kd$j1&R+lt~ z7x>K$Gv%VZ{$358y%x$Zf`YHtmj#p#f8p##uOCf)`nbcNXuc27gRrwy=7C43OqR$f zw+A13qY_Jm>XZ}|Q(@r)k>`b?+FsWl4UZ~FyGQn-Dt}pbYk&3)rj(6hyfS~|stEeb znV{P4-Cnnc7@?`z(}yvdGE`QO3#Ay|r3{IQbYlcTy_Nv+KhNhL(e5ko6MpygTL0<5|gcHd2eBUN7 z2Kwaj^mN5|rl^2VcgA#4?^{3tJ4c0K3t~LqMJOtiEG0atL4+SWgaMlYgZm#cIvIWAWi?;cFXuS?)Lu30vqm%?MoLI1LG3+&ICpW@R#Ow(6X+XS&x8 z+cn**XOHfWw~fk)w)&VzAlWXd~)Y~xN|<6)jE%onrpb)~+Dm6QX6RVu zegfx2-8sk}gnGlE{k}E)PQ8I~N&yD-cwi^oFlD@ zbA-ezQ$$nX64*d(k}=EQ6IB@nO}Qh^GODQ!%YR(Qo&rvA7oW_xW61_^lW^;^m=Ue@aV}J{(%cUBwz*E>J$!vIiWeoXqr#J%@x(4a{ zZ-3ie!De*J?^Z>?ve)w6(nXxO{=`(&6>`s zcX~u5kUpb!;gSRt$4DJxb}!LIba{p+sfr9sWoeq6rGbBb_a5W5ckpJ6n-b24$G8AO zVN>?;LX8bG)QZFk`Dx{CN(xx0^z$*1sRI-0g%+!PwnkH+=hR%v)UG z6qYAb;EBSiS}hy3UUgOQDpg0Nw(Joq)J_DyHtn?P=Rp%dtwsk_`gKUV3-Bt?CoB2B zStNmfz#bp9BJC^TRi-_qR8e={o%0bwDvbk@i9Kdcg?I}Ah&SVVgchW))CfU8&wuaI z7=5fcBN@2B@8Gk$Jg?e@10lCMQcq{nsXv}UDY3zXaq90MZbSC1A0(j+#`Y9Y2V}>z znnMuIspldowb5y@m6y~-!d;#vTbW3CmC>_3oZTl&DoxJv4s)8zfXQ zhV`RaLK{c8bEumiZMZM{WwKBtM}K@|oIy#;Mzy87DtLBON2NAs>NkUAM4i&ZwV*o6 zw$Z95{S$#*0B4D?(Ldb6l5=l!J5V&TX0wQcU?A*N@Q0W?t>%Hy6i~;Q2UPlF%uX#p zsprY#=_S2MOw&L1-u`JvzbO*-dskl)sgebwHd==CACLugtEgMaz=Kt$=zk8c6HlX} zKuZ+ra|E@S=Ctobm)So!nNxmw_2Z?z>1tWAjQ(JEPD*iQHw_TKg{E_tZdlj5?=B7` zA~hemTzY*cmC4i!4PEQ_mz}4te?2H7MM*bhm`L~9mm>bxLn7{@HNS#n_O5;*)c$@_ zYCjNGsOZ4}S_kEKR~||T-G3Be%DW3+NZFq*hC_!92pkGDc6lgt*+pPXu>rlKVaP6z zMmD=R=J_!ob&!1#5DjXOdmwn!<-tHz7pJ3u1qq$dxCo4q6r^(?tkUJta84H|q5}=7 z$zuxgA}FTI0RKo3n9CypW-f-dHV(-Zr>al=>&3~f7y}A>dp0ijc7K9g1iAPQXdLkg zzC7Z4d@<~WHXwM&XYKNkQ{2U%AIE^w0jH140}dq@K|TGD)?w4&@`$m~Y93{G7}pPX zmydKo6%{GHFdgcGEh{x-YILq@EQ_1&mlotlX0o|yv0&Y#9K66M>0xUI2jcR!2{E7# z(3ttc`oy;BJc{jJ>3{imoo_B|f9FFd=n=dR}YZ+Bl^G|$??jz6ur^X2oJAMMb? z4$=}g!S9z6LXqafRek$a=k|x~$Dc0!$glIQyVu1dxL8uLD>AK6^KFxP=HrFC>1ckv z$a3?Ly-a^mFgpV8Ord`73bpyR&YKG+{r<6|it-2hyBA~f%70yaZT_)$+D&68ZZto) z_t{Hto_=?CRi+`&n|=98u9*!Cae~voa))%BEBEVF%eisiUb@w&%ZK_~E9*ScPpH`6 zTeiFS*Qbvk?48Y)v=cYim$dgcw><8_V3G&?FAR1O>?l~eskVy z%un9g4rGG0c2S$1())HKbn>njE#~mmO{uUy2It-v$woYjyV~pgYCoQ4Yij+NuZYO5 z7L1p5YZ{{S;?CyTc$Ev&M%Z76pRLLk4q^T$!P4EEyy|Cr`McVeH}LhX8GR1VR(G`* zd!$RI&3^;iBQk!sU!T_T^Q_@Y_4QuM&*C0?q*&`q<2RA9iG}=lE3}Yr}qd1Zd3S%;)|Pw7t@U|M}^+d-L|1yNxOHYgKIRyu%Sg z>4?C9`MPHVxy{K(K=sdc`)xm7ytJTB+}zk#-hZxoVM86ivoWxoW!3-b)cfj>=1IO>2^c*OYY+-EmU944AyYQyN?_uV_HVyQ?* z{a?pwRR5y7HS^zH{^GuKNN+49X>Cs&H7GmA$6t0|U$yu343Zk^79hIy{t);@&F|uS iEgeU%MQ9e?dtGwac&^(H{>A@swd1^K82=vvAi(~=U?qtz_x=>Fn!B}nIz2sgYj%m_^ti`KJa&@4GaD8}LJ|@Z zU;t2-^64)gBt^=S2omSWy-8#V{QW_^9|s2+(PU96CirE!{YN3PDyNr!y(E$6PEeC(Vgcmp>0+4u3yCOA<*-nItYkRIfxf zm6YycM6{M{UTHd&WxtveMdM?YQAw9fX(|(yu4qBxkp(S;+$Np(jpK1rP!*2>e@|FW z68oBJ{Xj|fvDD@-HND*TFtbz?1?4)f(DsoT%~`=rMnFQTN=Zo}i3^s~#Jqkfsj|N( zdW#@HH=6RM!G8lKD`5TtX=~K=)RSDzCn&g$Q2VnFn&rK`7q#H=; z_eyBc@~~@8V2LJC7pB!K$i^f>YDxrX;+lTQ6t!ty{9dyR$88&CIArul?4iD6PVnCyzR^mC<+L(|H}<31-Gh5|5=-s9Oc zE9>}8PJgOCGhMMflaxcnF=NWaa0`q}Z1|YLK%cshqDV?9w16UZo14l<)bL9x^)?P{ zhHcRiEoDT3E~P2QB+KH8v8Qkd3jGcMSyB*)$#YsjkTd{<@wF*$0H7QqadL>56au2e z6jcsD;Si}JBmhLV)iI(Is7V}(6y4K#3`Esm;AfmHg6Aplg zjeo|R>L*HLV=`wNrb5h3D_le}Qo;piDaqYNVl+%iRa4%W;_wUzz49tr$w@gv41OTAZubKhtd5dK!eim*hDa@vW)H}>jZ&l*`Cbr z;wf3kDAX-iRO*lAWTTD-FnfJ}fAisO)S5!e`uOGM;g5&gPd6~QhnxGm*Vl2dJF&E@ z!%-Gp9Y(b6NuL$FW8R~IScY|p(RN%1V98RFaj ztCyHy+4gr+ewWl9nDCa@i96thD5cmBiY9{679Q1bDTnz!knL`t>`o7vJYPytmF^u- zG+0p;$-G)DsI;eY+;OF3PP7>os-(0B>+J$_fv4Rx&YhQa&5uN=sekGlD-&_^0d;kPcp+fzJFj#Gk7#P!~KFbTs-Tu^Gtn93c}5xLE1ms#(QG=2B^eX#f9+e z(J#VlEC{oBYur={k%RNCon5v~YQIA$5}FoeGeeBo^ge>G_}q-wGc&9Ld5On=-^I?C zcZgX%8-l4%9j<$GKLyV+khkq23vi?zN>OV+5m6H#{nF93Yk#7q=T4Ub+TQiaifW)& z_379j8iHZ{v^vS?f>gO~Jde2}wy}%W2h`3a!}vnTf;f{D1bpd-*GXw61@){Hj4kQT znuaV*^SmT&YlI@=TIPar_@ebpMWqDsMZOA#NVnz&cyzy^3(MC;E^Q%gL?Y;)>=RQS*<6lNRZo;v)@Lw`kwX81c>qb;3>OiZz|^xS0>*zHU^Wj zzQX`009~3b+RpyLTDQm4%zdacTut1V5)SI@MrrOqaF9zIgF zXjCv-y)Ju(U1ZPDg!H8F>f+9&BuHj>976BYfUQMruz%^%_)d$Vn@Kik{Odjex)#@T z;F4HVk$;l}k($sA8+O_;k&Tkr;C*5ri(bH6A@Rhm;a+89Lo+{)Er9X5OL+avljS=wiHen<6yfF^e z+w9Xjuj5TUA>XIAj0oBoA59H5Gm0Qj*oKc$n{I{#t2%6!1gjTprW7qZ(rhVOZ@d{( zwB$Imrf9iIW=`R%!DdfWkWjMN^8%9$GW!Bk3o-)(QwuZ;i_#ly zCN@Q_nUex{HSW(O*@a1R?>=C68(or$jHZyYtyA)vnBjIE(0W2}%VDVEf$LY31!;y+ImHx<5y6 zS4O^TF&!C3iR@6d$cP;pOXUeU5 zf_1ibqsqwQ94coK(PvS4I)loZQM^&L@_!~Q!;|=)W3v6_4jr#%C_=bZevHZ2R1KF* zM^@k9M4j1BV`he6yK#iSzsT2ZIDa7)-});yC+v3GfWwwMZP3|u-|gm!ggS^1;m+PX zeEf8G8?Z7nUE;U@-rl1M-2L}&*!<+-^&hAjj~`y&-~R_y;`4{=kMHjvZXO?R-l7Wq z_wf_1fLmTrdT{JBUBT|GG@GkAUDF&^>aF<{azJ|`HQbk2guqCvxamqJFMrI-ph{pT zR@i3GWWK}O&}b6PRyf5HNQs%F;lYOoP?Omr&uNN{Pr~jija6xP?S@Sar%P2FEw!2^ z+cZk9QsC*R)O2lV1=i1nLHo}RJn(kF$$TkFEH>SwwA9wf4o|^tiFF+N;;Wpa-g!kk z4GP)jovvc&3=JQAS!{$rz<({WQ|T*8(DK)rY%0W_$Owp_MW?9()*uX%od`61>pmR? zKEga>s)k)BE7%X3CFf8x&7CrB-*>yl){Y`{QnDI@FK#=84jDJ9o*-ex{$fo{e z0ZF*BrvF$16-R8W9X!FF{ZyP&h2GZrvnQx)0v!o6m$nA5*%_qpQq0}c5nzlGClF#E z5~mPoJ^>;!Y7;e15wr7f_o;*(lLS!ku7~_vh2N?*PB`!i*lE!4Yhfqy$6OUVQ6l{M z*l_|AuBD6@n0i$uw10Bg{e94?VR!lgsE)hl5%|5QTG9&*&>Rp;bp*!wDcAc{L|o3?^LH2_Zh_3QqvNm}@;DqG(L6LrNXKs=^hI|?EEG6R#i>q!ChCx2X73Z**c8q-mleJ^}L zrntLDMi}Mp9-3X#Jb%|!4H<1779FcLOOn*o*%2mXlXcrAj(?g5&iA^9WoM@GWO-)y zc3?FAR!W;0o-HpvUP0b+(c|NjlRVH-u(icy%J>NwMpRamEm!)bV^Mpmoo_W&FMl1ErYSq^C>}KmPb_=klEL_k zH|g!U^ZrEpCF-m@?)1XtLfPTZ;qmH=q)8_}&&R7T6Qh+i3H0k**6^yJN|7af$ug|; zcF%LhOU0zJ_RlL~SAkum&Q!JiIQh{k2HqcpBRXqm5AN;HP)3hMqOL4wibh)i-h0pf z=!w5CIDc#BO1)+rz2rTMhr0&)d_BoCeRW>_^H#Z+t!pn`$r4EylB(72EBg(Vl&5s~ ziXH&{HOX0KH+AOqRS)M=+`Y2h)idc_PrlC=gHkA_*_zrr1kRy6=^mzd*=Ow+wxB7| z=axhjY)^ij*s8N(hWF-dsM+hTgM#DtdF>NVqJQ2suN#ldnLoG^iQy#Q{s4HzH&j1S z3h-iYn6(y!MwGBpkVLa za(^jk8h)wI*~hWoQfs1|g7k`SYnLZLulcrf3@?&YKZN8R6>z0Fqf1FC+<%Ljky4r45d&mSfDgZ52VUkABuhfhBNnD55RwtN zCd)g22JF;>y-AND2AGqD<8o_70rx3E;4Z8QU{a*Q*b61Z~BRKkUZ&1TDl z?C!{+Q12^^(Yrs72dXa~N zZViNoozD)2N|G_c;o2`rtwR{V_|c7bjbcxQ5uPa|vIZPTS+ZT_g9Cy#8UE%0*ol=| zkyo$&28#Rj?~u4({ueZMzkmJ=*S#pVA3Gs@G=XIKNpBiKhBLQUG()+dK9R;N5Qd9fPo>zvYkB{C|5zC4iyzt$Igt zh!Y*R>VwdbtPl0t4FKwste|4`nSbNriG$F9UJ&Z-z+UZl!GI{&f}38PFbJD*%Y$j7 zU|NH_#&d5hrXAkIfj-#NbZiaqW*-E=dwq2CxAs`cYYA{h=f0W1*ItYxX*o&hN;C(} zB4O^5Itl?2Un$TjhJOc|R#KTV@o$*U=AnPrUmWbwO!J9^>j^#YiygUvoZB!X4?vh{ zEKKYm&b>X>6SjB?(5Z$71!^JOLWxQ#Z`_uHQA2LT90jziv?^IJ31ipNa_uEY%@iGA z)7WzVMImY%T)nMHK&Q9esV&nM0JKn_>_vRUcVB5rm3l8S3V(_<U zJm290Xz3bwcS{NoyT6wNh~8f(0z<b7h5}8mvsN-W+T| zKyOl7VnutS?U5xM_=+era6k7~2c+FM! zATx3F!R;o5i?fOLaZq!8?WuH`5cR0Qi7K1rQNhf zg=40>7eGt+=9*P_w#pe+vNyYX@MJ9#Z$pcNuQ*P_ZZ9JzO5>1sem+3ijk^z6D8fjn zu^k76YJ{~3!+eDSg@5}sc>S`TMhN`Cqwl~3ntv=L26cmg6(UDTUdu&@Zew*13ElJQ z0*hAQJ!RwJ1(aDkdI4qj{k=e=_uan0^1(}PDo9Qh{J1F<@EM1)lIf|*lY$3Jgxo@i zCj2f=?HvaeS#cbwyLTL(yheiB)gTyXs`pj7wBz&2IPuWdj z$Poq*9q($O*v5ewEVS`s21(7y5*~?F!+-J=e0?RSB!g!zG&~byEg`3CGeTHt3O^Qg z&fRc~r5qYz6~J>*78rVN{t&=8hEfiWWGCg>D7H*B8fDDm*hpqOH5ei>A{hrj$`uT*;p1YJ35NNi^JpCyL8YPW*1#NM}lJ*yEJGFTbC{yF@MdG zEM00khM|i?qu9B4GJ=_l1EX2FI68`vOAb#IO9Z5M{R<3z1<$M<0fRzIgb5tRPJThY znRX20#ETRm>4a69_8|5@Us7cZ&!#)n6t8Os($}0jAbhi-1zw8%AKM903VF3{hpyG>TDa za|a11(|W1IvCC6B%jg=1ieb-PlQ9gs>kD5HeC!x<34go+XBA6TbA;K7r+O0u95%uZ zjDl|-5ss>294g)21q4jBhJTr+HG{9bU3OBiRKnM{J&8PLxDuRjAB=7iVaXMgxm?rdJMJWF(Q zvBxQwveQMZcV8hTO|9u=lUmVA^ZIQ4aJt)&p^0z9&fb`R+zUL4N~Sa@_4h@B>ErWY zy419s2-3^zj1S9_CUj`FG~p*#jzfZ@mBwckjO?^*3(*#X*(Cz9NX#T9Swhw!hiCf4 zBdAoZfkMToh*RVz_i$iWu08+N!PbVJWx z7vzWFkH4J0X5pB?De`YZEOUCDizU8RUGu4i->4e8AbYT0fZj^l^tj(R?4E2VrNaC<3ognSU&i(cE5q=m(WpB2=ZM zq?if|?})r8B~>hSJt^M6Mm{Qh@@yh&-tHSA1&Nx-}?Do37#0X8z z-bUoCBrsLJS3;wfH-% z7A6(>@cre}1rqE+7|}GdSIwX%n7h`Y(+#1#lRX?jf7XMbz*W44ct9|SsFZg1@31oY}Z<7`See!sEx?*`IDTj}D##C9KTR;IjLxtfH#CX2* zP*h5x1w6Z3?`wNvqf}CMXK4ByC#y6=xiLb-EkTcw$X8# z5xB*18WO&_ae`xqmC3w0s&i^Q(+xX3uIYxJJ-9#KG%6?B>SH2-bkoY#S8(`4<-^Tw ztl)kM4z$3ra<-mr-76x$*rUDCyui&ZuVM4de=dZe=haS*(~Ul#+<9N_obP6}&Z8vf z3a)l}i(kS9jey#K!|h!gbari~j#c3oa8A^ngX}@59~iXXw*$XZIWSHsU_d<{*l{-u z8&jViO?L{+wu$SHKytr*KT!N8NSO8aVk%bhy>DS)b8YwfZ`abW5%INbP=V`@FrE6VW})lle0AN&u`yhWP1m1CVeT% z^WjM!fKb>PcDzuPkwr)=5-a4_S+^-ERh6R`gjw@im?AfuQpnce9kJZ)giOKMe?4GN zK>IKz7Z*5%<7eZ4&onszQ z>CZ7cwE(4_Cl9C3G*4oh{;`+)r!C*6NZ9XPeMy8&7K~c=5yF2!7F4aGY9#}28kwTo zEJniSP~C__Lp2KZDT3N8e{gwy_nDz32)Is(|fP17t?g4K~mj^vJU7U7{6(n>*<08;$P>{|6KSP&C z{Tp4JaF;WrCXOkHiy$W_1No+7=}b{qpr2aG;04;YkO1oiYoT8D=Qmq!L0 zt>#g7hw=LU_VR%)sH8ll7p6m9uw^BOh8mqv&B)@q`=tf>nVD!FS}a&MDhC7jDBW+( zIko=36Wke+|r`R2m*cixwP8Zor$e>~N^|IO~Ji{@Qh*zvbD zPdO6kG{rJnJpZRsZbofU`tgf8$Q{yguH3IzE$7;Od+BzgF7NAa zt*kTAKA~cNZ`m&J?~flp*e9DaS|=W^gS5{#kKFtJFA9+zC;;X5s`VRfdaet zD!6GQ?61S`R%Hu^F#nTa>Fz^b^|KBBwzlOB%)T|F zPvObxLVK|Xx@5|{u)QCj;!?@57ilM*e{O&&9FH0sXqj5LwfK(KfS**xz{{xhBCib z<<_n{92qDb5f~W0?u~)mY272B`scd+wjVE^kDyLG+>EdMxa!#$>iCn*0LzW6`ahk@ zf3NkUY1sM~<( r*84-?XEncz@3kDg7NOa6?{&#x^SN$25BL}V$JLJWtYQ3rI*OvpN$8m# diff --git a/searchindex.js b/searchindex.js index 715cc498f..235db5bf1 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API Reference": [[19, null]], "Additional Resources": [[37, "additional-resources"]], "Aggregate Functions": [[24, "aggregate-functions"], [31, "aggregate-functions"], [33, "aggregate-functions"]], "Aggregation": [[24, null]], "Alternative Approach": [[20, "alternative-approach"]], "Apache Iceberg": [[35, "apache-iceberg"]], "Arrays": [[26, "arrays"]], "Arrow": [[39, null]], "Attributes": [[4, "attributes"], [7, "attributes"], [12, "attributes"], [18, "attributes"]], "Available Functions": [[33, "available-functions"]], "Avro": [[40, null]], "Basic HTML Rendering": [[37, "basic-html-rendering"]], "Basic Operations": [[25, null]], "Benchmark Example": [[34, "benchmark-example"]], "Best Practices": [[37, "best-practices"]], "Boolean": [[26, "boolean"]], "Built-in Functions": [[36, "built-in-functions"]], "CSV": [[41, null]], "Casting": [[27, "casting"]], "Catalog": [[35, "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"], [18, "classes"]], "Column": [[26, "column"]], "Column Names as Function Arguments": [[36, "column-names-as-function-arguments"]], "Column Selections": [[30, null]], "Common DataFrame Operations": [[36, "common-dataframe-operations"]], "Common Operations": [[28, null]], "Concepts": [[23, null]], "Conditional": [[27, "conditional"]], "Configuration": [[34, null]], "Configuring the HTML Formatter": [[37, "configuring-the-html-formatter"]], "Contextual Formatting": [[37, "contextual-formatting"]], "Core Classes": [[36, "core-classes"]], "Create in-memory": [[35, "create-in-memory"]], "Creating DataFrames": [[36, "creating-dataframes"]], "Creating a Custom Formatter": [[37, "creating-a-custom-formatter"]], "Custom Style Providers": [[37, "custom-style-providers"]], "Custom Table Provider": [[35, "custom-table-provider"], [45, null]], "Customizing HTML Rendering": [[37, "customizing-html-rendering"]], "Data Sources": [[35, null]], "DataFrame": [[23, "dataframe"]], "DataFrames": [[36, null]], "DataFusion 52.0.0": [[47, "datafusion-52-0-0"]], "DataFusion in Python": [[22, null]], "Delta Lake": [[35, "delta-lake"]], "Distinct": [[24, "distinct"]], "Duplicate Keys": [[29, "duplicate-keys"]], "Example": [[22, "example"]], "Execute as Stream": [[36, "execute-as-stream"]], "Exporting from DataFusion": [[39, "exporting-from-datafusion"]], "Expression Classes": [[36, "expression-classes"]], "Expressions": [[23, "expressions"], [26, null]], "FAQ": [[31, "faq"]], "Filter": [[24, "filter"]], "Full Join": [[29, "full-join"]], "Functions": [[3, "functions"], [4, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [18, "functions"], [26, "functions"], [27, null]], "Guidelines for Separating Python and Rust Code": [[21, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[36, "html-rendering"]], "HTML Rendering in Jupyter": [[37, null]], "Handling Missing Values": [[27, "handling-missing-values"]], "How to develop": [[21, "how-to-develop"]], "IO": [[42, null]], "Implementation Details": [[20, "implementation-details"]], "Important Considerations": [[34, "important-considerations"]], "Importing to DataFusion": [[39, "importing-to-datafusion"]], "Improving Build Speed": [[21, "improving-build-speed"]], "Inner Join": [[29, "inner-join"]], "Inspiration from Arrow": [[20, "inspiration-from-arrow"]], "Install": [[22, "install"]], "Installation": [[38, "installation"]], "Introduction": [[21, null], [38, null]], "JSON": [[43, null]], "Joins": [[29, null]], "Left Anti Join": [[29, "left-anti-join"]], "Left Join": [[29, "left-join"]], "Left Semi Join": [[29, "left-semi-join"]], "Literal": [[26, "literal"]], "Local file": [[35, "local-file"]], "Managing Formatters": [[37, "managing-formatters"]], "Mathematical": [[27, "mathematical"]], "Maximizing CPU Usage": [[34, "maximizing-cpu-usage"]], "Memory and Display Controls": [[37, "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"], [18, "module-contents"]], "Null Treatment": [[24, "null-treatment"], [33, "null-treatment"]], "Object Store": [[35, "object-store"]], "Ordering": [[24, "ordering"], [33, "ordering"]], "Other": [[27, "other"]], "Other DataFrame Libraries": [[35, "other-dataframe-libraries"]], "Overview": [[36, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parameterized queries": [[46, "parameterized-queries"]], "Parquet": [[44, null]], "Partitions": [[33, "partitions"]], "Performance Optimization with Shared Styles": [[37, "performance-optimization-with-shared-styles"]], "PyArrow": [[36, "pyarrow"]], "PyO3 class mutability guidelines": [[20, "pyo3-class-mutability-guidelines"]], "Python Extensions": [[20, null]], "Registering Views": [[32, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[21, "running-installing-pre-commit-hooks"]], "SQL": [[46, null]], "Scalar Functions": [[31, "scalar-functions"]], "Session Context": [[23, "session-context"]], "Setting Parameters": [[24, "setting-parameters"], [33, "setting-parameters"]], "Status of Work": [[20, "status-of-work"]], "String": [[27, "string"]], "Structs": [[26, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[31, "table-functions"]], "Temporal": [[27, "temporal"]], "Terminal Operations": [[36, "terminal-operations"]], "The FFI Approach": [[20, "the-ffi-approach"]], "The Primary Issue": [[20, "the-primary-issue"]], "UDWF options": [[31, "udwf-options"]], "Update Dependencies": [[21, "update-dependencies"]], "Upgrade Guides": [[47, null]], "User Defined Catalog and Schema": [[35, "user-defined-catalog-and-schema"]], "User-Defined Functions": [[31, null]], "Window Frame": [[33, "window-frame"]], "Window Functions": [[31, "window-functions"], [33, null]], "Zero-copy streaming to Arrow-based Python libraries": [[36, "zero-copy-streaming-to-arrow-based-python-libraries"]], "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.options": [[13, null]], "datafusion.plan": [[14, null]], "datafusion.record_batch": [[15, null]], "datafusion.substrait": [[16, null]], "datafusion.unparser": [[17, null]], "datafusion.user_defined": [[18, null]], "fill_null": [[27, "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/options/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", "user-guide/upgrade-guides"], "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/options/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", "user-guide/upgrade-guides.rst"], "indexentries": {"__add__() (datafusion.expr method)": [[7, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__aiter__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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_array__() (datafusion.record_batch.recordbatch method)": [[15, "datafusion.record_batch.RecordBatch.__arrow_c_array__", false]], "__arrow_c_array__() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.__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.dataframe_formatter.cellformatter method)": [[3, "datafusion.dataframe_formatter.CellFormatter.__call__", false]], "__call__() (datafusion.user_defined.aggregateudf method)": [[18, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__call__", false]], "__datafusion_aggregate_udf__() (datafusion.user_defined.aggregateudfexportable method)": [[18, "datafusion.user_defined.AggregateUDFExportable.__datafusion_aggregate_udf__", false]], "__datafusion_logical_extension_codec__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_logical_extension_codec__", false]], "__datafusion_scalar_udf__() (datafusion.user_defined.scalarudfexportable method)": [[18, "datafusion.user_defined.ScalarUDFExportable.__datafusion_scalar_udf__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__datafusion_task_context_provider__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_task_context_provider__", false]], "__datafusion_window_udf__() (datafusion.user_defined.windowudfexportable method)": [[18, "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]], "__eq__() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.__eq__", false]], "__eq__() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.__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.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__iter__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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.catalog method)": [[7, "datafusion.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.catalog method)": [[0, "datafusion.catalog.Catalog.__repr__", false]], "__repr__() (datafusion.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.__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)": [[14, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.__repr__", false]], "__repr__() (datafusion.table method)": [[7, "datafusion.Table.__repr__", false]], "__repr__() (datafusion.user_defined.aggregateudf method)": [[18, "datafusion.user_defined.AggregateUDF.__repr__", false]], "__repr__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__repr__", false]], "__repr__() (datafusion.windowframe method)": [[7, "datafusion.WindowFrame.__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]], "__slots__ (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.__slots__", false]], "__slots__ (datafusion.table attribute)": [[7, "datafusion.Table.__slots__", false]], "__str__() (datafusion.user_defined.volatility method)": [[18, "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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", false]], "_convert_table_partition_cols() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_table_partition_cols", false]], "_create_table_udf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction._create_table_udf", false]], "_create_table_udf_decorator() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.WindowUDF._create_window_udf", false]], "_create_window_udf_decorator() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[18, "datafusion.user_defined.WindowUDF._get_default_name", false]], "_get_javascript() (datafusion.dataframe_formatter.dataframehtmlformatter method)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._get_javascript", false]], "_inner (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table._inner", false]], "_inner (datafusion.table attribute)": [[7, "datafusion.Table._inner", false]], "_is_pycapsule() (in module datafusion.user_defined)": [[18, "datafusion.user_defined._is_pycapsule", false]], "_max_rows (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._max_rows", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[18, "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)": [[14, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[14, "datafusion.plan.LogicalPlan._raw_plan", false]], "_raw_schema (datafusion.catalog.schema attribute)": [[0, "datafusion.catalog.Schema._raw_schema", false]], "_raw_write_options (datafusion.dataframe.dataframewriteoptions attribute)": [[2, "datafusion.dataframe.DataFrameWriteOptions._raw_write_options", false]], "_raw_write_options (datafusion.dataframewriteoptions attribute)": [[7, "datafusion.DataFrameWriteOptions._raw_write_options", 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.user_defined.aggregateudf attribute)": [[18, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[18, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[18, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[18, "datafusion.user_defined.WindowUDF._udwf", false]], "_validate_bool() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_bool", false]], "_validate_formatter_parameters() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_formatter_parameters", 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.user_defined)": [[18, "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.user_defined)": [[18, "datafusion.user_defined.AggregateUDF", false]], "aggregateudfexportable (class in datafusion.user_defined)": [[18, "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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "append (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.APPEND", false]], "append (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.APPEND", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.catalog", false]], "catalog() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.catalog", false]], "catalog() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog", false]], "catalog_list (datafusion.catalog.cataloglist attribute)": [[0, "datafusion.catalog.CatalogList.catalog_list", false]], "catalog_names() (datafusion.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.catalog_names", false]], "catalog_names() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.catalog_names", false]], "catalog_names() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog_names", false]], "cataloglist (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogList", false]], "catalogprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProvider", false]], "catalogproviderlist (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProviderList", 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)": [[14, "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_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_column", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "comment (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.comment", false]], "comment (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.comment", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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)": [[16, "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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "csvreadoptions (class in datafusion)": [[7, "datafusion.CsvReadOptions", false]], "csvreadoptions (class in datafusion.options)": [[13, "datafusion.options.CsvReadOptions", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", false]], "data_type_or_field_to_field() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_type_or_field_to_field", false]], "data_types_or_fields_to_field_list() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_types_or_fields_to_field_list", 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]], "dataframewriteoptions (class in datafusion)": [[7, "datafusion.DataFrameWriteOptions", false]], "dataframewriteoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrameWriteOptions", 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.options": [[13, "module-datafusion.options", false]], "datafusion.plan": [[14, "module-datafusion.plan", false]], "datafusion.record_batch": [[15, "module-datafusion.record_batch", false]], "datafusion.substrait": [[16, "module-datafusion.substrait", false]], "datafusion.unparser": [[17, "module-datafusion.unparser", false]], "datafusion.user_defined": [[18, "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)": [[17, "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]], "delimiter (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.delimiter", false]], "delimiter (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.delimiter", 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)": [[16, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[16, "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)": [[17, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[17, "datafusion.unparser.Dialect.dialect", false]], "dictionary_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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)": [[14, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "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)": [[17, "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)": [[16, "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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", false]], "escape (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.escape", false]], "escape (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.escape", false]], "evaluate() (datafusion.user_defined.accumulator method)": [[18, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[18, "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)": [[14, "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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "file_compression_type (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_compression_type", false]], "file_compression_type (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_compression_type", false]], "file_extension (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_extension", false]], "file_extension (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_extension", false]], "file_sort_order (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_sort_order", false]], "file_sort_order (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_sort_order", 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_json() (datafusion.substrait.plan static method)": [[16, "datafusion.substrait.Plan.from_json", 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)": [[14, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[14, "datafusion.plan.LogicalPlan.from_proto", false]], "from_pycapsule() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[16, "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)": [[18, "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]], "has_header (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.has_header", false]], "has_header (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.has_header", 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)": [[18, "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)": [[18, "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)": [[14, "datafusion.plan.LogicalPlan.inputs", false]], "insertop (class in datafusion)": [[7, "datafusion.InsertOp", false]], "insertop (class in datafusion.dataframe)": [[2, "datafusion.dataframe.InsertOp", 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)": [[18, "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)": [[14, "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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", false]], "max_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_rows", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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)": [[18, "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_catalog() (datafusion.catalog.cataloglist static method)": [[0, "datafusion.catalog.CatalogList.memory_catalog", false]], "memory_schema() (datafusion.catalog.schema static method)": [[0, "datafusion.catalog.Schema.memory_schema", false]], "merge() (datafusion.user_defined.accumulator method)": [[18, "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 (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.min_rows", 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.options", false], [14, "module-datafusion.plan", false], [15, "module-datafusion.record_batch", false], [16, "module-datafusion.substrait", false], [17, "module-datafusion.unparser", false], [18, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[17, "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.cataloglist method)": [[0, "datafusion.catalog.CatalogList.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]], "newlines_in_values (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.newlines_in_values", false]], "newlines_in_values (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.newlines_in_values", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[15, "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_regex (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.null_regex", false]], "null_regex (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.null_regex", 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]], "overwrite (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.OVERWRITE", false]], "overwrite (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.OVERWRITE", 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]], "parse_sql_expr() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.parse_sql_expr", 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)": [[14, "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)": [[16, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[16, "datafusion.substrait.Plan.plan_internal", false]], "plan_to_sql() (datafusion.unparser.unparser method)": [[17, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[17, "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)": [[16, "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]], "quote (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.quote", false]], "quote (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.quote", 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)": [[15, "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)": [[15, "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)": [[15, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[7, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[15, "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_instr() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_instr", 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() (datafusion.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.register_catalog", false]], "register_catalog() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.register_catalog", false]], "register_catalog_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider", false]], "register_catalog_provider_list() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider_list", 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 (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.REPLACE", false]], "replace (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.REPLACE", false]], "replace() (in module datafusion.functions)": [[5, "datafusion.functions.replace", false]], "repr_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[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.user_defined)": [[18, "datafusion.user_defined.ScalarUDF", false]], "scalarudfexportable (class in datafusion.user_defined)": [[18, "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.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema", false]], "schema (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.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_infer_max_records (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema_infer_max_records", false]], "schema_infer_max_records (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.schema_infer_max_records", 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]], "select_exprs() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_exprs", false]], "serde (class in datafusion.substrait)": [[16, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[16, "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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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)": [[17, "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)": [[18, "datafusion.user_defined.Volatility.Stable", false]], "starts_with() (in module datafusion.functions)": [[5, "datafusion.functions.starts_with", false]], "state() (datafusion.user_defined.accumulator method)": [[18, "datafusion.user_defined.Accumulator.state", false]], "statistics_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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)": [[18, "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.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.schema method)": [[0, "datafusion.catalog.Schema.table_exist", 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]], "table_partition_cols (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.table_partition_cols", false]], "table_partition_cols (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.table_partition_cols", false]], "tablefunction (class in datafusion.user_defined)": [[18, "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]], "terminator (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.terminator", false]], "terminator (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.terminator", 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_inner() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.to_inner", false]], "to_inner() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.to_inner", false]], "to_json() (datafusion.substrait.plan method)": [[16, "datafusion.substrait.Plan.to_json", 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)": [[14, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[15, "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)": [[16, "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)": [[14, "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]], "truncated_rows (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.truncated_rows", false]], "truncated_rows (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.truncated_rows", 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.user_defined)": [[18, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[18, "datafusion.user_defined.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)": [[17, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[17, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.user_defined.accumulator method)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[18, "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)": [[18, "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.user_defined)": [[18, "datafusion.user_defined.WindowUDF", false]], "windowudfexportable (class in datafusion.user_defined)": [[18, "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_comment() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_comment", false]], "with_comment() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_comment", 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_delimiter() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_delimiter", false]], "with_delimiter() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_delimiter", 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_escape() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_escape", false]], "with_escape() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_escape", 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_file_compression_type() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_compression_type", false]], "with_file_compression_type() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_compression_type", false]], "with_file_extension() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_extension", false]], "with_file_extension() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_extension", false]], "with_file_sort_order() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_sort_order", false]], "with_file_sort_order() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_sort_order", 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_has_header() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_has_header", false]], "with_has_header() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_has_header", 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_logical_extension_codec() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.with_logical_extension_codec", false]], "with_newlines_in_values() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_newlines_in_values", false]], "with_newlines_in_values() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_newlines_in_values", false]], "with_null_regex() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_null_regex", false]], "with_null_regex() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_null_regex", 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)": [[17, "datafusion.unparser.Unparser.with_pretty", false]], "with_quote() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_quote", false]], "with_quote() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_quote", 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_schema() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema", false]], "with_schema() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema", false]], "with_schema_infer_max_records() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema_infer_max_records", false]], "with_schema_infer_max_records() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema_infer_max_records", false]], "with_table_partition_cols() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_table_partition_cols", false]], "with_table_partition_cols() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_table_partition_cols", 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_terminator() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_terminator", false]], "with_terminator() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_terminator", false]], "with_truncated_rows() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_truncated_rows", false]], "with_truncated_rows() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_truncated_rows", 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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "write_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_table", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", false]], "zstd (datafusion.dataframe.compression attribute)": [[2, "datafusion.dataframe.Compression.ZSTD", false]]}, "objects": {"": [[7, 0, 0, "-", "datafusion"]], "datafusion": [[7, 1, 1, "", "Catalog"], [7, 1, 1, "", "CsvReadOptions"], [7, 4, 1, "", "DFSchema"], [7, 1, 1, "", "DataFrameWriteOptions"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "InsertOp"], [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, "", "SessionConfig"], [7, 1, 1, "", "Table"], [7, 1, 1, "", "WindowFrame"], [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, "-", "options"], [14, 0, 0, "-", "plan"], [7, 6, 1, "", "read_avro"], [7, 6, 1, "", "read_csv"], [7, 6, 1, "", "read_json"], [7, 6, 1, "", "read_parquet"], [15, 0, 0, "-", "record_batch"], [16, 0, 0, "-", "substrait"], [17, 0, 0, "-", "unparser"], [18, 0, 0, "-", "user_defined"]], "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.CsvReadOptions": [[7, 3, 1, "", "comment"], [7, 3, 1, "", "delimiter"], [7, 3, 1, "", "escape"], [7, 3, 1, "", "file_compression_type"], [7, 3, 1, "", "file_extension"], [7, 3, 1, "", "file_sort_order"], [7, 3, 1, "", "has_header"], [7, 3, 1, "", "newlines_in_values"], [7, 3, 1, "", "null_regex"], [7, 3, 1, "", "quote"], [7, 3, 1, "", "schema"], [7, 3, 1, "", "schema_infer_max_records"], [7, 3, 1, "", "table_partition_cols"], [7, 3, 1, "", "terminator"], [7, 2, 1, "", "to_inner"], [7, 3, 1, "", "truncated_rows"], [7, 2, 1, "", "with_comment"], [7, 2, 1, "", "with_delimiter"], [7, 2, 1, "", "with_escape"], [7, 2, 1, "", "with_file_compression_type"], [7, 2, 1, "", "with_file_extension"], [7, 2, 1, "", "with_file_sort_order"], [7, 2, 1, "", "with_has_header"], [7, 2, 1, "", "with_newlines_in_values"], [7, 2, 1, "", "with_null_regex"], [7, 2, 1, "", "with_quote"], [7, 2, 1, "", "with_schema"], [7, 2, 1, "", "with_schema_infer_max_records"], [7, 2, 1, "", "with_table_partition_cols"], [7, 2, 1, "", "with_terminator"], [7, 2, 1, "", "with_truncated_rows"]], "datafusion.DataFrameWriteOptions": [[7, 3, 1, "", "_raw_write_options"]], "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.InsertOp": [[7, 3, 1, "", "APPEND"], [7, 3, 1, "", "OVERWRITE"], [7, 3, 1, "", "REPLACE"]], "datafusion.LogicalPlan": [[7, 2, 1, "", "__eq__"], [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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "writer_version"]], "datafusion.RecordBatch": [[7, 2, 1, "", "__arrow_c_array__"], [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.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, 3, 1, "", "__slots__"], [7, 3, 1, "", "_inner"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"]], "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.catalog": [[0, 1, 1, "", "Catalog"], [0, 1, 1, "", "CatalogList"], [0, 1, 1, "", "CatalogProvider"], [0, 1, 1, "", "CatalogProviderList"], [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.CatalogList": [[0, 2, 1, "", "__repr__"], [0, 2, 1, "", "catalog"], [0, 3, 1, "", "catalog_list"], [0, 2, 1, "", "catalog_names"], [0, 2, 1, "", "memory_catalog"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_catalog"]], "datafusion.catalog.CatalogProvider": [[0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.CatalogProviderList": [[0, 2, 1, "", "catalog"], [0, 2, 1, "", "catalog_names"], [0, 2, 1, "", "register_catalog"]], "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_exist"], [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, 3, 1, "", "__slots__"], [0, 3, 1, "", "_inner"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"]], "datafusion.context": [[1, 1, 1, "", "ArrowArrayExportable"], [1, 1, 1, "", "ArrowStreamExportable"], [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.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, "", "__datafusion_logical_extension_codec__"], [1, 2, 1, "", "__datafusion_task_context_provider__"], [1, 2, 1, "", "__repr__"], [1, 2, 1, "", "_convert_file_sort_order"], [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_catalog_provider_list"], [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"], [1, 2, 1, "", "with_logical_extension_codec"]], "datafusion.context.TableProviderExportable": [[1, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[2, 1, 1, "", "Compression"], [2, 1, 1, "", "DataFrame"], [2, 1, 1, "", "DataFrameWriteOptions"], [2, 1, 1, "", "InsertOp"], [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, "", "__aiter__"], [2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__iter__"], [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_column"], [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, "", "parse_sql_expr"], [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, "", "select_exprs"], [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"], [2, 2, 1, "", "write_table"]], "datafusion.dataframe.DataFrameWriteOptions": [[2, 3, 1, "", "_raw_write_options"]], "datafusion.dataframe.InsertOp": [[2, 3, 1, "", "APPEND"], [2, 3, 1, "", "OVERWRITE"], [2, 3, 1, "", "REPLACE"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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_formatter_parameters"], [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, "", "_max_rows"], [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, 5, 1, "", "max_rows"], [3, 3, 1, "", "max_width"], [3, 3, 1, "", "min_rows"], [3, 2, 1, "", "register_formatter"], [3, 5, 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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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_instr"], [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.options": [[13, 1, 1, "", "CsvReadOptions"]], "datafusion.options.CsvReadOptions": [[13, 3, 1, "", "comment"], [13, 3, 1, "", "delimiter"], [13, 3, 1, "", "escape"], [13, 3, 1, "", "file_compression_type"], [13, 3, 1, "", "file_extension"], [13, 3, 1, "", "file_sort_order"], [13, 3, 1, "", "has_header"], [13, 3, 1, "", "newlines_in_values"], [13, 3, 1, "", "null_regex"], [13, 3, 1, "", "quote"], [13, 3, 1, "", "schema"], [13, 3, 1, "", "schema_infer_max_records"], [13, 3, 1, "", "table_partition_cols"], [13, 3, 1, "", "terminator"], [13, 2, 1, "", "to_inner"], [13, 3, 1, "", "truncated_rows"], [13, 2, 1, "", "with_comment"], [13, 2, 1, "", "with_delimiter"], [13, 2, 1, "", "with_escape"], [13, 2, 1, "", "with_file_compression_type"], [13, 2, 1, "", "with_file_extension"], [13, 2, 1, "", "with_file_sort_order"], [13, 2, 1, "", "with_has_header"], [13, 2, 1, "", "with_newlines_in_values"], [13, 2, 1, "", "with_null_regex"], [13, 2, 1, "", "with_quote"], [13, 2, 1, "", "with_schema"], [13, 2, 1, "", "with_schema_infer_max_records"], [13, 2, 1, "", "with_table_partition_cols"], [13, 2, 1, "", "with_terminator"], [13, 2, 1, "", "with_truncated_rows"]], "datafusion.plan": [[14, 1, 1, "", "ExecutionPlan"], [14, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "children"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "from_proto"], [14, 5, 1, "", "partition_count"], [14, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[14, 2, 1, "", "__eq__"], [14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_graphviz"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "display_indent_schema"], [14, 2, 1, "", "from_proto"], [14, 2, 1, "", "inputs"], [14, 2, 1, "", "to_proto"], [14, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[15, 1, 1, "", "RecordBatch"], [15, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[15, 2, 1, "", "__arrow_c_array__"], [15, 3, 1, "", "record_batch"], [15, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[15, 2, 1, "", "__aiter__"], [15, 2, 1, "", "__anext__"], [15, 2, 1, "", "__iter__"], [15, 2, 1, "", "__next__"], [15, 2, 1, "", "next"], [15, 3, 1, "", "rbs"]], "datafusion.substrait": [[16, 1, 1, "", "Consumer"], [16, 1, 1, "", "Plan"], [16, 1, 1, "", "Producer"], [16, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[16, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[16, 2, 1, "", "encode"], [16, 2, 1, "", "from_json"], [16, 3, 1, "", "plan_internal"], [16, 2, 1, "", "to_json"]], "datafusion.substrait.Producer": [[16, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[16, 2, 1, "", "deserialize"], [16, 2, 1, "", "deserialize_bytes"], [16, 2, 1, "", "serialize"], [16, 2, 1, "", "serialize_bytes"], [16, 2, 1, "", "serialize_to_plan"]], "datafusion.unparser": [[17, 1, 1, "", "Dialect"], [17, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[17, 2, 1, "", "default"], [17, 3, 1, "", "dialect"], [17, 2, 1, "", "duckdb"], [17, 2, 1, "", "mysql"], [17, 2, 1, "", "postgres"], [17, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[17, 2, 1, "", "plan_to_sql"], [17, 3, 1, "", "unparser"], [17, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[18, 1, 1, "", "Accumulator"], [18, 1, 1, "", "AggregateUDF"], [18, 1, 1, "", "AggregateUDFExportable"], [18, 1, 1, "", "ScalarUDF"], [18, 1, 1, "", "ScalarUDFExportable"], [18, 1, 1, "", "TableFunction"], [18, 1, 1, "", "Volatility"], [18, 1, 1, "", "WindowEvaluator"], [18, 1, 1, "", "WindowUDF"], [18, 1, 1, "", "WindowUDFExportable"], [18, 4, 1, "", "_R"], [18, 6, 1, "", "_is_pycapsule"], [18, 6, 1, "", "data_type_or_field_to_field"], [18, 6, 1, "", "data_types_or_fields_to_field_list"], [18, 4, 1, "", "udaf"], [18, 4, 1, "", "udf"], [18, 4, 1, "", "udtf"], [18, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "merge"], [18, 2, 1, "", "state"], [18, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udaf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udaf"]], "datafusion.user_defined.AggregateUDFExportable": [[18, 2, 1, "", "__datafusion_aggregate_udf__"]], "datafusion.user_defined.ScalarUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udf"]], "datafusion.user_defined.ScalarUDFExportable": [[18, 2, 1, "", "__datafusion_scalar_udf__"]], "datafusion.user_defined.TableFunction": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_table_udf"], [18, 2, 1, "", "_create_table_udf_decorator"], [18, 3, 1, "", "_udtf"], [18, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[18, 3, 1, "", "Immutable"], [18, 3, 1, "", "Stable"], [18, 3, 1, "", "Volatile"], [18, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "evaluate_all"], [18, 2, 1, "", "evaluate_all_with_rank"], [18, 2, 1, "", "get_range"], [18, 2, 1, "", "include_rank"], [18, 2, 1, "", "is_causal"], [18, 2, 1, "", "memoize"], [18, 2, 1, "", "supports_bounded_execution"], [18, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_window_udf"], [18, 2, 1, "", "_create_window_udf_decorator"], [18, 2, 1, "", "_get_default_name"], [18, 2, 1, "", "_normalize_input_types"], [18, 3, 1, "", "_udwf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udwf"]], "datafusion.user_defined.WindowUDFExportable": [[18, 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, 13, 18, 20, 21, 26, 27, 29, 31, 32, 33, 34, 35, 36], "0": [2, 4, 5, 7, 18, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 45, 46], "007bff": 37, "01": [23, 27, 30], "01t00": 27, "02": 27, "038": 34, "04023": 5, "05": [27, 30], "06": [27, 30], "08": 27, "09": [23, 27], "1": [2, 4, 5, 7, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 46], "10": [2, 3, 4, 5, 7, 18, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 46], "100": [3, 5, 22, 23, 24, 33, 35, 36, 37, 38, 46], "1000": [1, 3, 7, 11, 13, 25, 37], "10000000": 34, "1024": [1, 2, 3, 7, 37], "103": [22, 35, 38], "104": [22, 35, 38, 46], "1048576": [2, 7], "105": [22, 24, 35, 38], "107": [24, 34], "109": [22, 35, 38, 46], "11": [22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "110": 24, "111": [22, 35, 38, 46], "112": 24, "115": [22, 24, 35, 38], "12": [21, 22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "120": [5, 22, 24, 35, 38], "121": 24, "122": [22, 35, 38], "123": [22, 35, 38, 46], "12371": 5, "125": [5, 24, 27, 46], "128": [4, 5, 7], "13": [22, 24, 26, 27, 29, 31, 33, 35, 38], "130": [22, 35, 38, 46], "135": [22, 35, 38], "136": 24, "14": [22, 23, 24, 26, 27, 30, 31, 35, 38], "140": 24, "145": [22, 24, 35, 38], "149": 46, "15": [22, 23, 24, 26, 27, 30, 31, 33, 35, 38], "150": [22, 33, 35, 38], "158": 46, "159": [22, 35, 38, 46], "16": [23, 24, 26, 27, 31, 34], "160": 46, "161": 46, "162": 46, "163": 46, "165": [27, 46], "17": [23, 24, 26, 27, 31, 33], "18": [23, 24, 26, 27, 31, 33], "19": [24, 26, 27, 46], "190": 46, "1902": 5, "1921": 27, "195": [22, 35, 38], "1970": 27, "1m": [2, 7], "1px": 37, "2": [2, 3, 4, 5, 7, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "20": [2, 5, 18, 22, 24, 26, 27, 32, 33, 35, 37, 38, 46], "200": 46, "20000": [2, 7], "2021": 23, "2026": 27, "205": [22, 35, 38], "2097152": [3, 37], "21": [23, 24, 26, 27, 33, 36], "22": [2, 26, 35], "223": 46, "224": [4, 5, 7], "229": 46, "23": [23, 26, 33, 46], "23076923076923": 24, "2345": 5, "23t12": 27, "24": [23, 26], "25": [3, 5, 22, 24, 26, 27, 33, 35, 36, 37, 38], "256": [4, 5, 7], "25806451612904": 24, "26": [26, 33], "27": 26, "28": [23, 26, 33], "28571428571429": 24, "29": 26, "2mb": [3, 37], "3": [2, 5, 7, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "30": [22, 24, 26, 32, 33, 35, 38], "300": [3, 37], "309": [22, 27, 35, 38], "31": 26, "314": [22, 27, 35, 38], "318": [22, 27, 35, 38], "32": 26, "33": [23, 26], "333333333333332": 33, "333333333333336": 24, "336": 25, "34": [26, 27], "35": [22, 23, 24, 26, 30, 33, 35, 38], "36": [23, 26], "37": 26, "38": 26, "384": [4, 5, 7], "39": [22, 26, 35, 38, 46], "395": [22, 35, 38], "3rd": 5, "3x": 34, "4": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 46], "40": [5, 21, 22, 24, 26, 32, 35, 38], "405": [22, 27, 35, 38], "41": 26, "42": [24, 26, 33, 35], "42857142857143": 33, "43": [22, 26, 33, 35, 38, 45], "44": [22, 26, 35, 38], "45": [22, 24, 26, 27, 33, 35, 38], "4579": 27, "46": [24, 26], "47": 24, "4732": 27, "48": [22, 24, 35, 38], "49": [22, 26, 35, 38], "495": [22, 35, 38], "4mb": 37, "5": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "50": [3, 5, 7, 22, 24, 32, 35, 37, 38], "500": [3, 7], "5000000": 34, "51": [23, 24, 29, 46], "512": [4, 5, 7], "5129": 27, "52": [22, 24, 31, 35, 38], "525": [22, 27, 35, 38], "53": [24, 27], "530": [22, 35, 38], "534": [22, 27, 35, 38], "54": [24, 26, 27], "55": [22, 24, 33, 35, 38], "56": 24, "58": [22, 24, 35, 38], "5811388300841898": 25, "59": [22, 35, 38], "6": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 36, 38, 39, 46], "60": [5, 22, 24, 33, 35, 38], "62": [22, 35, 38], "625": [22, 27, 35, 38], "628": 25, "63": [22, 24, 35, 38], "630": [22, 35, 38], "634": [22, 27, 35, 38], "64": [2, 7, 21, 22, 33, 35, 38], "65": [22, 24, 26, 30, 33, 35, 38], "659": 25, "66": [23, 24], "666666666666668": 33, "66666666666667": 24, "666667": 5, "67": [24, 26], "7": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "70": [22, 24, 33, 35, 38], "71": [24, 26], "72": 24, "73": 23, "732": 27, "75": [5, 22, 24, 35, 38, 46], "752343449": 27, "76": 33, "77777777777777": 24, "78": [22, 23, 35, 38, 46], "785714285714285": 24, "78571428571429": 24, "789": 25, "79": [22, 23, 35, 38], "8": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "80": [5, 22, 24, 33, 35, 38], "81": 23, "82": [22, 35, 38, 46], "83": [22, 24, 35, 38, 46], "833333333333336": 24, "84": [22, 33, 35, 38, 46], "85": [22, 24, 35, 38], "855": 27, "86": 24, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "878": 25, "88888888888889": 24, "89": 25, "8px": 37, "9": [5, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "90": [5, 22, 24, 33, 35, 38], "91": 24, "911": 25, "92": 23, "94": [23, 30], "95": [23, 24, 33, 46], "96": [23, 24], "972": 27, "98": [24, 46], "9814534955893": 25, "A": [0, 1, 2, 4, 5, 7, 8, 14, 16, 18, 23, 25, 29, 33, 35, 36, 41, 45, 47], "AND": [2, 4, 5, 7, 18], "AS": 2, "As": [5, 18, 20, 26, 30, 31, 35], "At": [5, 20], "BY": 18, "Be": 2, "By": [2, 7, 13, 20, 21, 24, 35], "For": [1, 2, 5, 16, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 34, 36, 37, 38, 47], "INTO": [1, 7], "If": [0, 1, 2, 3, 4, 5, 7, 8, 11, 13, 18, 20, 21, 24, 27, 29, 31, 33, 35, 38, 41, 45, 46], "In": [18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 39, 46], "It": [1, 2, 3, 4, 5, 7, 18, 20, 22, 23, 24, 26, 29, 44], "Its": 22, "No": [2, 7], "Not": [2, 4, 7], "OR": [4, 5, 7], "On": [2, 20, 35], "One": [2, 4, 20, 24, 33, 35], "Or": [34, 37], "That": [4, 7], "The": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 39, 46, 47], "Then": 31, "There": [2, 5, 7, 27, 31, 35], "These": [2, 5, 7, 15, 18, 24, 26, 31, 34, 36, 37, 46], "To": [2, 5, 20, 21, 26, 27, 30, 31, 33, 34, 35, 36, 38, 39, 45, 46, 47], "Will": [2, 37], "With": [4, 7, 36, 38, 39], "_": 20, "__add__": [4, 7], "__aiter__": [2, 7, 15], "__and__": [4, 7], "__anext__": [7, 15], "__arrow_c_array__": [1, 7, 15, 39], "__arrow_c_stream__": [1, 2, 36, 39], "__call__": [3, 18], "__datafusion_aggregate_udf__": 18, "__datafusion_catalog_provider__": 47, "__datafusion_logical_extension_codec__": [1, 47], "__datafusion_scalar_udf__": 18, "__datafusion_table_function__": 31, "__datafusion_table_provider__": [1, 20, 45], "__datafusion_task_context_provider__": 1, "__datafusion_window_udf__": 18, "__eq__": [4, 7, 14], "__ge__": [4, 7], "__getitem__": [2, 4, 7], "__gt__": [4, 7], "__init__": [18, 31], "__invert__": [4, 7], "__iter__": [2, 7, 15], "__le__": [4, 7], "__lt__": [4, 7], "__mod__": [4, 7], "__mul__": [4, 7], "__ne__": [4, 7], "__next__": [7, 15], "__or__": [4, 7], "__radd__": [4, 7], "__rand__": [4, 7], "__repr__": [0, 1, 2, 3, 4, 7, 14, 18, 37], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__slots__": [0, 7], "__str__": 18, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 38, "_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_file_sort_ord": 1, "_convert_table_partition_col": 1, "_create_table_udf": 18, "_create_table_udf_decor": 18, "_create_window_udf": 18, "_create_window_udf_decor": 18, "_custom_cell_build": 3, "_custom_header_build": 3, "_default_formatt": 3, "_export_to_c_capsul": 2, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": 18, "_get_javascript": 3, "_inner": [0, 7], "_intern": [0, 1, 2, 4, 7, 13, 14, 15, 16, 17], "_io_custom_table_provid": 31, "_is_pycapsul": 18, "_max_row": 3, "_normalize_input_typ": 18, "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": 18, "_raw_plan": [7, 14], "_raw_schema": 0, "_raw_write_opt": [2, 7], "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 37], "_sum": [18, 31], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_typesh": 18, "_udaf": 18, "_udf": 18, "_udtf": 18, "_udwf": 18, "_validate_bool": 3, "_validate_formatter_paramet": 3, "_validate_positive_int": 3, "_window_fram": 4, "_window_funct": 5, "a0": 26, "a_siz": 26, "ab": [4, 5, 7], "abc": [0, 1, 2, 3, 4, 7, 8, 18], "abi": 20, "abi3": 21, "abi_st": 20, "abil": [35, 46], "abl": [7, 14], "about": [16, 17, 20, 22, 33, 34, 36], "abov": [5, 20, 24, 29, 33, 36, 46], "absolut": [4, 5, 7], "abstract": [0, 8, 18, 26, 31, 35, 36], "accept": [1, 2, 4, 5, 7, 36, 39], "access": [1, 3, 7, 11, 20, 26, 35, 36, 47], "access_key_id": 35, "account": 35, "accum": 18, "accumul": [18, 31], "accur": 34, "achiev": 22, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 20, "across": [3, 18, 20, 26, 34, 37, 46], "act": [7, 14], "action": 36, "activ": [20, 21], "actual": [2, 34, 36], "ad": [2, 20, 35], "adapt": 20, "add": [0, 1, 2, 3, 4, 5, 20, 21, 36], "add_3": 2, "addit": [2, 3, 4, 5, 7, 16, 17, 18, 20, 21, 31, 34, 35, 36, 41, 47], "addition": [20, 23], "adhoc": 21, "adopt": 20, "advanc": [0, 1, 2, 7, 11, 31, 35, 36, 37], "advantag": [20, 21, 22], "affect": [7, 13, 18, 24, 34, 37], "after": [1, 2, 3, 4, 5, 7, 18, 29, 31, 37], "ag": [26, 36], "against": [1, 2, 4, 5, 18, 20, 22, 32, 37], "age_col": 26, "age_in_year": 26, "agg": 2, "aggreg": [1, 2, 4, 5, 7, 18, 23, 28, 34, 36], "aggregatefunct": 4, "aggregateudf": [1, 18], "aggregateudfexport": 18, "agnost": 36, "aim": 38, "aiter": 2, "albert": 26, "algorithm": [2, 5], "alia": [0, 1, 2, 3, 4, 5, 7, 23, 24, 26, 27, 30, 31, 33, 36, 39], "alias": 21, "alic": 29, "align": [2, 37], "all": [0, 1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41, 46], "alloc": [2, 34], "allow": [1, 2, 3, 7, 13, 15, 18, 20, 21, 22, 24, 26, 27, 31, 34, 35, 36, 37, 41, 46], "allow_single_file_parallel": [2, 7], "alpha": [31, 35], "alreadi": [2, 5, 7, 20], "also": [1, 2, 3, 7, 18, 20, 21, 22, 24, 26, 27, 31, 33, 36, 37, 38, 46], "altern": [30, 41, 44], "alternate_a": 2, "alwai": [18, 37], "amazons3": [12, 35], "ambigu": 29, "amount": [2, 18, 36], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 44, 46, 47], "analyt": 33, "analyz": [2, 4, 21], "ani": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 24, 29, 31, 33, 35, 36, 39], "annot": 21, "anoth": [2, 5, 7, 11, 20, 46], "anti": [2, 28], "apach": [1, 2, 4, 5, 7, 20, 21, 22, 39], "apart": 22, "api": [1, 2, 4, 7, 14, 20, 21, 22, 27, 33, 34, 35, 36, 37, 46], "appear": [4, 5, 7, 20], "append": [2, 5, 7, 31, 35], "appli": [2, 3, 7, 15, 20, 37], "applic": [20, 34], "approach": [5, 24, 26, 31, 34, 35, 46], "appropri": [18, 21, 31, 35, 37], "approx_distinct": [5, 24], "approx_median": [5, 24], "approx_percentile_cont": [5, 24], "approx_percentile_cont_with_weight": [5, 24], "approxim": [5, 24], "ar": [1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 46], "arbitrari": [2, 5], "arc": [4, 5, 7, 20, 31, 45, 47], "architectur": 34, "area": 20, "arg": [1, 2, 5, 7, 16, 18, 21], "argument": [2, 4, 5, 7, 18, 24, 31], "arithmet": 36, "around": [5, 21, 35], "arr": 36, "arrai": [1, 2, 3, 4, 5, 7, 18, 24, 28, 31, 35, 36, 39], "array1": 5, "array2": 5, "array_agg": [5, 24], "array_append": [5, 21], "array_cat": [5, 26], "array_concat": [5, 26], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 26], "array_empti": [4, 5, 7, 26], "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, 26], "array_replac": 5, "array_replace_al": 5, "array_replace_n": 5, "array_res": 5, "array_slic": [4, 5, 7], "array_sort": 5, "array_to_str": 5, "array_union": 5, "arriv": 39, "arro3": [18, 31], "arrow": [1, 2, 3, 4, 5, 7, 15, 18, 21, 22, 25, 35, 38, 42], "arrow_cast": [4, 5, 7, 27], "arrow_datafusion_python_root": 21, "arrow_t": 36, "arrow_typ": 20, "arrow_typeof": [4, 5, 7], "arrowarrai": [7, 15], "arrowarrayexport": 1, "arrowarraystream": 2, "arrowschema": [7, 15], "arrowstreamexport": 1, "arxiv": 5, "as_pi": [18, 31], "ascend": [4, 5, 7, 24, 33, 36], "ascii": [4, 5, 7, 13], "asin": [4, 5, 7], "asinh": [4, 5, 7], "ask": 20, "assembl": 1, "assign": [4, 5, 7], "assist": 21, "associ": [0, 1, 4, 5, 7, 20], "assum": [2, 5, 18, 21, 35], "assumpt": 22, "async": [2, 7, 15, 36], "asynchron": [7, 15, 36], "asyncio": 36, "asynciter": 2, "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [22, 35, 38], "attach": [4, 5, 7, 34], "attack": [22, 24, 27, 33, 35, 38, 46], "attempt": [1, 2, 7, 15, 18, 20, 21, 31], "attr_nam": 47, "attribut": 20, "auto": 19, "autoapi": 19, "automat": [1, 2, 7, 34, 36, 37], "avail": [2, 3, 7, 24, 28, 31, 34, 35, 36, 45], "averag": [5, 18, 33], "avg": [5, 18, 24, 33], "avoid": [1, 7, 11, 20], "avro": [1, 7, 11, 35, 36, 37, 42], "await": 36, "awar": [2, 30], "aws_access_key_id": 35, "aws_secret_access_kei": 35, "b": [2, 5, 25, 26, 31, 32, 35, 36, 39], "back": [4, 18, 20, 22, 31, 35, 37, 39], "background": 37, "backward": 3, "balanc": 37, "bar": 34, "base": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 18, 19, 26, 29, 31, 34, 35], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 18, 31], "basic": [18, 23, 28, 30, 31, 34, 35], "basic_typ": 27, "batch": [1, 2, 3, 7, 14, 15, 18, 25, 31, 32, 35, 36, 37, 39], "batch_arrai": 31, "batch_siz": [1, 7], "becaus": [2, 4, 7, 20, 31, 35], "becca": 26, "beedril": [22, 33, 35, 38], "beedrillmega": [22, 33, 35, 38], "been": [1, 3, 20, 31], "befor": [3, 5, 21, 26, 31, 37], "beforehand": [1, 7], "begin": [1, 4, 5, 7, 13, 18, 37], "behavior": [5, 7, 13], "being": 2, "below": [23, 24, 35, 36], "benefit": [2, 7, 34], "best": [1, 2, 7, 18, 20, 31], "beta": 35, "better": [2, 7, 37], "between": [1, 4, 5, 7, 18, 20, 22, 23, 29, 31, 33, 34], "bia": 18, "bias_10": 18, "biased_numb": 18, "biasednumb": 18, "bin": [5, 21], "binari": [4, 5, 7, 14, 20, 47], "binaryexpr": [4, 7], "bind": [7, 18, 20, 21, 22, 35, 38], "bit": [4, 5, 7], "bit_and": [5, 24], "bit_length": [4, 5, 7], "bit_or": [5, 24], "bit_pack": [2, 7], "bit_xor": [5, 24], "bitwis": [5, 26], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [22, 35, 38], "blastoisemega": [22, 35, 38], "blob": [4, 7], "blog": [21, 31], "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": 26, "bob": 29, "bodi": 3, "bool": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 17, 18], "bool_": 31, "bool_and": [5, 24], "bool_or": [5, 24], "boolean": [3, 4, 5, 7, 28], "boost": [2, 7], "bootstrap": 21, "border": 37, "borrow": 20, "both": [2, 4, 5, 7, 18, 20, 21, 26, 29, 31, 36, 46], "bottleneck": 34, "bound": [4, 7, 18, 31, 33, 45, 47], "boundari": [18, 20, 33, 36], "bow": 33, "box": 20, "bracket": 26, "break": 20, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 35, "bug": [20, 22, 24, 33, 35, 38], "build": [3, 4, 5, 7, 20, 22, 23, 24, 33, 36, 47], "build_flag": 21, "build_tabl": [8, 9, 10], "builder": [3, 4, 5, 7, 13, 24, 33], "built": [0, 2, 7, 18, 20, 24, 26, 27, 31], "bulb": 27, "bulbafleur": 27, "bulbasaur": [22, 27, 33, 35, 38], "bulk": 20, "butterfre": [22, 33, 35, 38], "button": 3, "byte": [1, 2, 3, 4, 5, 7, 14, 16], "byte_stream_split": [2, 7], "bz2": [7, 13], "c": [1, 2, 7, 15, 18, 20, 21, 22, 25, 35, 36, 39], "cach": [2, 3, 7], "calcul": [2, 5, 18, 31], "call": [0, 2, 3, 4, 5, 7, 14, 15, 16, 17, 18, 20, 23, 24, 26, 31, 35, 36, 37], "call0": 47, "callabl": [2, 3, 18], "caller": 20, "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "can_retir": 26, "candid": 4, "cannot": [1, 5, 7, 11, 46], "canon": 20, "canonical_nam": [4, 7], "capabl": [34, 46], "capit": [4, 5, 7, 30], "capsul": [2, 20, 47], "capsule_t": 45, "capsuletyp": 18, "captur": 5, "cardin": [4, 5, 7, 26], "carefulli": 20, "cargo": 21, "carlo": 26, "cascad": [0, 7], "case": [2, 4, 5, 7, 18, 20, 24, 27, 30, 31, 33, 34, 35, 46], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 28, 46], "castabl": [4, 7], "catalog": [1, 2, 7, 17, 19, 47], "catalog_list": 0, "catalog_nam": [0, 1], "cataloglist": [0, 1], "catalogprovid": [0, 1, 35, 46, 47], "catalogproviderexport": [0, 1], "catalogproviderlist": [0, 1], "catalogproviderlistexport": 1, "categori": [2, 27], "caterpi": [22, 33, 35, 38], "caus": [1, 7, 21, 33], "cbrt": [4, 5, 7], "cdatainterfac": [1, 2], "ceil": [4, 5, 7], "cell": [3, 37], "cellformatt": 3, "certain": 18, "certainli": 21, "chain": [2, 7, 13], "challeng": 20, "chang": [3, 18, 21, 26, 37], "chansei": 24, "char": 27, "char_length": [4, 5, 7, 27], "charact": [3, 4, 5, 7, 13, 37, 41], "character_length": [4, 5, 7], "characterist": 34, "charizard": [22, 27, 33, 35, 38, 46], "charizardmega": [22, 27, 33, 35, 38, 46], "charli": 29, "charmand": [22, 27, 33, 35, 38], "charmeleon": [22, 27, 33, 35, 38], "check": [5, 26, 27], "checksum": [4, 5, 7], "child": 37, "children": [7, 14], "chr": [4, 5, 7], "chrono": 5, "chunk": [2, 7], "chunkedarrai": 2, "ci": [20, 21], "citycab": 29, "class": [21, 31, 35, 37], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [18, 33], "clean": 21, "clefabl": 33, "clefairi": [24, 33], "click": 3, "clone": [20, 21, 31, 45, 47], "close": 33, "cloud": 34, "co": [4, 5, 7], "coalesc": [2, 5, 27, 29], "coalesce_duplicate_kei": [2, 29], "code": [3, 4, 5, 7, 20, 27, 35], "codebas": 21, "codec": [1, 2, 7, 47], "coeffici": 5, "coerc": 5, "coercion": 2, "col": [2, 3, 4, 5, 7, 18, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 39, 46], "col1": [18, 36], "col2": 36, "col_attack": 24, "col_diff": 31, "col_idx": 3, "col_spe": 24, "col_type_1": 24, "col_type_2": 24, "collaps": [3, 37], "collect": [1, 2, 3, 4, 7, 18, 22, 23, 25, 32, 34, 36, 46], "collect_column": [2, 36], "collect_partit": 2, "collid": [2, 7], "color": [26, 37], "column": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 23, 24, 25, 27, 28, 29, 31, 33, 34, 41, 46], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [2, 4, 7, 13], "column_specific_opt": [2, 7], "com": [4, 5, 7, 21], "combin": [1, 2, 5, 7, 11, 26, 29, 30, 31, 34], "come": [35, 43], "command": [1, 7, 21, 35], "comment": [7, 13, 20], "common": [4, 5, 7, 8, 9, 10, 20, 24, 27, 29, 33, 35, 39], "commun": [20, 21], "compar": [5, 33], "comparison": [4, 7, 24, 36, 46], "compat": [3, 20, 26, 36], "compel": 20, "compet": 34, "compil": [20, 26], "complet": [4, 5, 7, 8, 20, 21, 31, 35, 36, 37, 45, 47], "complex": [2, 22, 27, 34], "complic": 2, "compon": 5, "compos": 5, "composit": 3, "comprehens": 37, "compress": [1, 2, 7, 11, 13], "compression_level": [2, 7], "comput": [2, 4, 5, 7, 18, 20, 26, 31, 36], "concat": 5, "concat_w": 5, "concaten": [5, 26], "concatenated_arrai": 26, "concept": [1, 2, 4, 7, 26, 34, 46], "concis": 21, "concurr": [1, 7, 34, 36], "condit": 28, "config": [1, 7, 20, 21, 34], "config_intern": [1, 7], "config_opt": [1, 7], "configopt": 20, "configur": [1, 3, 7, 13, 20, 21, 46], "configure_formatt": [3, 7, 37], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 23], "consecut": 5, "consequ": 46, "consid": [5, 46], "consider": 37, "consist": [4, 5, 37], "consol": [2, 36], "constraint": 3, "construct": [2, 4, 7, 18, 31, 36, 45], "constructor": [0, 2, 4, 7, 14, 15, 16, 17, 18], "consum": [8, 16, 36, 39], "contain": [2, 3, 4, 5, 7, 13, 14, 18, 19, 20, 21, 24, 26, 29, 31, 37, 41], "content": [21, 28, 37], "context": [0, 3, 5, 7, 11, 14, 16, 19, 20, 31, 32, 34, 37, 39, 46], "continu": [5, 20], "contrast": 29, "contribut": [21, 47], "contributor": 20, "control": [1, 2, 5, 7, 24, 31, 33, 34, 36, 41], "conveni": [18, 35], "convent": [4, 7, 20], "convers": [18, 20, 21, 23, 36, 46], "convert": [0, 1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 18, 20, 23, 25, 26, 27, 31, 32, 36, 46], "copi": [7, 15, 20, 21, 22, 31, 39], "copyto": 4, "core": [2, 4, 7, 20, 34, 35, 47], "corr": [5, 24], "correctli": [2, 18, 20], "correl": 5, "correspond": [5, 29], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": [22, 31], "costli": 18, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [2, 4, 7, 20, 35], "count": [2, 5, 7, 24, 25, 34, 36], "count_star": 5, "counterpart": [5, 20], "coupl": [20, 33], "covar": 5, "covar_pop": [5, 24], "covar_samp": [5, 24], "covari": 5, "cover": [23, 27, 34], "cpython": [18, 21], "cr": [31, 45, 47], "crate": [20, 47], "creat": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 31, 32, 34, 39, 46], "create_datafram": [1, 31, 35], "create_dataframe_from_logical_plan": 1, "create_namespace_if_not_exist": 35, "create_t": 35, "createcatalog": 4, "createcatalogschema": 4, "created_bi": [2, 7], "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "creation": 36, "credenti": 35, "criteria": [5, 33], "crlf": [7, 13], "css": [3, 37], "cstream": 20, "cstring": 20, "csv": [0, 1, 2, 7, 11, 13, 20, 22, 24, 27, 33, 34, 35, 36, 37, 38, 42, 46], "csvreadopt": [1, 7, 11, 13, 41], "ctx": [0, 1, 2, 5, 7, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "cube": [4, 5, 7], "cubon": 24, "cume_dist": [5, 18, 33], "cumul": 5, "curr_valu": 31, "current": [0, 2, 3, 4, 5, 7, 14, 18, 20, 27, 31, 33, 37], "current_d": 5, "current_tim": 5, "custom": [1, 3, 7, 8, 14, 20, 29, 31, 34, 36, 42, 46], "custom_css": [3, 37], "custom_formatt": 3, "custom_html": 37, "customer_id": 29, "d": [2, 18, 39], "dai": [5, 27], "dant": 26, "dark": [24, 37], "data": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": [5, 7, 13, 20], "data_type_or_field_to_field": 18, "data_types_or_fields_to_field_list": 18, "databas": [0, 7, 26, 34], "dataflow": [7, 14], "datafram": [0, 1, 3, 4, 5, 6, 7, 11, 14, 15, 18, 19, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 46], "dataframe_formatt": [7, 19], "dataframehtmlformatt": 3, "dataframewriteopt": [2, 7], "datafus": [19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "datafusion_catalog": 47, "datafusion_catalog_provid": 47, "datafusion_df": 35, "datafusion_logical_extension_codec": 47, "datafusion_sql": 17, "datafusion_table_funct": 31, "datafusion_table_provid": [20, 45], "dataset": [0, 1, 3, 7, 27, 33, 34, 35, 37, 38], "datasourc": 8, "datastructur": [4, 7], "datatyp": [1, 2, 4, 7, 11, 13, 18, 31], "datatypemap": [4, 7, 20], "date": [5, 27, 36], "date32": 5, "date_bin": 5, "date_part": [5, 27], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "ddd": 37, "ddl": [1, 7], "dealloc": 4, "debug": 20, "decid": [18, 20], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": 18, "def": [2, 18, 22, 31, 35, 36, 37, 38, 46], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 13, 17, 18, 20, 21, 29, 31, 33, 34, 35, 37, 46], "default_max_infer_schema": [1, 7, 13], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [22, 27, 35, 38, 46], "defin": [0, 1, 2, 4, 7, 18, 20, 21, 27, 28, 33], "definit": [1, 4, 7, 18, 20, 23, 31], "degre": [4, 5, 7], "delet": [1, 7], "delimit": [1, 5, 7, 11, 13, 41], "delta": 20, "delta_binary_pack": [2, 7], "delta_byte_arrai": [2, 7], "delta_length_byte_arrai": [2, 7], "delta_t": 35, "deltalak": 35, "deltat": 35, "demand": [36, 39], "demonstr": [1, 31, 33, 34, 38, 39], "dens": 5, "dense_rank": [5, 18, 33], "depend": [5, 20, 24, 31, 33, 47], "deprec": [1, 2, 3, 5, 6, 33], "deprecationwarn": 3, "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "deriv": 20, "descend": 5, "describ": [2, 5, 20, 24, 25, 31, 35], "describet": 4, "descript": [1, 5, 18], "deseri": 16, "deserialize_byt": 16, "design": [20, 28], "desir": 5, "detail": [2, 4, 5, 7, 18, 21, 23, 25, 36, 41], "determin": [0, 2, 4, 5, 7, 18, 31], "dev": 21, "develop": [20, 35], "deviat": 5, "df": [1, 2, 4, 5, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 46], "df1": 36, "df2": 36, "df_filter": 32, "df_view": 32, "dfschema": 7, "dialect": [17, 46], "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 26, 32, 35, 36, 46], "dictionary_en": [2, 7], "dictionary_page_size_limit": [2, 7], "differ": [2, 4, 5, 7, 13, 14, 18, 20, 27, 31, 34, 35, 36, 37], "difficult": 20, "digest": 5, "dimens": [4, 5, 7], "dimension": 2, "directli": [3, 4, 5, 16, 18, 20, 35, 36, 39, 47], "directori": [1, 7, 21], "disabl": [1, 7, 29, 37], "discard": 2, "discuss": [20, 35], "disk": [1, 7, 9, 10], "displai": [3, 7, 14, 23, 25, 32, 36, 38], "display_graphviz": [7, 14], "display_ind": [7, 14], "display_indent_schema": [7, 14], "display_nam": [4, 7], "distanc": 5, "distinct": [2, 4, 5, 7, 35], "distinctli": 20, "distinguish": 20, "distribut": [5, 34], "div": 37, "divid": [5, 34], "divis": [4, 5, 7], "divisor": 5, "dml": [1, 7], "dmlstatement": 4, "do": [0, 1, 2, 7, 18, 20, 21, 23, 24, 31, 33, 35, 45, 46], "doc": [1, 2, 5, 17], "docstr": 21, "document": [1, 2, 4, 5, 7, 18, 19, 20, 21, 23, 34, 36, 38, 41], "doe": [2, 3, 5, 7, 13, 18, 20, 21, 33, 35], "doesn": 18, "dominant_typ": 27, "done": [2, 24, 31, 35], "dot": [7, 14], "doubl": [2, 30, 39], "double_func": 18, "double_it": 18, "double_udf": 18, "down": [20, 33, 35], "downcast": [20, 47], "download": [23, 30, 38], "downstream": 39, "dragon": [22, 24, 27, 33, 35, 38], "dragonair": 33, "dratini": 33, "drop": [1, 2, 7, 36], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [2, 37], "duckdb": 17, "due": [1, 7, 11, 21, 47], "duplic": [2, 4, 5, 7, 28, 37], "dure": [18, 21], "dyn": 47, "dynamic_lookup": 21, "e": [4, 5, 7, 18, 31], "each": [1, 2, 4, 5, 7, 18, 20, 21, 24, 27, 33, 36, 37], "eagerli": 36, "earli": 20, "easi": [20, 43], "easier": [20, 27, 38], "easili": [4, 7, 20], "east": 35, "effect": [30, 38], "effici": 34, "effort": [2, 7, 20], "either": [1, 2, 4, 7, 18, 20, 24, 35, 36, 46], "electr": [24, 33], "element": [2, 3, 4, 5, 7, 26], "ellipsi": [2, 18], "els": [31, 47], "else_expr": 4, "embed": [2, 7], "employe": 26, "empti": [1, 4, 5, 7, 13, 14, 24, 26, 36], "empty_t": 1, "emptyrel": 4, "enabl": [1, 2, 7, 20, 34, 36, 37], "enable_cell_expans": [3, 7, 37], "enable_url_t": 1, "encod": [2, 5, 7, 16], "encount": 20, "encourag": 21, "end": [0, 2, 4, 5, 7, 14, 15, 17, 18, 33, 34], "end_bound": [4, 7], "end_posit": 5, "ends_with": 5, "engin": [1, 7, 22, 23], "enough": 18, "ensur": [3, 7, 8, 13, 20, 34], "ensure_expr": 4, "ensure_expr_list": 4, "entir": [2, 5, 7, 18, 24, 31, 33, 36], "entri": [2, 5, 24, 33, 36], "enum": [2, 4, 7, 18], "enumer": 18, "environ": [21, 22, 34, 36, 37], "equal": [2, 4, 5, 7, 14], "equival": [2, 5, 18, 20, 24, 33, 36], "error": [1, 3, 4, 7, 13, 21], "escap": [7, 13, 41], "especi": 21, "essenti": [7, 15, 25], "etc": [1, 3, 4, 7, 9, 10, 18], "eval_rang": 18, "evalu": [2, 4, 5, 7, 18, 23, 24, 26, 31, 33, 34, 36], "evaluate_al": [18, 31], "evaluate_all_with_rank": [18, 31], "even": [1, 3, 7, 20, 29, 37], "evenli": 34, "event": 36, "everi": [5, 18], "everyth": [9, 10], "ex": [4, 7, 30], "exact": 20, "exactli": [2, 33], "examin": [4, 7], "exampl": [1, 2, 3, 4, 5, 7, 14, 18, 20, 23, 24, 26, 27, 29, 31, 32, 33, 35, 36, 38, 45, 46, 47], "exce": 3, "excel": 20, "except": [2, 4, 5, 7, 26, 46], "except_al": 2, "exclud": [2, 29], "execut": [1, 2, 4, 7, 13, 18, 20, 21, 22, 23, 34, 39], "execute_stream": [2, 7, 15, 36], "execute_stream_partit": [2, 36], "execution_plan": 2, "executionplan": [1, 2, 7, 14], "exeggcut": 24, "exist": [0, 1, 2, 3, 4, 5, 7, 20, 36], "exp": [4, 5, 7], "exp_smooth": 31, "expand": [2, 3, 37], "expans": [3, 37], "expect": [4, 5, 7, 13, 18, 20, 26, 31, 33, 36, 46], "expens": 2, "experi": 21, "explain": [2, 4], "explan": [2, 20, 23], "explicit": [4, 34, 36, 37], "explicitli": [18, 20, 36], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 31, "export": [1, 2, 7, 15, 18, 20, 21, 35, 42], "expos": [2, 20, 31, 35, 36, 45], "expr": [1, 2, 5, 7, 11, 13, 18, 19, 31, 33, 36], "expr1": 5, "expr2": 5, "expr_type_error": 4, "express": [1, 2, 4, 5, 7, 13, 18, 24, 27, 28, 31, 33, 47], "exprfuncbuild": [4, 7], "extend": [5, 8, 20], "extens": [1, 3, 4, 7, 11, 13, 37, 41, 47], "extern": [0, 7], "extract": [3, 4, 5, 7, 27, 47], "extraenv": 21, "f": [4, 23, 24, 26, 27, 33, 35, 36, 46], "f2f2f2": 37, "face": 20, "fact": [20, 31], "factor": 34, "factori": [4, 5, 7, 18], "fail": [2, 21, 27], "fair": [1, 7], "fairi": [24, 33], "fals": [2, 3, 4, 5, 7, 13, 18, 20, 21, 22, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 45], "familiar": 21, "far": 2, "faster": [2, 5, 7, 18, 34], "featur": [2, 5, 7, 20, 21, 29, 35, 39], "fetch": 21, "few": [20, 21, 23], "fewer": 3, "ffi": [0, 1, 7, 18, 35, 47], "ffi_": 20, "ffi_catalogprovid": 47, "ffi_logical_codec_from_pycapsul": 47, "ffi_logicalextensioncodec": [1, 47], "ffi_provid": 20, "ffi_tablefunct": 31, "ffi_tableprovid": [20, 45], "ffi_taskcontextprovid": 1, "field": [2, 3, 5, 7, 13, 18, 20, 27, 31], "fight": [24, 33], "file": [1, 2, 7, 9, 10, 11, 13, 16, 20, 21, 22, 23, 30, 34, 36, 37, 38, 40, 41, 43, 44], "file_compression_typ": [1, 7, 11, 13], "file_extens": [1, 7, 11, 13], "file_partition_col": [1, 7, 11], "file_sort_ord": [1, 7, 11, 13], "filenam": 21, "filetyp": 4, "fill": [2, 4, 5, 7, 13, 27, 33], "fill_nan": [4, 7], "fill_nul": [2, 4, 7, 28], "filter": [2, 4, 5, 7, 13, 14, 23, 26, 32, 33, 35, 36], "final": [23, 31], "find": [5, 20, 21, 23, 24, 33], "find_in_set": 5, "finer": 36, "finish": [4, 24], "fire": [22, 24, 27, 35, 38], "first": [1, 2, 4, 5, 7, 20, 21, 23, 24, 26, 33, 35, 36, 38], "first_1": 24, "first_2": 24, "first_arrai": 5, "first_nam": 36, "first_valu": [5, 18, 24], "fix": [0, 18], "flag": [3, 5, 17, 18, 21], "flat": 4, "flatten": [4, 5, 7], "fleur": 27, "flexibl": 36, "float": [2, 5, 7, 18, 31, 37, 46], "float64": [18, 27, 31], "floor": [4, 5, 7], "flow": [7, 14], "flower": 27, "fly": [22, 24, 33, 35, 38], "fn": [31, 45, 47], "focus": 20, "folder": [20, 31, 35, 45], "follow": [0, 1, 2, 4, 5, 7, 18, 20, 21, 23, 24, 26, 27, 29, 31, 33, 35, 38, 46], "foo": 34, "footer": 3, "fora": [4, 7], "foreign": [20, 47], "foreign_provid": 20, "foreigntableprovid": 20, "form": [2, 5, 7, 14, 24, 35], "format": [1, 2, 3, 4, 5, 6, 7, 13, 14, 23, 34, 35, 36, 40, 43, 46], "format_argu": 5, "format_html": [3, 37], "format_str": 3, "formatt": [2, 3, 5, 7], "formatted_valu": 3, "formatter_class": 37, "formattermanag": 3, "formatting_context": 37, "forth": 39, "found": [2, 5, 21, 33, 41, 45, 47], "four": 31, "frame": [2, 4, 5, 7, 18, 25, 31], "frame_bound": 4, "framework": 21, "free": [1, 7], "frequent": [20, 21], "fresh": 37, "from": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47], "from_arrai": [31, 35, 36], "from_arrow": [1, 35, 36, 39], "from_arrow_t": 1, "from_dataset": [0, 7], "from_json": 16, "from_panda": [1, 36], "from_polar": [1, 35], "from_proto": [7, 14], "from_pycapsul": 18, "from_pydict": [1, 25, 26, 29, 31, 32, 35, 39], "from_pylist": [1, 29, 35], "from_str": 2, "from_stream": 36, "from_substrait_plan": 16, "from_unixtim": [4, 5, 7], "from_val": 5, "frozen": [20, 21], "full": [2, 5, 28, 36, 37, 46], "full_nam": 36, "fulli": [21, 34], "func": [1, 2, 18, 31], "function": [1, 2, 12, 15, 19, 20, 23, 25, 28, 34, 35, 37, 44, 47], "function_to_impl": [18, 31], "further": [5, 20], "futur": [18, 20, 33], "g": [5, 18], "gamma": 35, "gather": 36, "gcd": 5, "gener": [4, 7, 14, 15, 16, 18, 19, 20, 21, 22, 35, 36, 38, 46], "geodud": 33, "get": [2, 3, 7, 14, 16, 18, 20, 21, 26, 29, 35, 36, 37, 46, 47], "get_cell_styl": 3, "get_default_level": 2, "get_formatt": [3, 37], "get_frame_unit": [4, 7], "get_header_styl": 3, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 18, "get_table_styl": 37, "get_upper_bound": [4, 7], "get_value_styl": 37, "getattr": 47, "getenv": 35, "ghost": 24, "gil": 22, "git": 21, "github": [4, 5, 7, 21], "give": [5, 24, 30, 38], "given": [0, 1, 3, 4, 5, 7, 18, 31], "glanc": 20, "global": [1, 2, 3, 7, 11, 36, 37], "global_ctx": 1, "go": [20, 25, 27], "goe": 20, "gold": 5, "good": [20, 21], "googlecloud": [12, 35], "graph": [7, 14], "graphic": [7, 14], "graphviz": [7, 14], "grass": [22, 24, 27, 33, 35, 38], "great": 21, "greater": [4, 5, 7], "greatest": 5, "greatli": [31, 34], "greedi": [1, 7], "green": 26, "grimer": 33, "ground": 24, "group": [1, 2, 4, 5, 7, 11, 18, 23, 24, 25, 33, 36], "group_bi": [2, 24], "groupingset": 4, "guarante": [2, 7, 20], "guid": [1, 2, 28, 34, 36, 37, 38], "guidanc": 36, "gz": 41, "gzip": [2, 7, 13, 41], "ha": [1, 2, 3, 5, 7, 13, 18, 20, 26, 30, 31, 35, 46], "handl": [3, 15, 24, 28, 33, 34, 46], "happen": 21, "hardwar": 34, "has_head": [1, 7, 11, 13], "has_mor": [2, 3, 37], "hasattr": 47, "hash": [2, 4, 5, 7, 34], "haskel": 25, "have": [1, 2, 5, 7, 11, 13, 16, 18, 20, 21, 22, 24, 29, 31, 33, 34, 35, 41, 45, 46], "head": 2, "header": [1, 2, 3, 7, 11, 13, 41], "healthi": 21, "heavy_red_unit": 26, "height": [3, 37], "help": [1, 3, 7, 11, 20, 21, 26, 27, 34, 37], "helper": [2, 4, 18, 20, 47], "henc": 18, "here": [2, 5, 7, 20, 27, 30, 31, 33, 34, 37, 38, 39, 46], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 35, "high": [4, 7], "higher": [2, 4, 7, 34], "highli": 31, "highlight": 38, "hint": [1, 18, 21], "hive": 46, "homebrew": 21, "hood": 35, "host": 1, "how": [1, 2, 4, 5, 7, 18, 20, 24, 25, 28, 29, 31, 33, 34, 35, 36, 37, 38, 41, 46], "howev": [18, 31], "hp": [22, 35, 38], "html": [1, 2, 3, 5, 7, 17], "html_formatt": [3, 7, 19, 37], "http": [1, 2, 4, 5, 7, 12, 14, 16, 17, 35], "hyperbol": [4, 5, 7], "i": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 46, 47], "ic": 24, "iceberg_t": 35, "id": [1, 2, 3, 21, 29, 36], "id_for_stud": 2, "ideal": 20, "ident": [2, 29, 35], "identifi": [1, 4, 7, 20, 30, 34, 35], "idl": [2, 7], "idx": [18, 31], "ignor": [5, 7, 13, 18, 21, 24, 33], "ignore_nul": [24, 33], "ilik": 4, "illustr": 20, "immut": [18, 20, 31], "impact": [2, 34], "impl": [31, 45, 47], "implement": [0, 1, 2, 3, 7, 18, 21, 31, 35, 36, 37, 39, 45, 46, 47], "import": [1, 2, 3, 4, 7, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "improv": [1, 3, 7, 18, 31, 34, 35, 37, 47], "in_list": [5, 27], "includ": [1, 2, 3, 4, 7, 18, 20, 23, 24, 27, 29, 31, 34, 36, 37, 47], "include_rank": [18, 31], "inclus": [1, 4, 5, 7], "incomplet": 41, "incorpor": 31, "increas": [1, 2, 3, 7, 24, 34], "increment": [2, 18, 20, 31, 39], "incur": 31, "indent": [7, 14], "independ": [5, 33], "index": [2, 3, 4, 5, 7, 17, 18, 26], "indic": [3, 4, 5, 7, 26], "individu": [2, 7, 26, 33], "infer": [1, 7, 11, 13], "inform": [1, 2, 4, 7, 8, 16, 17, 18, 20, 31, 34, 36], "information_schema": [1, 7], "infrastructur": 34, "inherit": 35, "init": 21, "initcap": [4, 5, 7], "initi": [2, 3, 4, 5, 7, 13], "inlin": [18, 20], "inlist": 4, "inner": [2, 20, 28, 36, 47], "input": [1, 2, 4, 5, 7, 11, 13, 14, 18, 19, 26, 31], "input_field": 18, "input_item": [8, 9, 10], "input_typ": 18, "inputsourc": 8, "insert": [1, 2, 7], "insert_oper": [2, 7], "insertop": [2, 7], "insight": 34, "instanc": [1, 2, 3, 4, 5, 18, 20, 23], "instanti": [2, 7, 18], "instead": [1, 3, 4, 5, 7, 20, 31, 34, 35, 36, 41, 47], "insubqueri": 4, "insuffici": 35, "int": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 31, 46], "int32": [18, 27], "int64": [18, 25, 27, 31], "integ": [3, 4, 5, 7, 18, 26, 31], "integr": [2, 20, 35, 36, 38, 45], "intend": [7, 13, 20], "intens": 34, "interact": [3, 20, 26, 35], "intercept": 5, "interchang": [7, 15, 43], "interest": 26, "interfac": [0, 1, 2, 5, 7, 15, 20, 22, 23, 31, 33, 35, 36, 39, 45, 47], "interior": 20, "intermedi": 18, "intern": [0, 4, 7, 13, 20, 31], "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 21, "introduc": [21, 23, 34, 46], "intuit": 20, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 18, "invok": 39, "io": [1, 2, 7, 16, 19, 37], "io_avro": 36, "io_csv": 36, "io_json": 36, "io_parquet": 36, "ipc": 2, "is_caus": 18, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 26, "is_follow": 4, "is_not_nul": [4, 7, 24], "is_nul": [4, 7, 31], "is_null_arr": 31, "is_preced": 4, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [3, 5, 21, 33, 37], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "item": 4, "iter": [2, 4, 7, 15, 36], "its": [2, 5, 7, 14, 18, 20, 22, 33, 37], "itself": 26, "ivi": 27, "ivyfleur": 27, "ivysaur": [22, 27, 33, 35, 38], "java": 25, "javascript": [3, 37, 43], "jigglypuff": 33, "join": [1, 2, 4, 7, 14, 28, 34, 36], "join_kei": [2, 29], "join_on": [2, 36], "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 16, 35, 36, 37, 42], "jupyt": [3, 36, 38], "jupyterlab": 38, "just": [2, 37], "justif": 20, "jynx": 24, "kakuna": [22, 33, 35, 38], "keep": [20, 21, 32, 35, 37], "kei": [1, 2, 3, 4, 7, 20, 23, 26, 28, 34, 36], "kept": 2, "kind": [0, 7, 20, 21], "know": [1, 7], "known": 26, "kv_meta": [2, 7], "kwarg": [3, 7, 8, 9, 10], "l179": [4, 7], "lab": 38, "label": 2, "lack": 22, "lag": [5, 18, 33], "lambda": 18, "languag": [1, 7, 14, 20], "larg": [2, 3, 7, 27, 34, 37], "large_trip_dist": 30, "larger": [2, 7], "last": [4, 5, 7, 33], "last_nam": 36, "last_valu": [5, 24, 33], "last_with_nul": 33, "last_wo_nul": 33, "latenc": 34, "later": [35, 38, 45], "latest": [5, 17, 20], "latter": 1, "lazi": [23, 36], "lazili": [2, 36, 39], "lcm": 5, "lead": [2, 5, 18, 20, 31, 33, 35], "leaf": [7, 14], "leak": 22, "learn": [20, 25, 33], "least": [5, 18, 24, 29, 31, 37], "leav": [7, 14, 20], "left": [2, 5, 27, 28, 37], "left_on": [2, 29], "leftmost": 5, "legendari": [22, 35, 38], "len": [18, 27], "length": [2, 3, 4, 5, 7, 13, 18], "less": [4, 5, 7, 13], "lesson": 20, "let": [20, 31, 34, 39, 45, 47], "letter": [4, 5, 7, 30], "level": [2, 4, 5, 7, 20, 35], "levenshtein": 5, "leverag": [2, 7, 20], "lib": 21, "lib_dir": 21, "lib_nam": 21, "librari": [7, 8, 15, 20, 22, 38, 39, 45, 47], "lieu": 18, "lightweight": 43, "like": [1, 2, 3, 4, 5, 7, 8, 20, 21, 22, 27, 31, 35, 36, 46, 47], "limit": [2, 3, 4, 5, 21, 23, 25, 27, 34, 36, 37, 46], "line": [1, 2, 7, 11, 13, 14, 20, 41], "linear": [5, 24], "link": [21, 33], "lint": 21, "linter": 21, "list": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 24, 31, 32, 33, 35, 36], "list_": 31, "list_append": [5, 21], "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, "lit": [2, 4, 5, 7, 21, 23, 24, 26, 30, 33, 36, 39], "liter": [2, 4, 7, 27, 28, 30, 31, 32, 36], "literal_with_metadata": [4, 7], "ll": [27, 29, 33], "ln": [4, 5, 7], "load": [3, 34, 35], "load_catalog": 35, "local": [1, 20, 21, 34], "localfilesystem": [12, 35], "locat": [1, 9, 19], "locationinputplugin": [9, 10], "lock": 22, "log": [5, 27], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [1, 2, 4, 7, 14, 16, 17, 23, 24, 30, 36, 37, 47], "logical_plan": [2, 16], "logicalextensioncodec": 47, "logicalplan": [1, 2, 4, 7, 14, 16, 17], "lonely_trip": 30, "long": [3, 20], "long_tim": 26, "longer": [5, 37, 47], "look": [20, 21, 34], "loop": 36, "loss": 46, "low": [4, 7, 24], "low_passenger_count": 30, "lower": [4, 5, 7, 18, 27, 30], "lowercas": [2, 4, 5, 7], "lowest": [20, 24], "lpad": 5, "ltrim": [4, 5, 7], "lz4": [2, 7], "lz4_raw": [2, 7], "lzo": [2, 7], "m": [21, 31], "mac": 21, "machin": 21, "machop": 33, "made": 30, "magikarp": 24, "magnemit": 33, "mai": [1, 2, 5, 7, 11, 13, 18, 20, 31, 34, 35, 37, 38, 46], "main": [1, 23, 36], "maintain": [1, 2, 20, 23, 46], "major": [21, 22, 47], "make": [5, 20, 21, 22, 27], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [1, 3, 7, 21, 34], "mani": [3, 20, 24, 31, 34, 36, 37], "manipul": [1, 7, 27, 36], "mankei": 33, "manner": 20, "manual": [21, 34], "map": [2, 46], "match": [2, 4, 5, 7, 13, 27, 29, 34], "materi": [2, 36, 39], "math": 24, "mathemat": [28, 30, 36], "maturin": 21, "max": [5, 24, 25], "max_cell_length": [3, 7, 37], "max_cpu_usag": 34, "max_height": [3, 7, 37], "max_memory_byt": [3, 37], "max_row": [3, 37], "max_row_group_s": [2, 7], "max_width": [3, 7, 37], "maximum": [1, 2, 3, 5, 7, 11, 13, 37], "maximum_buffered_record_batches_per_stream": [2, 7], "maximum_parallel_row_group_writ": [2, 7], "md5": [4, 5, 7], "mean": [3, 5, 20, 21, 25], "meaning": [5, 30], "meant": [7, 14], "measur": 34, "medal": 5, "median": [5, 24, 25], "member": 21, "memoiz": 18, "memori": [0, 1, 2, 3, 7, 14, 18, 22, 34, 39], "memory_catalog": [0, 7, 35], "memory_schema": [0, 35], "memtabl": 47, "mention": 26, "merg": [18, 29, 31], "messag": [3, 37], "metadata": [1, 2, 4, 5, 7, 11, 18, 31], "metapod": [22, 24, 33, 35, 38], "method": [0, 1, 2, 3, 5, 7, 11, 13, 18, 20, 23, 25, 27, 29, 31, 32, 36, 37, 47], "metric": 2, "metrorid": 29, "microsecond": 5, "microsoftazur": [12, 35], "might": [3, 18, 24, 37], "millisecond": 5, "min": [5, 24, 25], "min_row": [3, 37], "minimum": [1, 2, 3, 5, 7, 37], "miss": [2, 7, 13, 21, 28], "mode": [2, 7], "model": 2, "modifi": [2, 7, 23], "modify_df": 2, "modul": [6, 20, 33, 36, 37], "modulo": [4, 7], "moment": [2, 20], "monitor": 34, "month": [5, 27], "more": [1, 2, 3, 4, 7, 16, 18, 20, 21, 23, 24, 27, 31, 34, 36], "most": [18, 20, 26, 33, 38], "mostli": 21, "much": [18, 21, 37], "multi": 22, "multipl": [1, 2, 3, 4, 5, 7, 18, 24, 27, 29, 31, 33, 34, 35, 36, 37], "must": [1, 2, 3, 4, 5, 7, 13, 18, 20, 24, 26, 30, 31, 33, 39, 45, 46, 47], "mutabl": 21, "mutat": 20, "my": 37, "my_capsul": 20, "my_catalog": 35, "my_catalog_nam": 35, "my_delta_t": 35, "my_provid": 20, "my_schema": 35, "my_schema_nam": 35, "my_tabl": [32, 35], "my_udaf": 31, "myaccumul": 31, "mycatalogprovid": 47, "myformatt": 37, "mysql": [17, 46], "mystyleprovid": 37, "mytablefunct": 31, "mytableprovid": [20, 45], "myusernam": 21, "n": [2, 5, 7, 41], "n_column": [2, 7], "n_file": [2, 7], "n_row_group": [2, 7], "name": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 45, 46, 47], "name_pair": 5, "named_expr": 2, "named_param": 1, "named_struct": [5, 21], "nan": [4, 5, 7], "nanoarrow": [18, 31], "nanosecond": 5, "nanvl": 5, "narrowli": 20, "nativ": [20, 35], "natur": [4, 5, 7], "nearest": [4, 5, 7], "nearli": [34, 35], "necessari": [20, 35, 47], "need": [0, 1, 2, 3, 4, 7, 11, 13, 18, 20, 21, 31, 33, 34, 35, 36, 37, 38, 46, 47], "neg": [4, 5], "negat": [4, 5, 7, 27], "nest": [1, 4, 34], "network": 34, "never": 2, "new": [1, 2, 3, 4, 5, 7, 17, 18, 20, 21, 26, 28, 31, 45, 46, 47], "new_bound": [20, 45], "new_nam": 2, "new_with_ffi_codec": 47, "newlin": [7, 13], "newlines_in_valu": [7, 13], "next": [5, 7, 15], "nice": 37, "node": [7, 14], "non": [2, 4, 5, 24, 33, 36], "none": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 20, 31, 33, 35, 37, 45, 46, 47], "normal": 24, "not_red_unit": 26, "notat": [26, 43], "note": [1, 2, 4, 7, 23, 26, 35, 36], "notebook": [3, 36, 37, 38], "now": [5, 18, 20, 27, 29, 32, 47], "nr": 25, "nth": 37, "nth_valu": [5, 18, 24], "ntile": [5, 33], "null": [2, 4, 5, 7, 13, 25, 27, 29, 31, 39, 41], "null_count": 25, "null_first": 5, "null_regex": [7, 13], "null_treat": [4, 5, 7, 24, 33], "nullabl": [2, 7, 13, 18, 31], "nullif": [5, 27], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 24, 33], "num": [2, 5, 34, 46], "num_centroid": 5, "num_el": 26, "num_row": [18, 31], "number": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 21, 26, 27, 31, 33, 34, 37, 46], "numer": [2, 3, 4, 5, 7, 34], "nvl": 5, "o": [34, 35, 36, 37], "obj": 47, "object": [1, 2, 3, 4, 7, 12, 13, 15, 16, 18, 20, 26, 31, 34, 36, 37, 39, 43, 46, 47], "object_stor": [7, 19, 35], "objectstor": 1, "obtain": [8, 22, 36], "obviou": 20, "occasion": 20, "occur": [18, 36], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 33, "offend": 21, "offer": [27, 36, 46], "offici": 20, "offset": [2, 4], "often": [33, 34], "ok": 47, "old": 2, "old_nam": 2, "older": 35, "olymp": 5, "omit": 29, "on_expr": 2, "onc": [3, 5, 8, 18, 31, 37, 39, 45], "one": [2, 4, 5, 7, 18, 20, 24, 29, 31, 33, 35, 36], "onli": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 20, 24, 27, 29, 31, 33, 36, 37], "onlin": [1, 2, 4, 5, 7, 18, 20, 34], "op": [2, 4, 7], "open": [3, 21], "oper": [1, 2, 4, 5, 7, 14, 15, 18, 20, 22, 24, 26, 30, 31, 33, 34, 35, 37], "operand": [4, 7], "operatefunctionarg": 4, "opt": [20, 21], "optim": [2, 18, 20, 34], "optimized_logical_plan": 2, "option": [0, 1, 2, 4, 5, 7, 11, 18, 19, 21, 23, 24, 27, 34, 35, 36, 37, 38, 41, 46], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 13, 18, 20, 26], "order_bi": [4, 5, 7, 24, 33], "org": [1, 2, 5, 7, 14], "organ": 35, "origin": [2, 4, 5, 7, 31, 35, 46], "other": [1, 2, 3, 4, 5, 7, 11, 14, 18, 20, 21, 22, 23, 26, 28, 31, 34, 36, 37, 41], "other_df": 2, "other_id": 2, "otherwis": [4, 5, 7], "our": [20, 21, 24, 35, 38], "out": [2, 5, 7, 20, 24, 25, 26, 27, 29, 30, 33, 38, 39, 46], "output": [2, 3, 4, 7, 14, 18, 21, 24, 26, 31, 32, 37], "over": [2, 3, 4, 7, 15, 18, 20, 22, 24, 33, 35, 36, 37, 41], "overhead": 18, "overlai": 5, "overlap": 5, "overrid": [2, 7, 31], "overridden": 24, "overwrit": [2, 7], "own": [8, 31, 37, 47], "owner": 0, "owner_nam": 0, "pa": [1, 4, 7, 15, 18, 31, 35, 36, 39], "packag": [5, 20, 21], "pad": [5, 37], "page": [2, 7, 19, 20, 31], "pair": 5, "panda": [1, 2, 23, 25, 35, 36, 46], "pandas_df": [35, 36], "para": 33, "parallel": [1, 2, 7, 13, 34], "param_attack": 46, "param_nam": 3, "param_valu": [1, 46], "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 21, 26, 28, 29, 37, 46, 47], "parameter": 1, "parasect": 33, "parquet": [0, 1, 2, 7, 11, 20, 22, 23, 30, 34, 35, 36, 37, 42], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "pars": [1, 2, 7, 13, 16], "parse_sql_expr": 2, "parser": 46, "part": [2, 5, 7, 27], "particular": [5, 34], "partit": [1, 2, 4, 5, 7, 11, 13, 14, 18, 24, 34, 36], "partition_bi": [2, 4, 5, 7, 33], "partition_count": [7, 14], "pass": [1, 2, 18, 20, 21, 25, 26, 31, 34, 35, 36, 46], "passenger_count": 30, "path": [1, 2, 7, 11, 16, 21, 35, 36], "path_to_t": 35, "pathlib": [1, 2, 7, 11, 16], "pattern": [2, 5, 7, 13, 20, 34], "pc": 18, "pcre": 5, "pd": [35, 36], "peopl": 5, "per": [2, 3, 7, 13, 18, 33, 36, 37], "percent": 5, "percent_rank": [5, 18, 33], "percentag": 5, "percentil": 5, "perform": [1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 31, 33, 34, 35], "period": 20, "persist": 46, "person": 21, "physic": [2, 7, 14, 23], "pi": 5, "pick": 5, "pinsir": 33, "pip": [22, 38], "pixel": [3, 37], "pl": 35, "place": [5, 20, 21, 38, 46], "placehold": [4, 46], "plain": [2, 4, 7, 36, 37], "plain_dictionari": [2, 7], "plan": [1, 2, 4, 7, 16, 17, 18, 19, 22, 23, 36], "plan_intern": 16, "plan_to_sql": 17, "planner": [7, 14], "pleas": [21, 30], "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 21, 36, 46], "pointer_width": 21, "poison": [22, 24, 33, 35, 38], "pokemon": [22, 24, 27, 33, 35, 38, 46], "polar": [1, 2, 35, 36], "polars_df": [35, 36], "poll": 36, "pool": [1, 7], "popul": 5, "popular": [27, 35], "portion": 20, "posit": [2, 3, 5, 7, 24], "possibl": [2, 4, 7, 18, 20, 27, 31, 33], "possibli": 4, "post": 21, "postgr": 17, "postgresql": 17, "potenti": [2, 7, 14, 46, 47], "pow": [5, 27], "power": [5, 27, 31, 33], "pr": 21, "practic": [2, 20, 31, 34], "preced": [3, 4, 5, 7, 18, 33, 46], "precis": [5, 34], "predic": [1, 2, 7, 11], "prefer": [20, 21], "prefix": [5, 20], "prepar": [4, 46], "prepend": 5, "presenc": 27, "present": [2, 20, 29], "preserve_nul": 2, "pretti": 17, "prevent": [3, 21, 37], "previou": [5, 31, 33], "previous": 1, "primari": [2, 7, 9, 26, 36], "primit": [18, 20, 31], "principl": 34, "print": [0, 1, 2, 4, 7, 14, 18, 32, 34, 36, 37], "printabl": [7, 14, 18], "prior": [2, 35], "probabl": [2, 7, 24], "problem": 29, "process": [2, 18, 24, 33, 34, 36, 39], "processor": 34, "produc": [2, 5, 7, 14, 16, 18, 20, 33, 36], "product": [5, 34, 36], "program": 20, "programmat": [7, 14], "project": [2, 4, 7, 14, 15, 20, 21, 36, 39, 47], "proper": 34, "properti": [0, 2, 3, 4, 7, 14], "proto_byt": 16, "protobuf": [7, 14], "protocol": [1, 3, 18, 36], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 13, 15, 16, 17, 18, 20, 23, 24, 27, 31, 33, 34, 36, 38, 42, 46, 47], "prune": [1, 7, 11], "psychic": 24, "pub": [20, 47], "public": [0, 7], "pull": [21, 39], "pure": 21, "push": [21, 35], "pushdown_filt": 34, "put": 30, "py": [1, 7, 16, 20, 31, 34, 45, 47], "py_dict": 36, "py_list": 36, "pyani": 47, "pyarrow": [0, 1, 2, 4, 7, 11, 13, 15, 18, 20, 25, 31, 35, 39, 46], "pycapsul": [0, 1, 2, 7, 15, 18, 20, 31, 35, 39, 45, 47], "pycapsuleinterfac": [1, 2], "pyclass": [20, 21], "pyconfig": 20, "pydatatyp": 20, "pyiceberg": 35, "pymethod": [31, 45, 47], "pyo3": [21, 31, 35], "pyo3_build_config": 21, "pyo3_config_fil": 21, "pyo3_print_config": 21, "pypi": 38, "pyproject": 21, "pyresult": [31, 45, 47], "pysessioncontext": 20, "pyspark": 22, "pytabl": 20, "pytest": 21, "python": [0, 1, 2, 4, 7, 18, 25, 26, 29, 31, 34, 35, 38, 39, 45, 46, 47], "python3": 21, "python_typ": 20, "python_valu": [4, 7], "pythontyp": [4, 7, 20], "queri": [1, 2, 7, 14, 16, 18, 20, 22, 23, 27, 32, 34, 35, 36, 39], "quick": 25, "quit": 44, "quot": [2, 7, 13, 30], "r": [2, 4, 5, 7, 17, 20, 21, 41], "radian": [4, 5, 7], "rais": [2, 3, 4, 5, 7], "ram": 34, "random": [5, 18, 25, 26], "rang": [1, 2, 4, 5, 7, 18, 25, 26, 27, 31, 33, 34, 36], "rank": [5, 18, 31, 33], "ranks_in_partit": 18, "rare": 20, "rather": [5, 16, 36, 39], "ratio": 5, "raw": [1, 3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawcataloglist": 0, "rawexpr": [4, 7], "rawschema": [0, 7], "rb": [7, 15], "re": [2, 20], "reach": 3, "read": [0, 1, 2, 7, 9, 10, 11, 13, 16, 20, 35, 36, 37, 38, 40, 41, 43, 44, 46], "read_avro": [1, 7, 11, 36, 40], "read_csv": [1, 7, 11, 22, 23, 24, 33, 35, 36, 38, 41], "read_json": [1, 7, 11, 36, 43], "read_parquet": [1, 7, 11, 23, 30, 34, 36, 44], "read_tabl": 1, "reader": [1, 7, 11, 13, 36, 39], "realiti": 24, "reason": [2, 20, 21], "rebuild": 21, "receiv": [5, 18, 20], "recent": [33, 35], "recommend": [2, 20, 21, 31, 34, 37, 46], "record": [1, 2, 3, 7, 13, 14, 15, 23, 30, 31, 35, 39, 40], "record_batch": [1, 2, 7, 19], "record_batch_stream": [7, 15], "recordbatch": [1, 2, 3, 7, 15, 31, 35, 36], "recordbatchread": 36, "recordbatchstream": [1, 2, 7, 15, 36], "recursivequeri": 4, "red": [26, 37], "red_or_green_unit": 26, "red_unit": 26, "reduc": [7, 13, 21, 29, 31, 37, 47], "ref": [5, 31, 36], "refer": [2, 3, 5, 20, 23, 27, 36, 37, 46, 47], "referenc": [1, 23], "reflect": 3, "refresh": 3, "regardless": 18, "regener": 21, "regex": [5, 7, 13], "regexp_count": 5, "regexp_instr": 5, "regexp_lik": 5, "regexp_match": [5, 27], "regexp_replac": [5, 27], "region": 35, "regist": [0, 1, 2, 3, 7, 8, 11, 20, 23, 28, 31, 35, 36, 45, 46], "register_avro": 1, "register_catalog": [0, 35], "register_catalog_provid": 1, "register_catalog_provider_list": 1, "register_csv": [1, 27, 41, 46], "register_dataset": [1, 35], "register_formatt": 3, "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 35], "register_parquet": [1, 35, 44], "register_record_batch": 1, "register_schema": [0, 7, 35], "register_t": [0, 1, 2, 35, 45], "register_table_provid": [1, 35], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 31], "register_udwf": 1, "register_view": [1, 32], "registr": 46, "regr_avgi": [5, 24], "regr_avgx": [5, 24], "regr_count": [5, 24], "regr_intercept": [5, 24], "regr_r2": [5, 24], "regr_slop": [5, 24], "regr_sxi": 5, "regr_sxx": [5, 24], "regr_syi": [5, 24], "regress": [5, 24], "regular": [3, 5, 27], "reject": 4, "rel": [5, 33], "relat": [7, 14, 29], "releas": [20, 33], "relev": 21, "reli": [21, 35, 46], "remain": [4, 5, 7, 20, 27], "remot": [9, 10, 34], "remov": [0, 1, 2, 4, 5, 7, 24, 47], "renam": 2, "renamed_ag": 26, "render": 3, "reorder": [2, 7, 15], "repartit": [1, 2, 4, 7, 34], "repartition_by_hash": [2, 34], "repeat": [5, 26], "repeated_arrai": 26, "replac": [2, 5, 7, 27, 46], "repo": 21, "report": [2, 21], "repositori": [20, 31, 34, 35], "repr": 3, "repr_row": 3, "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 16, 23, 26, 31, 34, 36], "represent": [0, 1, 2, 3, 4, 5, 7, 11, 14, 16, 18, 46], "request": [3, 20, 21], "requested_schema": [1, 2, 7, 15], "requir": [2, 4, 7, 18, 20, 27, 34, 35, 41, 47], "reserv": [1, 7], "reset": [3, 37], "reset_formatt": [3, 37], "resolv": [3, 21, 33], "resourc": [20, 34], "respect": [5, 24, 31, 35], "respect_nul": [5, 24, 33], "rest": 18, "result": [1, 2, 5, 7, 14, 15, 18, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "result_batch": 36, "result_dict": 32, "retriev": [0, 1, 4, 7, 29], "return": [0, 1, 2, 3, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 26, 29, 31, 35, 36, 37, 39], "return_field": 18, "return_typ": [18, 31], "reus": 20, "reusabl": 4, "revers": [4, 5, 7], "review": [20, 21], "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": 33, "rich": [3, 37], "richer": 37, "right": [2, 5, 29], "right_on": [2, 29], "ritchi": 33, "rle": [2, 7], "rle_dictionari": [2, 7], "robin": 2, "rock": 24, "roll": 33, "root": [4, 5, 7, 14], "roption": 20, "round": [2, 5, 23], "rout": 20, "row": [1, 2, 3, 4, 5, 7, 11, 13, 18, 23, 24, 25, 26, 29, 31, 32, 33, 34, 36, 37, 41, 46], "row_count": 3, "row_idx": 3, "row_numb": [5, 18, 33], "rpad": 5, "rresult": 20, "rstring": 20, "rtrim": [4, 5, 7], "rubi": 25, "run": [1, 2, 7, 11, 13, 22, 32, 34, 38], "runnabl": 21, "runtim": [1, 7, 18, 34], "runtimeconfig": 1, "runtimeenvbuild": [1, 7, 34], "rust": [2, 5, 7, 13, 18, 20, 22, 31, 34, 35, 45], "rustc": 20, "rustflag": 21, "rustonomicon": 20, "rvec": 20, "rwlock": 20, "s3": 35, "safe": 20, "safeti": 22, "same": [2, 5, 18, 20, 23, 31, 36], "sampl": [5, 25, 32, 35], "saur": 27, "save": 18, "scalar": [1, 4, 7, 18, 26, 28, 46], "scalarsubqueri": 4, "scalarudf": [1, 18], "scalarudfexport": 18, "scalarvalu": 18, "scalarvari": 4, "scan": [1, 7, 13, 14], "schema": [0, 1, 2, 3, 4, 7, 11, 13, 14, 15, 25, 37], "schema_infer_max_record": [1, 7, 11, 13], "schema_nam": [0, 4, 7], "schemaprovid": [0, 7, 46, 47], "schemaproviderexport": [0, 7], "scheme": 2, "scienc": 27, "score": 5, "script": [3, 34], "search": 5, "second": [5, 23, 24, 26, 35], "second_arrai": 5, "second_two_el": 26, "secret_access_kei": 35, "section": [20, 23, 25, 28, 29, 33, 35, 36], "see": [1, 2, 4, 5, 7, 15, 16, 17, 18, 20, 21, 23, 24, 26, 31, 33, 34, 36, 37], "seen": [18, 24], "select": [1, 2, 4, 5, 7, 11, 13, 15, 18, 23, 26, 27, 28, 29, 31, 32, 33, 35, 36, 39, 46], "select_column": 2, "select_expr": 2, "self": [7, 13, 15, 18, 31, 37, 45, 47], "semi": [2, 28], "send": 47, "sensit": [2, 7], "separ": [5, 36], "sequenc": [1, 2, 7, 18], "serd": 16, "seri": 26, "serial": [2, 7, 16, 40], "serialize_byt": 16, "serialize_to_plan": 16, "serv": 20, "session": [1, 2, 3, 7, 31, 34, 37, 38, 46, 47], "session_id": 1, "sessionconfig": [1, 7, 34], "sessioncontext": [0, 1, 2, 5, 7, 8, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "sessioncontextintern": 1, "set": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17, 18, 20, 21, 23, 28, 29, 31, 34, 37, 41, 46], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setter": 20, "setvari": 4, "sever": [30, 34, 36], "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 20, "share": [3, 20, 21, 23, 26, 39], "shift_offet": 5, "shift_offset": 5, "short": 36, "shot": 18, "should": [1, 2, 4, 5, 7, 8, 11, 14, 16, 20, 21, 24, 29, 31, 33], "show": [2, 3, 20, 22, 23, 25, 26, 29, 31, 33, 34, 35, 36, 37, 38, 45, 46], "show_attack": 46, "show_column": 46, "show_truncation_messag": [3, 37], "showcas": 34, "shown": 3, "side": [4, 5, 7, 20], "sign": [4, 5, 7], "signatur": 47, "signific": 35, "significantli": [5, 34], "signum": [4, 5, 7], "silver": 5, "similar": [4, 5, 7, 20, 23, 26, 33, 46], "similarto": 4, "simpl": [2, 5, 21, 30, 34, 43, 44, 46], "simplest": [18, 31], "simpli": [2, 18, 20, 21, 35, 37, 46], "simplic": 18, "simplifi": 33, "simultan": 34, "sin": [4, 5, 7], "sinc": [2, 3, 24, 31, 35, 46], "sine": [4, 5, 7], "singl": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 31, 33, 34, 35, 36, 46], "single_file_output": [2, 7], "sinh": [4, 5, 7], "site": 41, "size": [1, 2, 5, 7, 26, 34, 37, 47], "skew": 34, "skip": [1, 2, 7, 11, 18, 41], "skip_arrow_metadata": [2, 7], "skip_metadata": [1, 7, 11], "slice": [4, 5, 7, 26], "slightli": 31, "slope": 5, "slow": 2, "slower": [2, 34], "slowest": 31, "slowpok": 33, "small": [34, 35], "smallest": [18, 24], "smooth_a": 31, "snappi": [2, 7], "snorlax": 33, "so": [1, 2, 4, 7, 18, 20, 21, 30, 31, 33, 36, 39, 45], "softwar": [7, 14, 20], "solid": 37, "some": [2, 5, 7, 18, 20, 21, 24, 27, 31, 33, 35, 36, 38, 45, 47], "sometim": [1, 7, 20, 35], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 13, 24, 33, 36], "sort_bi": [2, 7], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 2, 4, 5, 7, 13], "sortkei": [1, 2, 4, 5], "sound": 20, "sourc": [1, 5, 7, 8, 9, 10, 11, 20, 21, 23, 34, 36, 37, 38, 39, 45], "sp": [22, 35, 38], "space": [4, 5, 7], "sparingli": 31, "special": [3, 18, 46], "specif": [0, 2, 3, 4, 5, 7, 14, 25, 26, 27, 33, 34, 36, 37, 46, 47], "specifi": [1, 2, 4, 5, 7, 13, 26, 27, 29, 31, 33, 34, 46], "speed": [2, 7, 22, 24, 33, 35, 38], "sphinx": 19, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 31], "split_part": 5, "sql": [1, 2, 7, 14, 16, 17, 18, 22, 23, 26, 30, 32, 35, 36], "sql_type": 20, "sql_with_opt": 1, "sqlite": 17, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7, 20], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 27, "squirtl": [22, 27, 33, 35, 38], "src": [4, 7, 20, 21], "ssd": 34, "stabl": [18, 20, 31], "stai": 20, "standard": [5, 18, 20], "start": [4, 5, 7, 13, 18, 26, 29, 30, 33, 37, 38, 41], "start_ag": 26, "start_bound": [4, 7], "started_young": 26, "starts_with": 5, "state": [1, 18, 20, 23, 31], "state_typ": [18, 31], "statement": [1, 4, 5, 7, 23, 46], "static": [0, 1, 2, 4, 7, 14, 16, 17, 18], "statist": [2, 7, 24, 25], "statistics_en": [2, 7], "statistics_truncate_length": [2, 7], "std": 25, "stddev": [5, 24], "stddev_pop": [5, 24], "stddev_samp": 5, "steel": 24, "stem": 20, "step": [5, 20], "still": [2, 7, 13, 20, 31, 35], "stop": 5, "storag": [34, 35], "store": [1, 4, 7, 12, 20], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 46], "str_lit": 27, "straightforward": [7, 15, 40, 41], "strategi": 34, "stream": [1, 2, 7, 15, 20, 39], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 14, 16, 17, 18, 20, 21, 24, 25, 26, 28, 31, 36, 46], "string1": 5, "string2": 5, "string_agg": [5, 24], "string_list": 5, "string_liter": [4, 7, 27], "string_view": [4, 7, 39], "strip": 2, "strong": 22, "strongli": 34, "strpo": 5, "struct": [1, 4, 5, 7, 20, 28, 39], "structarrai": 39, "structur": [7, 13, 14, 20], "style": [3, 20, 26, 36, 46], "style_provid": [3, 37], "styleprovid": [3, 37], "sub": [4, 7], "sub_expr": 5, "subclass": 20, "subfield": [4, 5, 7], "submit": 21, "submodul": 21, "subqueri": 4, "subqueryalia": 4, "subset": [2, 27, 30], "substitut": 1, "substr": 5, "substr_index": 5, "substrait": [7, 19], "subtl": 20, "subtract": [4, 7], "successfulli": [7, 13], "suffici": [1, 7, 34], "suffix": 5, "suggest": 35, "sum": [5, 18, 24, 31, 34, 36], "sum_bias_10": 18, "summar": [2, 18], "summari": [2, 24, 25], "support": [0, 1, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 18, 20, 29, 31, 35, 36, 37, 46], "supports_bounded_execut": [18, 31], "suppos": [5, 20, 24], "suppress_build_script_link_lin": 21, "sure": 21, "switch": 46, "symbol": 2, "sync": 21, "synchron": 20, "syntax": [5, 26], "synthet": 34, "system": [1, 2, 7, 20, 21, 34], "t": [5, 18, 30], "t1": 18, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 14, 18, 20, 23, 25, 27, 28, 29, 34, 36, 37, 38, 39, 41, 42, 44, 46], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 2, 8, 9, 10], "table_partition_col": [1, 7, 11, 13], "table_provid": 1, "table_uuid": [2, 3, 37], "tablefunct": [1, 18, 47], "tableprovid": [20, 45, 47], "tableproviderexport": [0, 1, 7], "tablescan": 4, "tabular": 36, "tag": 3, "tail": 2, "take": [2, 3, 18, 20, 21, 24, 26, 31, 33, 35, 47], "taken": 34, "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7, 34], "target_partit": [1, 7], "task": [27, 36], "taskcontextprovid": 47, "taxi": 23, "td": 37, "technic": 22, "techniqu": [34, 35], "templat": 18, "tempor": 28, "temporari": [1, 2, 7, 37, 46], "temporarili": 37, "temporary_column": 36, "term": 33, "termin": [7, 13], "terminologi": 20, "test": [5, 7, 14, 21, 31, 34, 35], "text": [1, 2, 5, 37], "textual": 27, "th": [5, 37], "than": [2, 4, 5, 7, 13, 24, 31, 34, 36, 37, 39, 41], "thei": [8, 18, 20, 26, 31, 46], "them": [2, 5, 7, 20, 21, 23, 25, 31, 35], "theme": 37, "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, 29, 31, 32, 33, 34, 35, 37, 38, 39, 45, 46, 47], "third": 23, "thoroughli": 20, "those": [2, 4, 7, 22, 24, 31, 35, 46], "though": [20, 31], "thread": 22, "three": [31, 33, 35], "threshold": 46, "through": [2, 3, 20, 22, 28, 35, 36, 37, 38], "thu": 18, "thusli": 20, "ticket": 21, "tie": 5, "tight": 20, "tile": 5, "time": [5, 18, 20, 21, 24, 26, 27, 31, 34, 36, 47], "time64": 5, "timestamp": [4, 5, 7, 27, 31], "tip_amount": [23, 30], "tip_perc": 23, "tips_plus_tol": 30, "tlc": [23, 30], "tmp": [1, 7], "to_arrow_t": [2, 36], "to_hex": [4, 5, 7], "to_inn": [7, 13], "to_json": 16, "to_panda": [2, 25, 27, 36, 46], "to_polar": [2, 36], "to_proto": [7, 14], "to_pyarrow": [7, 15, 36], "to_pyarrow_dataset": 35, "to_pydict": [2, 32, 36], "to_pylist": [2, 36], "to_substrait_plan": 16, "to_timestamp": [5, 27], "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, 14], "todo": 20, "togeth": [2, 5, 24], "toler": [2, 7], "tolls_amount": 30, "toml": 21, "top": 25, "topic": 35, "total": [2, 4, 5, 7, 22, 23, 26, 27, 35, 38], "total_amount": [23, 36], "total_as_float": 27, "total_as_int": 27, "touch": 21, "toward": 5, "tr": 37, "track": 20, "tracker": 5, "tradit": 21, "trail": 2, "trait": [18, 20], "transact": [1, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 20, "transform": [2, 7, 14, 23, 36], "translat": [5, 20], "treat": [4, 33, 41], "treatment": [4, 7], "tree": [7, 14, 26], "trigger": [2, 37, 39], "trim": [4, 5, 7], "trip": [23, 30, 35], "trip_dist": [23, 30], "trivial": 21, "true": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 18, 21, 24, 26, 27, 30, 31, 33, 34, 37, 41], "trunc": 5, "truncat": [2, 3, 5, 7, 13, 24, 27, 30, 33, 37], "truncated_row": [7, 13], "try": [1, 7, 11, 13, 20], "trycast": 4, "tune": [2, 7, 34], "tupl": [1, 2, 5, 7, 11, 13, 15, 18], "turn": [0, 2, 4, 7, 20, 46], "tutori": 38, "two": [2, 4, 5, 7, 14, 15, 20, 24, 26, 29, 31, 33, 34, 35], "type": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 27, 30, 31, 33, 34, 35, 38, 46], "type_class": 3, "typeerror": [3, 4], "typeguard": 18, "typic": [0, 2, 4, 7, 15, 17, 18, 23, 35], "typing_extens": [7, 15], "u": [20, 24, 26, 35], "udaf": [1, 18, 22, 31], "udaf1": 18, "udaf2": 18, "udaf3": 18, "udf": [1, 18, 22, 31], "udf4": 18, "udtf": 18, "udwf": [1, 18], "udwf1": 18, "udwf2": 18, "udwf3": 18, "ultim": 21, "unabl": 46, "unari": [7, 14], "unbound": [1, 4, 7, 18, 33], "unchang": [2, 27], "uncompress": [2, 7, 13], "undefin": 21, "under": [1, 20, 35], "underli": [4, 7, 13, 18, 20, 39], "understand": [20, 34, 36], "unfortun": 20, "unfrozen": 20, "unicod": [4, 5, 7], "unintend": 46, "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 2, 3, 5, 7, 18, 24], "unit": [4, 7, 33, 35], "unixtim": 5, "unknown": 4, "unless": 20, "unlik": [4, 7, 33], "unmatch": 29, "unnest": [2, 4], "unnest_column": 2, "unnestexpr": 4, "unoptim": 2, "unpars": [7, 19], "unsaf": [20, 47], "unspil": [1, 7], "until": 23, "up": [2, 7, 14, 18, 23, 26, 33, 34, 37], "updat": [1, 2, 7, 18, 20, 31, 47], "upon": [5, 20, 31], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 20, "urbango": 29, "url": 1, "us": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47], "usabl": 2, "usag": [1, 2, 4, 5, 7, 18, 24, 33], "use_shared_styl": [3, 7, 37], "user": [0, 1, 2, 4, 5, 7, 8, 14, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 37, 38, 47], "user_defin": [1, 7, 19, 31], "user_id": 36, "uses_window_fram": [18, 31], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [3, 20, 33, 34, 35], "uuid": 5, "uv": 21, "v": [21, 34], "v4": 5, "val": 46, "valid": [1, 2, 3, 4, 7, 8, 9, 10, 18], "validate_pycapsul": 47, "valu": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 28, 29, 30, 31, 33, 36, 37, 46], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 31, "values_b": 31, "values_view": 2, "var": 5, "var_pop": [5, 24], "var_samp": [5, 24], "var_sampl": 5, "vari": 34, "variabl": [1, 5, 7, 21, 26, 46], "varianc": 5, "variant": [4, 7, 14, 29], "variant_nam": [4, 7], "varieti": [26, 31, 35, 41], "variou": [13, 36, 37, 38], "vastli": [21, 34], "vec": 20, "vendorid": 30, "venomoth": 33, "venonat": 33, "venu": 27, "venufleur": 27, "venufleurmega": 27, "venusaur": [22, 27, 33, 35, 38, 46], "venusaurmega": [22, 27, 33, 35, 38, 46], "venv": 21, "verbos": 2, "veri": [40, 41], "verifi": 38, "version": [2, 3, 7, 20, 21, 29, 35, 47], "versu": 34, "via": [1, 2, 4, 7, 15, 16, 18, 20, 21, 22, 26, 29, 31, 35, 36, 38, 45, 46, 47], "view": [0, 1, 2, 7, 25, 27, 28, 38, 46], "view1": 32, "vink": 33, "violat": 3, "virtual": [1, 7, 21], "visual": [7, 14, 23, 37], "volatil": [18, 31], "voltorb": [24, 33], "volum": 34, "vulpix": 24, "wa": [1, 7], "wai": [20, 21, 24, 35, 36, 38], "wait": 20, "want": [20, 21, 24, 27, 31, 33, 37, 45], "wartortl": [22, 35, 38], "water": [22, 24, 27, 35, 38], "we": [0, 2, 7, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "weedl": [22, 33, 35, 38], "weight": [5, 26], "welcom": [21, 38], "well": [1, 7, 20, 21, 31, 36, 46], "were": [20, 26], "what": [20, 23], "whatev": 18, "when": [1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 29, 31, 33, 34, 35, 36, 37, 43, 46], "when_expr": 4, "whenev": [20, 21, 36], "where": [2, 4, 5, 7, 14, 24, 26, 27, 31, 32, 33, 35, 46], "wherea": 26, "wherev": 20, "whether": [1, 2, 3, 4, 5, 7, 11, 13, 18, 26], "which": [0, 2, 4, 5, 7, 13, 18, 20, 21, 22, 24, 26, 30, 31, 33, 35, 36, 37, 47], "while": [18, 20, 29, 34], "white": 37, "who": [20, 47], "whole": 24, "why": 20, "wide": [26, 34, 35, 36], "width": [3, 37], "window": [1, 4, 5, 7, 18, 24, 28, 34], "window_fram": [4, 5, 7, 33], "windowevalu": [18, 31], "windowexpr": 4, "windowfram": [4, 5, 7, 33], "windowframebound": [4, 7], "windowudf": [1, 18], "windowudfexport": 18, "wish": [20, 29, 31], "with_": [7, 13], "with_allow_ddl": [1, 7], "with_allow_dml": [1, 7], "with_allow_stat": [1, 7], "with_batch_s": [1, 7], "with_column": [2, 36], "with_column_renam": 2, "with_com": [7, 13, 41], "with_create_default_catalog_and_schema": [1, 7, 34], "with_default_catalog_and_schema": [1, 7, 34], "with_delimit": [7, 13, 41], "with_disk_manager_dis": [1, 7], "with_disk_manager_o": [1, 7, 34], "with_disk_manager_specifi": [1, 7], "with_escap": [7, 13, 41], "with_fair_spill_pool": [1, 7, 34], "with_file_compression_typ": [7, 13, 41], "with_file_extens": [7, 13, 41], "with_file_sort_ord": [7, 13], "with_greedy_memory_pool": [1, 7], "with_has_head": [7, 13, 41], "with_head": 2, "with_information_schema": [1, 7, 34], "with_logical_extension_codec": 1, "with_newlines_in_valu": [7, 13], "with_null_regex": [7, 13, 41], "with_parquet_prun": [1, 7, 34], "with_pretti": 17, "with_quot": [7, 13], "with_repartition_aggreg": [1, 7, 34], "with_repartition_file_min_s": [1, 7], "with_repartition_file_scan": [1, 7], "with_repartition_join": [1, 7, 34], "with_repartition_sort": [1, 7], "with_repartition_window": [1, 7, 34], "with_schema": [7, 13], "with_schema_infer_max_record": [7, 13], "with_table_partition_col": [7, 13], "with_target_partit": [1, 7, 34], "with_temp_file_path": [1, 7], "with_termin": [7, 13], "with_truncated_row": [7, 13, 41], "with_unbounded_memory_pool": [1, 7], "within": [0, 5, 9, 18, 24, 26], "within_limit": 2, "without": [2, 4, 5, 7, 20, 21, 24, 27, 29, 30, 31, 36, 46], "won": 30, "word": [4, 5, 7], "work": [1, 2, 5, 7, 23, 27, 30, 34, 36, 37, 38, 46], "workflow": 21, "workload": 34, "worthwhil": [2, 7], "would": [4, 5, 8, 18, 20, 46], "wrap": [1, 2, 20, 31], "wrapper": [1, 7, 15, 20, 21, 35], "write": [2, 7, 8, 16, 20, 31, 35, 36, 47], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_opt": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "write_t": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [2, 7, 20, 22, 35, 36], "x": [2, 5, 18, 22, 27, 33, 35, 38, 46], "xor": 5, "xz": [7, 13], "y": [2, 5, 18, 22, 27, 33, 35, 38, 46], "year": 5, "years_in_posit": 26, "yellow": [23, 35], "yellow_tripdata_2021": [23, 30], "yet": [2, 35], "yield": [2, 5, 36, 39], "you": [0, 1, 2, 5, 7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "your": [0, 2, 7, 18, 20, 21, 24, 25, 30, 31, 34, 35, 36, 37, 46, 47], "your_tabl": 36, "yourself": 20, "z": [1, 7, 18], "zero": [2, 5, 7, 15, 22, 39], "zstandard": [2, 7], "zstd": [2, 7, 13], "zubat": 24, "\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.options", "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", "Upgrade Guides"], "titleterms": {"0": 47, "52": 47, "The": 20, "addit": 37, "aggreg": [24, 31, 33], "altern": 20, "anti": 29, "apach": 35, "api": 19, "approach": 20, "argument": 36, "arrai": 26, "arrow": [20, 36, 39], "attribut": [4, 7, 12, 18], "avail": 33, "avro": 40, "base": [8, 36], "basic": [25, 37], "benchmark": 34, "best": 37, "boolean": 26, "build": 21, "built": 36, "cast": 27, "catalog": [0, 35], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 20, 36], "code": 21, "column": [26, 30, 36], "commit": 21, "common": [28, 36], "concept": 23, "condit": 27, "configur": [34, 37], "consider": 34, "content": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "context": [1, 23], "contextu": 37, "control": 37, "copi": 36, "core": 36, "cpu": 34, "creat": [35, 36, 37], "csv": 41, "custom": [35, 37, 45], "data": 35, "datafram": [2, 23, 35, 36], "dataframe_formatt": 3, "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 39, 47], "defin": [31, 35], "delta": 35, "depend": 21, "detail": 20, "develop": 21, "displai": 37, "distinct": 24, "duplic": 29, "exampl": [22, 34], "execut": 36, "export": 39, "expr": 4, "express": [23, 26, 36], "extens": 20, "faq": 31, "ffi": 20, "file": 35, "fill_nul": 27, "filter": 24, "format": 37, "formatt": 37, "frame": 33, "from": [20, 39], "full": 29, "function": [3, 4, 5, 7, 11, 18, 24, 26, 27, 31, 33, 36], "guid": 47, "guidelin": [20, 21], "handl": 27, "hook": 21, "how": 21, "html": [36, 37], "html_formatt": 6, "iceberg": 35, "implement": 20, "import": [34, 39], "improv": 21, "inner": 29, "input": [8, 9, 10], "inspir": 20, "instal": [21, 22, 38], "introduct": [21, 38], "io": [11, 42], "issu": 20, "join": 29, "json": 43, "jupyt": 37, "kei": 29, "lake": 35, "left": 29, "librari": [35, 36], "liter": 26, "local": 35, "locat": 10, "manag": 37, "mathemat": 27, "maxim": 34, "memori": [35, 37], "miss": 27, "modul": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18], "mutabl": 20, "name": 36, "null": [24, 33], "object": 35, "object_stor": 12, "oper": [25, 28, 36], "optim": 37, "option": [13, 31], "order": [24, 33], "other": [27, 35], "overview": 36, "packag": [7, 9], "paramet": [24, 33], "parameter": 46, "parquet": 44, "partit": 33, "perform": 37, "plan": 14, "practic": 37, "pre": 21, "primari": 20, "provid": [35, 37, 45], "pyarrow": 36, "pyo3": 20, "python": [20, 21, 22, 36], "queri": 46, "record_batch": 15, "refer": 19, "regist": 32, "render": [36, 37], "resourc": 37, "return": [4, 5, 7], "run": 21, "rust": 21, "scalar": 31, "schema": 35, "select": 30, "semi": 29, "separ": 21, "session": 23, "set": [24, 33], "share": 37, "sourc": 35, "speed": 21, "sql": 46, "statu": 20, "store": 35, "stream": 36, "string": 27, "struct": 26, "style": 37, "submodul": [7, 9], "substrait": 16, "tabl": [31, 35, 45], "tempor": 27, "termin": 36, "treatment": [24, 33], "udwf": 31, "unpars": 17, "updat": 21, "upgrad": 47, "usag": 34, "user": [31, 35], "user_defin": 18, "valu": 27, "view": 32, "window": [31, 33], "work": 20, "zero": 36}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API Reference": [[19, null]], "Additional Resources": [[37, "additional-resources"]], "Aggregate Functions": [[24, "aggregate-functions"], [31, "aggregate-functions"], [33, "aggregate-functions"]], "Aggregation": [[24, null]], "Alternative Approach": [[20, "alternative-approach"]], "Apache Iceberg": [[35, "apache-iceberg"]], "Arrays": [[26, "arrays"]], "Arrow": [[39, null]], "Attributes": [[4, "attributes"], [7, "attributes"], [12, "attributes"], [18, "attributes"]], "Available Functions": [[33, "available-functions"]], "Avro": [[40, null]], "Basic HTML Rendering": [[37, "basic-html-rendering"]], "Basic Operations": [[25, null]], "Benchmark Example": [[34, "benchmark-example"]], "Best Practices": [[37, "best-practices"]], "Boolean": [[26, "boolean"]], "Built-in Functions": [[36, "built-in-functions"]], "CSV": [[41, null]], "Casting": [[27, "casting"]], "Catalog": [[35, "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"], [18, "classes"]], "Column": [[26, "column"]], "Column Names as Function Arguments": [[36, "column-names-as-function-arguments"]], "Column Selections": [[30, null]], "Common DataFrame Operations": [[36, "common-dataframe-operations"]], "Common Operations": [[28, null]], "Concepts": [[23, null]], "Conditional": [[27, "conditional"]], "Configuration": [[34, null]], "Configuring the HTML Formatter": [[37, "configuring-the-html-formatter"]], "Contextual Formatting": [[37, "contextual-formatting"]], "Core Classes": [[36, "core-classes"]], "Create in-memory": [[35, "create-in-memory"]], "Creating DataFrames": [[36, "creating-dataframes"]], "Creating a Custom Formatter": [[37, "creating-a-custom-formatter"]], "Custom Style Providers": [[37, "custom-style-providers"]], "Custom Table Provider": [[35, "custom-table-provider"], [45, null]], "Customizing HTML Rendering": [[37, "customizing-html-rendering"]], "Data Sources": [[35, null]], "DataFrame": [[23, "dataframe"]], "DataFrames": [[36, null]], "DataFusion 52.0.0": [[47, "datafusion-52-0-0"]], "DataFusion in Python": [[22, null]], "Delta Lake": [[35, "delta-lake"]], "Distinct": [[24, "distinct"]], "Duplicate Keys": [[29, "duplicate-keys"]], "Example": [[22, "example"]], "Execute as Stream": [[36, "execute-as-stream"]], "Exporting from DataFusion": [[39, "exporting-from-datafusion"]], "Expression Classes": [[36, "expression-classes"]], "Expressions": [[23, "expressions"], [26, null]], "FAQ": [[31, "faq"]], "Filter": [[24, "filter"]], "Full Join": [[29, "full-join"]], "Functions": [[3, "functions"], [4, "functions"], [5, "functions"], [7, "functions"], [11, "functions"], [18, "functions"], [26, "functions"], [27, null]], "Guidelines for Separating Python and Rust Code": [[21, "guidelines-for-separating-python-and-rust-code"]], "HTML Rendering": [[36, "html-rendering"]], "HTML Rendering in Jupyter": [[37, null]], "Handling Missing Values": [[27, "handling-missing-values"]], "How to develop": [[21, "how-to-develop"]], "IO": [[42, null]], "Implementation Details": [[20, "implementation-details"]], "Important Considerations": [[34, "important-considerations"]], "Importing to DataFusion": [[39, "importing-to-datafusion"]], "Improving Build Speed": [[21, "improving-build-speed"]], "Inner Join": [[29, "inner-join"]], "Inspiration from Arrow": [[20, "inspiration-from-arrow"]], "Install": [[22, "install"]], "Installation": [[38, "installation"]], "Introduction": [[21, null], [38, null]], "JSON": [[43, null]], "Joins": [[29, null]], "Left Anti Join": [[29, "left-anti-join"]], "Left Join": [[29, "left-join"]], "Left Semi Join": [[29, "left-semi-join"]], "Literal": [[26, "literal"]], "Local file": [[35, "local-file"]], "Managing Formatters": [[37, "managing-formatters"]], "Mathematical": [[27, "mathematical"]], "Maximizing CPU Usage": [[34, "maximizing-cpu-usage"]], "Memory and Display Controls": [[37, "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"], [18, "module-contents"]], "Null Treatment": [[24, "null-treatment"], [33, "null-treatment"]], "Object Store": [[35, "object-store"]], "Ordering": [[24, "ordering"], [33, "ordering"]], "Other": [[27, "other"]], "Other DataFrame Libraries": [[35, "other-dataframe-libraries"]], "Overview": [[36, "overview"]], "Package Contents": [[7, "package-contents"], [9, "package-contents"]], "Parameterized queries": [[46, "parameterized-queries"]], "Parquet": [[44, null]], "Partitions": [[33, "partitions"]], "Performance Optimization with Shared Styles": [[37, "performance-optimization-with-shared-styles"]], "PyArrow": [[36, "pyarrow"]], "PyO3 class mutability guidelines": [[20, "pyo3-class-mutability-guidelines"]], "Python Extensions": [[20, null]], "Registering Views": [[32, null]], "Returns:": [[4, "returns"], [4, "id1"], [5, "returns"], [5, "id1"], [7, "returns"], [7, "id1"]], "Running & Installing pre-commit hooks": [[21, "running-installing-pre-commit-hooks"]], "SQL": [[46, null]], "Scalar Functions": [[31, "scalar-functions"]], "Session Context": [[23, "session-context"]], "Setting Parameters": [[24, "setting-parameters"], [33, "setting-parameters"]], "Status of Work": [[20, "status-of-work"]], "String": [[27, "string"]], "Structs": [[26, "structs"]], "Submodules": [[7, "submodules"], [9, "submodules"]], "Table Functions": [[31, "table-functions"]], "Temporal": [[27, "temporal"]], "Terminal Operations": [[36, "terminal-operations"]], "The FFI Approach": [[20, "the-ffi-approach"]], "The Primary Issue": [[20, "the-primary-issue"]], "UDWF options": [[31, "udwf-options"]], "Update Dependencies": [[21, "update-dependencies"]], "Upgrade Guides": [[47, null]], "User Defined Catalog and Schema": [[35, "user-defined-catalog-and-schema"]], "User-Defined Functions": [[31, null]], "Window Frame": [[33, "window-frame"]], "Window Functions": [[31, "window-functions"], [33, null]], "Zero-copy streaming to Arrow-based Python libraries": [[36, "zero-copy-streaming-to-arrow-based-python-libraries"]], "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.options": [[13, null]], "datafusion.plan": [[14, null]], "datafusion.record_batch": [[15, null]], "datafusion.substrait": [[16, null]], "datafusion.unparser": [[17, null]], "datafusion.user_defined": [[18, null]], "fill_null": [[27, "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/options/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", "user-guide/upgrade-guides"], "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/options/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", "user-guide/upgrade-guides.rst"], "indexentries": {"__add__() (datafusion.expr method)": [[7, "datafusion.Expr.__add__", false]], "__add__() (datafusion.expr.expr method)": [[4, "datafusion.expr.Expr.__add__", false]], "__aiter__() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__aiter__", false]], "__aiter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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_array__() (datafusion.record_batch.recordbatch method)": [[15, "datafusion.record_batch.RecordBatch.__arrow_c_array__", false]], "__arrow_c_array__() (datafusion.recordbatch method)": [[7, "datafusion.RecordBatch.__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)": [[18, "datafusion.user_defined.AggregateUDF.__call__", false]], "__call__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__call__", false]], "__call__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__call__", false]], "__call__() (datafusion.user_defined.windowudf method)": [[18, "datafusion.user_defined.WindowUDF.__call__", false]], "__call__() (datafusion.windowudf method)": [[7, "datafusion.WindowUDF.__call__", false]], "__datafusion_aggregate_udf__() (datafusion.user_defined.aggregateudfexportable method)": [[18, "datafusion.user_defined.AggregateUDFExportable.__datafusion_aggregate_udf__", false]], "__datafusion_logical_extension_codec__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_logical_extension_codec__", false]], "__datafusion_scalar_udf__() (datafusion.user_defined.scalarudfexportable method)": [[18, "datafusion.user_defined.ScalarUDFExportable.__datafusion_scalar_udf__", false]], "__datafusion_table_provider__() (datafusion.context.tableproviderexportable method)": [[1, "datafusion.context.TableProviderExportable.__datafusion_table_provider__", false]], "__datafusion_task_context_provider__() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.__datafusion_task_context_provider__", false]], "__datafusion_window_udf__() (datafusion.user_defined.windowudfexportable method)": [[18, "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]], "__eq__() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.__eq__", false]], "__eq__() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.__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.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.__iter__", false]], "__iter__() (datafusion.record_batch.recordbatchstream method)": [[15, "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)": [[15, "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.cataloglist method)": [[0, "datafusion.catalog.CatalogList.__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)": [[14, "datafusion.plan.ExecutionPlan.__repr__", false]], "__repr__() (datafusion.plan.logicalplan method)": [[14, "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)": [[18, "datafusion.user_defined.AggregateUDF.__repr__", false]], "__repr__() (datafusion.user_defined.scalarudf method)": [[18, "datafusion.user_defined.ScalarUDF.__repr__", false]], "__repr__() (datafusion.user_defined.tablefunction method)": [[18, "datafusion.user_defined.TableFunction.__repr__", false]], "__repr__() (datafusion.user_defined.windowudf method)": [[18, "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]], "__slots__ (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table.__slots__", false]], "__slots__ (datafusion.table attribute)": [[7, "datafusion.Table.__slots__", false]], "__str__() (datafusion.user_defined.volatility method)": [[18, "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_file_sort_order() (datafusion.context.sessioncontext static method)": [[1, "datafusion.context.SessionContext._convert_file_sort_order", 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)": [[18, "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)": [[18, "datafusion.user_defined.TableFunction._create_table_udf_decorator", false]], "_create_window_udf() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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)": [[18, "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]], "_inner (datafusion.catalog.table attribute)": [[0, "datafusion.catalog.Table._inner", false]], "_inner (datafusion.table attribute)": [[7, "datafusion.Table._inner", false]], "_is_pycapsule() (in module datafusion.user_defined)": [[18, "datafusion.user_defined._is_pycapsule", false]], "_max_rows (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter._max_rows", false]], "_normalize_input_types() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[18, "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)": [[14, "datafusion.plan.ExecutionPlan._raw_plan", false]], "_raw_plan (datafusion.plan.logicalplan attribute)": [[14, "datafusion.plan.LogicalPlan._raw_plan", false]], "_raw_schema (datafusion.catalog.schema attribute)": [[0, "datafusion.catalog.Schema._raw_schema", false]], "_raw_write_options (datafusion.dataframe.dataframewriteoptions attribute)": [[2, "datafusion.dataframe.DataFrameWriteOptions._raw_write_options", false]], "_raw_write_options (datafusion.dataframewriteoptions attribute)": [[7, "datafusion.DataFrameWriteOptions._raw_write_options", 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)": [[18, "datafusion.user_defined.AggregateUDF._udaf", false]], "_udf (datafusion.scalarudf attribute)": [[7, "datafusion.ScalarUDF._udf", false]], "_udf (datafusion.user_defined.scalarudf attribute)": [[18, "datafusion.user_defined.ScalarUDF._udf", false]], "_udtf (datafusion.tablefunction attribute)": [[7, "datafusion.TableFunction._udtf", false]], "_udtf (datafusion.user_defined.tablefunction attribute)": [[18, "datafusion.user_defined.TableFunction._udtf", false]], "_udwf (datafusion.user_defined.windowudf attribute)": [[18, "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_formatter_parameters() (in module datafusion.dataframe_formatter)": [[3, "datafusion.dataframe_formatter._validate_formatter_parameters", 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)": [[18, "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)": [[18, "datafusion.user_defined.AggregateUDF", false]], "aggregateudfexportable (class in datafusion.user_defined)": [[18, "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]], "allow_single_file_parallelism (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.allow_single_file_parallelism", false]], "amazons3 (in module datafusion.object_store)": [[12, "datafusion.object_store.AmazonS3", false]], "analyze (in module datafusion.expr)": [[4, "datafusion.expr.Analyze", false]], "append (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.APPEND", false]], "append (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.APPEND", 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]], "bloom_filter_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_enabled", false]], "bloom_filter_fpp (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_fpp", false]], "bloom_filter_fpp (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_fpp", false]], "bloom_filter_ndv (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.bloom_filter_ndv", false]], "bloom_filter_ndv (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_ndv", false]], "bloom_filter_on_write (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.bloom_filter_on_write", false]], "bloom_filter_on_write (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.bloom_filter_on_write", 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.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.catalog", false]], "catalog() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.catalog", false]], "catalog() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog", false]], "catalog_list (datafusion.catalog.cataloglist attribute)": [[0, "datafusion.catalog.CatalogList.catalog_list", false]], "catalog_names() (datafusion.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.catalog_names", false]], "catalog_names() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.catalog_names", false]], "catalog_names() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.catalog_names", false]], "cataloglist (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogList", false]], "catalogprovider (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProvider", false]], "catalogproviderlist (class in datafusion.catalog)": [[0, "datafusion.catalog.CatalogProviderList", 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)": [[14, "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_column() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.collect_column", 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]], "column_index_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_index_truncate_length", 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]], "column_specific_options (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.column_specific_options", false]], "comment (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.comment", false]], "comment (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.comment", false]], "compression (class in datafusion.dataframe)": [[2, "datafusion.dataframe.Compression", false]], "compression (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.compression", false]], "compression (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.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)": [[16, "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]], "created_by (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.created_by", 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]], "csvreadoptions (class in datafusion)": [[7, "datafusion.CsvReadOptions", false]], "csvreadoptions (class in datafusion.options)": [[13, "datafusion.options.CsvReadOptions", 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]], "data_page_row_count_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_page_row_count_limit", false]], "data_pagesize_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.data_pagesize_limit", false]], "data_pagesize_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.data_pagesize_limit", false]], "data_type_or_field_to_field() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_type_or_field_to_field", false]], "data_types_or_fields_to_field_list() (in module datafusion.user_defined)": [[18, "datafusion.user_defined.data_types_or_fields_to_field_list", 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]], "dataframewriteoptions (class in datafusion)": [[7, "datafusion.DataFrameWriteOptions", false]], "dataframewriteoptions (class in datafusion.dataframe)": [[2, "datafusion.dataframe.DataFrameWriteOptions", 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.options": [[13, "module-datafusion.options", false]], "datafusion.plan": [[14, "module-datafusion.plan", false]], "datafusion.record_batch": [[15, "module-datafusion.record_batch", false]], "datafusion.substrait": [[16, "module-datafusion.substrait", false]], "datafusion.unparser": [[17, "module-datafusion.unparser", false]], "datafusion.user_defined": [[18, "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)": [[17, "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]], "delimiter (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.delimiter", false]], "delimiter (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.delimiter", 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)": [[16, "datafusion.substrait.Serde.deserialize", false]], "deserialize_bytes() (datafusion.substrait.serde static method)": [[16, "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)": [[17, "datafusion.unparser.Dialect", false]], "dialect (datafusion.unparser.dialect attribute)": [[17, "datafusion.unparser.Dialect.dialect", false]], "dictionary_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.dictionary_enabled", false]], "dictionary_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_enabled", false]], "dictionary_page_size_limit (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.dictionary_page_size_limit", false]], "dictionary_page_size_limit (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.dictionary_page_size_limit", 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)": [[14, "datafusion.plan.ExecutionPlan.display", false]], "display() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.display", false]], "display_graphviz() (datafusion.logicalplan method)": [[7, "datafusion.LogicalPlan.display_graphviz", false]], "display_graphviz() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "datafusion.plan.ExecutionPlan.display_indent", false]], "display_indent() (datafusion.plan.logicalplan method)": [[14, "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)": [[14, "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)": [[17, "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)": [[16, "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]], "encoding (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.encoding", false]], "encoding (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.encoding", false]], "encoding (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.encoding", false]], "end() (datafusion.expr.casebuilder method)": [[4, "datafusion.expr.CaseBuilder.end", false]], "ends_with() (in module datafusion.functions)": [[5, "datafusion.functions.ends_with", false]], "ensure_expr() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr", false]], "ensure_expr_list() (in module datafusion.expr)": [[4, "datafusion.expr.ensure_expr_list", false]], "escape (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.escape", false]], "escape (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.escape", false]], "evaluate() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.accumulator method)": [[18, "datafusion.user_defined.Accumulator.evaluate", false]], "evaluate() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate", false]], "evaluate_all() (datafusion.user_defined.windowevaluator method)": [[18, "datafusion.user_defined.WindowEvaluator.evaluate_all", false]], "evaluate_all_with_rank() (datafusion.user_defined.windowevaluator method)": [[18, "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)": [[14, "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]], "expr_type_error (in module datafusion.expr)": [[4, "datafusion.expr.EXPR_TYPE_ERROR", 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]], "file_compression_type (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_compression_type", false]], "file_compression_type (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_compression_type", false]], "file_extension (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_extension", false]], "file_extension (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_extension", false]], "file_sort_order (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.file_sort_order", false]], "file_sort_order (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.file_sort_order", 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_json() (datafusion.substrait.plan static method)": [[16, "datafusion.substrait.Plan.from_json", 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)": [[14, "datafusion.plan.ExecutionPlan.from_proto", false]], "from_proto() (datafusion.plan.logicalplan static method)": [[14, "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)": [[18, "datafusion.user_defined.AggregateUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.from_pycapsule", false]], "from_pycapsule() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[16, "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)": [[18, "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]], "has_header (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.has_header", false]], "has_header (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.has_header", 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)": [[18, "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)": [[18, "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)": [[14, "datafusion.plan.LogicalPlan.inputs", false]], "insertop (class in datafusion)": [[7, "datafusion.InsertOp", false]], "insertop (class in datafusion.dataframe)": [[2, "datafusion.dataframe.InsertOp", 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)": [[18, "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)": [[14, "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]], "max_row_group_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.max_row_group_size", false]], "max_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.max_rows", 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]], "maximum_buffered_record_batches_per_stream (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_buffered_record_batches_per_stream", false]], "maximum_parallel_row_group_writers (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.maximum_parallel_row_group_writers", false]], "maximum_parallel_row_group_writers (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.maximum_parallel_row_group_writers", 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)": [[18, "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_catalog() (datafusion.catalog.cataloglist static method)": [[0, "datafusion.catalog.CatalogList.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)": [[18, "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 (datafusion.dataframe_formatter.dataframehtmlformatter attribute)": [[3, "datafusion.dataframe_formatter.DataFrameHtmlFormatter.min_rows", 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.options", false], [14, "module-datafusion.plan", false], [15, "module-datafusion.record_batch", false], [16, "module-datafusion.substrait", false], [17, "module-datafusion.unparser", false], [18, "module-datafusion.user_defined", false]], "mysql() (datafusion.unparser.dialect static method)": [[17, "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.cataloglist method)": [[0, "datafusion.catalog.CatalogList.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]], "newlines_in_values (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.newlines_in_values", false]], "newlines_in_values (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.newlines_in_values", false]], "next() (datafusion.record_batch.recordbatchstream method)": [[15, "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_regex (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.null_regex", false]], "null_regex (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.null_regex", 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]], "overwrite (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.OVERWRITE", false]], "overwrite (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.OVERWRITE", 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]], "parse_sql_expr() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.parse_sql_expr", 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)": [[14, "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)": [[16, "datafusion.substrait.Plan", false]], "plan_internal (datafusion.substrait.plan attribute)": [[16, "datafusion.substrait.Plan.plan_internal", false]], "plan_to_sql() (datafusion.unparser.unparser method)": [[17, "datafusion.unparser.Unparser.plan_to_sql", false]], "postgres() (datafusion.unparser.dialect static method)": [[17, "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)": [[16, "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]], "quote (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.quote", false]], "quote (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.quote", 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)": [[15, "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)": [[15, "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)": [[15, "datafusion.record_batch.RecordBatch", false]], "recordbatchstream (class in datafusion)": [[7, "datafusion.RecordBatchStream", false]], "recordbatchstream (class in datafusion.record_batch)": [[15, "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_instr() (in module datafusion.functions)": [[5, "datafusion.functions.regexp_instr", 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() (datafusion.catalog.cataloglist method)": [[0, "datafusion.catalog.CatalogList.register_catalog", false]], "register_catalog() (datafusion.catalog.catalogproviderlist method)": [[0, "datafusion.catalog.CatalogProviderList.register_catalog", false]], "register_catalog_provider() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider", false]], "register_catalog_provider_list() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.register_catalog_provider_list", 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 (datafusion.dataframe.insertop attribute)": [[2, "datafusion.dataframe.InsertOp.REPLACE", false]], "replace (datafusion.insertop attribute)": [[7, "datafusion.InsertOp.REPLACE", false]], "replace() (in module datafusion.functions)": [[5, "datafusion.functions.replace", false]], "repr_rows (datafusion.dataframe_formatter.dataframehtmlformatter property)": [[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)": [[18, "datafusion.user_defined.ScalarUDF", false]], "scalarudfexportable (class in datafusion.user_defined)": [[18, "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.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema", false]], "schema (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.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_infer_max_records (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.schema_infer_max_records", false]], "schema_infer_max_records (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.schema_infer_max_records", 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]], "select_exprs() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.select_exprs", false]], "serde (class in datafusion.substrait)": [[16, "datafusion.substrait.Serde", false]], "serialize() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize", false]], "serialize_bytes() (datafusion.substrait.serde static method)": [[16, "datafusion.substrait.Serde.serialize_bytes", false]], "serialize_to_plan() (datafusion.substrait.serde static method)": [[16, "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]], "skip_arrow_metadata (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.skip_arrow_metadata", 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]], "sortkey (in module datafusion.expr)": [[4, "datafusion.expr.SortKey", 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)": [[17, "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)": [[18, "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)": [[18, "datafusion.user_defined.Accumulator.state", false]], "statistics_enabled (datafusion.dataframe.parquetcolumnoptions attribute)": [[2, "datafusion.dataframe.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetcolumnoptions attribute)": [[7, "datafusion.ParquetColumnOptions.statistics_enabled", false]], "statistics_enabled (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_enabled", false]], "statistics_truncate_length (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.statistics_truncate_length", false]], "statistics_truncate_length (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.statistics_truncate_length", 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)": [[18, "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.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.schema method)": [[0, "datafusion.catalog.Schema.table_exist", 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]], "table_partition_cols (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.table_partition_cols", false]], "table_partition_cols (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.table_partition_cols", false]], "tablefunction (class in datafusion)": [[7, "datafusion.TableFunction", false]], "tablefunction (class in datafusion.user_defined)": [[18, "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]], "terminator (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.terminator", false]], "terminator (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.terminator", 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_inner() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.to_inner", false]], "to_inner() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.to_inner", false]], "to_json() (datafusion.substrait.plan method)": [[16, "datafusion.substrait.Plan.to_json", 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)": [[14, "datafusion.plan.ExecutionPlan.to_proto", false]], "to_proto() (datafusion.plan.logicalplan method)": [[14, "datafusion.plan.LogicalPlan.to_proto", false]], "to_pyarrow() (datafusion.record_batch.recordbatch method)": [[15, "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)": [[16, "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)": [[14, "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]], "truncated_rows (datafusion.csvreadoptions attribute)": [[7, "datafusion.CsvReadOptions.truncated_rows", false]], "truncated_rows (datafusion.options.csvreadoptions attribute)": [[13, "datafusion.options.CsvReadOptions.truncated_rows", 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)": [[18, "datafusion.user_defined.udaf", false]], "udaf() (datafusion.aggregateudf static method)": [[7, "datafusion.AggregateUDF.udaf", false]], "udaf() (datafusion.user_defined.aggregateudf static method)": [[18, "datafusion.user_defined.AggregateUDF.udaf", false]], "udf (in module datafusion)": [[7, "datafusion.udf", false]], "udf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udf", false]], "udf() (datafusion.scalarudf static method)": [[7, "datafusion.ScalarUDF.udf", false]], "udf() (datafusion.user_defined.scalarudf static method)": [[18, "datafusion.user_defined.ScalarUDF.udf", false]], "udtf (in module datafusion)": [[7, "datafusion.udtf", false]], "udtf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udtf", false]], "udtf() (datafusion.tablefunction static method)": [[7, "datafusion.TableFunction.udtf", false]], "udtf() (datafusion.user_defined.tablefunction static method)": [[18, "datafusion.user_defined.TableFunction.udtf", false]], "udwf (in module datafusion)": [[7, "datafusion.udwf", false]], "udwf (in module datafusion.user_defined)": [[18, "datafusion.user_defined.udwf", false]], "udwf() (datafusion.user_defined.windowudf static method)": [[18, "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)": [[17, "datafusion.unparser.Unparser", false]], "unparser (datafusion.unparser.unparser attribute)": [[17, "datafusion.unparser.Unparser.unparser", false]], "update() (datafusion.accumulator method)": [[7, "datafusion.Accumulator.update", false]], "update() (datafusion.user_defined.accumulator method)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.Volatility.Volatile", false]], "volatility (class in datafusion.user_defined)": [[18, "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)": [[18, "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)": [[18, "datafusion.user_defined.WindowUDF", false]], "windowudfexportable (class in datafusion.user_defined)": [[18, "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_comment() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_comment", false]], "with_comment() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_comment", 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_delimiter() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_delimiter", false]], "with_delimiter() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_delimiter", 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_escape() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_escape", false]], "with_escape() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_escape", 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_file_compression_type() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_compression_type", false]], "with_file_compression_type() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_compression_type", false]], "with_file_extension() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_extension", false]], "with_file_extension() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_extension", false]], "with_file_sort_order() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_file_sort_order", false]], "with_file_sort_order() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_file_sort_order", 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_has_header() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_has_header", false]], "with_has_header() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_has_header", 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_logical_extension_codec() (datafusion.context.sessioncontext method)": [[1, "datafusion.context.SessionContext.with_logical_extension_codec", false]], "with_newlines_in_values() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_newlines_in_values", false]], "with_newlines_in_values() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_newlines_in_values", false]], "with_null_regex() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_null_regex", false]], "with_null_regex() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_null_regex", 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)": [[17, "datafusion.unparser.Unparser.with_pretty", false]], "with_quote() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_quote", false]], "with_quote() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_quote", 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_schema() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema", false]], "with_schema() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema", false]], "with_schema_infer_max_records() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_schema_infer_max_records", false]], "with_schema_infer_max_records() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_schema_infer_max_records", false]], "with_table_partition_cols() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_table_partition_cols", false]], "with_table_partition_cols() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_table_partition_cols", 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_terminator() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_terminator", false]], "with_terminator() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_terminator", false]], "with_truncated_rows() (datafusion.csvreadoptions method)": [[7, "datafusion.CsvReadOptions.with_truncated_rows", false]], "with_truncated_rows() (datafusion.options.csvreadoptions method)": [[13, "datafusion.options.CsvReadOptions.with_truncated_rows", 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]], "write_batch_size (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.write_batch_size", 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]], "write_table() (datafusion.dataframe.dataframe method)": [[2, "datafusion.dataframe.DataFrame.write_table", false]], "writer_version (datafusion.dataframe.parquetwriteroptions attribute)": [[2, "datafusion.dataframe.ParquetWriterOptions.writer_version", false]], "writer_version (datafusion.parquetwriteroptions attribute)": [[7, "datafusion.ParquetWriterOptions.writer_version", 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, 1, 1, "", "CsvReadOptions"], [7, 4, 1, "", "DFSchema"], [7, 1, 1, "", "DataFrameWriteOptions"], [7, 1, 1, "", "Database"], [7, 1, 1, "", "ExecutionPlan"], [7, 1, 1, "", "Expr"], [7, 1, 1, "", "InsertOp"], [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, "-", "options"], [14, 0, 0, "-", "plan"], [7, 6, 1, "", "read_avro"], [7, 6, 1, "", "read_csv"], [7, 6, 1, "", "read_json"], [7, 6, 1, "", "read_parquet"], [15, 0, 0, "-", "record_batch"], [16, 0, 0, "-", "substrait"], [7, 4, 1, "", "udaf"], [7, 4, 1, "", "udf"], [7, 4, 1, "", "udtf"], [7, 4, 1, "", "udwf"], [17, 0, 0, "-", "unparser"], [18, 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.CsvReadOptions": [[7, 3, 1, "", "comment"], [7, 3, 1, "", "delimiter"], [7, 3, 1, "", "escape"], [7, 3, 1, "", "file_compression_type"], [7, 3, 1, "", "file_extension"], [7, 3, 1, "", "file_sort_order"], [7, 3, 1, "", "has_header"], [7, 3, 1, "", "newlines_in_values"], [7, 3, 1, "", "null_regex"], [7, 3, 1, "", "quote"], [7, 3, 1, "", "schema"], [7, 3, 1, "", "schema_infer_max_records"], [7, 3, 1, "", "table_partition_cols"], [7, 3, 1, "", "terminator"], [7, 2, 1, "", "to_inner"], [7, 3, 1, "", "truncated_rows"], [7, 2, 1, "", "with_comment"], [7, 2, 1, "", "with_delimiter"], [7, 2, 1, "", "with_escape"], [7, 2, 1, "", "with_file_compression_type"], [7, 2, 1, "", "with_file_extension"], [7, 2, 1, "", "with_file_sort_order"], [7, 2, 1, "", "with_has_header"], [7, 2, 1, "", "with_newlines_in_values"], [7, 2, 1, "", "with_null_regex"], [7, 2, 1, "", "with_quote"], [7, 2, 1, "", "with_schema"], [7, 2, 1, "", "with_schema_infer_max_records"], [7, 2, 1, "", "with_table_partition_cols"], [7, 2, 1, "", "with_terminator"], [7, 2, 1, "", "with_truncated_rows"]], "datafusion.DataFrameWriteOptions": [[7, 3, 1, "", "_raw_write_options"]], "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.InsertOp": [[7, 3, 1, "", "APPEND"], [7, 3, 1, "", "OVERWRITE"], [7, 3, 1, "", "REPLACE"]], "datafusion.LogicalPlan": [[7, 2, 1, "", "__eq__"], [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, "", "bloom_filter_enabled"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "compression"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "statistics_enabled"]], "datafusion.ParquetWriterOptions": [[7, 3, 1, "", "allow_single_file_parallelism"], [7, 3, 1, "", "bloom_filter_fpp"], [7, 3, 1, "", "bloom_filter_ndv"], [7, 3, 1, "", "bloom_filter_on_write"], [7, 3, 1, "", "column_index_truncate_length"], [7, 3, 1, "", "column_specific_options"], [7, 3, 1, "", "created_by"], [7, 3, 1, "", "data_page_row_count_limit"], [7, 3, 1, "", "data_pagesize_limit"], [7, 3, 1, "", "dictionary_enabled"], [7, 3, 1, "", "dictionary_page_size_limit"], [7, 3, 1, "", "encoding"], [7, 3, 1, "", "max_row_group_size"], [7, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [7, 3, 1, "", "maximum_parallel_row_group_writers"], [7, 3, 1, "", "skip_arrow_metadata"], [7, 3, 1, "", "statistics_enabled"], [7, 3, 1, "", "statistics_truncate_length"], [7, 3, 1, "", "write_batch_size"], [7, 3, 1, "", "writer_version"]], "datafusion.RecordBatch": [[7, 2, 1, "", "__arrow_c_array__"], [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, 3, 1, "", "__slots__"], [7, 3, 1, "", "_inner"], [7, 2, 1, "", "from_dataset"], [7, 5, 1, "", "kind"], [7, 5, 1, "", "schema"]], "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, "", "CatalogList"], [0, 1, 1, "", "CatalogProvider"], [0, 1, 1, "", "CatalogProviderList"], [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.CatalogList": [[0, 2, 1, "", "__repr__"], [0, 2, 1, "", "catalog"], [0, 3, 1, "", "catalog_list"], [0, 2, 1, "", "catalog_names"], [0, 2, 1, "", "memory_catalog"], [0, 2, 1, "", "names"], [0, 2, 1, "", "register_catalog"]], "datafusion.catalog.CatalogProvider": [[0, 2, 1, "", "deregister_schema"], [0, 2, 1, "", "register_schema"], [0, 2, 1, "", "schema"], [0, 2, 1, "", "schema_names"]], "datafusion.catalog.CatalogProviderList": [[0, 2, 1, "", "catalog"], [0, 2, 1, "", "catalog_names"], [0, 2, 1, "", "register_catalog"]], "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_exist"], [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, 3, 1, "", "__slots__"], [0, 3, 1, "", "_inner"], [0, 2, 1, "", "from_dataset"], [0, 5, 1, "", "kind"], [0, 5, 1, "", "schema"]], "datafusion.context": [[1, 1, 1, "", "ArrowArrayExportable"], [1, 1, 1, "", "ArrowStreamExportable"], [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.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, "", "__datafusion_logical_extension_codec__"], [1, 2, 1, "", "__datafusion_task_context_provider__"], [1, 2, 1, "", "__repr__"], [1, 2, 1, "", "_convert_file_sort_order"], [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_catalog_provider_list"], [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"], [1, 2, 1, "", "with_logical_extension_codec"]], "datafusion.context.TableProviderExportable": [[1, 2, 1, "", "__datafusion_table_provider__"]], "datafusion.dataframe": [[2, 1, 1, "", "Compression"], [2, 1, 1, "", "DataFrame"], [2, 1, 1, "", "DataFrameWriteOptions"], [2, 1, 1, "", "InsertOp"], [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, "", "__aiter__"], [2, 2, 1, "", "__arrow_c_stream__"], [2, 2, 1, "", "__getitem__"], [2, 2, 1, "", "__iter__"], [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_column"], [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, "", "parse_sql_expr"], [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, "", "select_exprs"], [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"], [2, 2, 1, "", "write_table"]], "datafusion.dataframe.DataFrameWriteOptions": [[2, 3, 1, "", "_raw_write_options"]], "datafusion.dataframe.InsertOp": [[2, 3, 1, "", "APPEND"], [2, 3, 1, "", "OVERWRITE"], [2, 3, 1, "", "REPLACE"]], "datafusion.dataframe.ParquetColumnOptions": [[2, 3, 1, "", "bloom_filter_enabled"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "compression"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "statistics_enabled"]], "datafusion.dataframe.ParquetWriterOptions": [[2, 3, 1, "", "allow_single_file_parallelism"], [2, 3, 1, "", "bloom_filter_fpp"], [2, 3, 1, "", "bloom_filter_ndv"], [2, 3, 1, "", "bloom_filter_on_write"], [2, 3, 1, "", "column_index_truncate_length"], [2, 3, 1, "", "column_specific_options"], [2, 3, 1, "", "created_by"], [2, 3, 1, "", "data_page_row_count_limit"], [2, 3, 1, "", "data_pagesize_limit"], [2, 3, 1, "", "dictionary_enabled"], [2, 3, 1, "", "dictionary_page_size_limit"], [2, 3, 1, "", "encoding"], [2, 3, 1, "", "max_row_group_size"], [2, 3, 1, "", "maximum_buffered_record_batches_per_stream"], [2, 3, 1, "", "maximum_parallel_row_group_writers"], [2, 3, 1, "", "skip_arrow_metadata"], [2, 3, 1, "", "statistics_enabled"], [2, 3, 1, "", "statistics_truncate_length"], [2, 3, 1, "", "write_batch_size"], [2, 3, 1, "", "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_formatter_parameters"], [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, "", "_max_rows"], [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, 5, 1, "", "max_rows"], [3, 3, 1, "", "max_width"], [3, 3, 1, "", "min_rows"], [3, 2, 1, "", "register_formatter"], [3, 5, 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, "", "EXPR_TYPE_ERROR"], [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, "", "SortKey"], [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"], [4, 6, 1, "", "ensure_expr"], [4, 6, 1, "", "ensure_expr_list"]], "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_instr"], [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.options": [[13, 1, 1, "", "CsvReadOptions"]], "datafusion.options.CsvReadOptions": [[13, 3, 1, "", "comment"], [13, 3, 1, "", "delimiter"], [13, 3, 1, "", "escape"], [13, 3, 1, "", "file_compression_type"], [13, 3, 1, "", "file_extension"], [13, 3, 1, "", "file_sort_order"], [13, 3, 1, "", "has_header"], [13, 3, 1, "", "newlines_in_values"], [13, 3, 1, "", "null_regex"], [13, 3, 1, "", "quote"], [13, 3, 1, "", "schema"], [13, 3, 1, "", "schema_infer_max_records"], [13, 3, 1, "", "table_partition_cols"], [13, 3, 1, "", "terminator"], [13, 2, 1, "", "to_inner"], [13, 3, 1, "", "truncated_rows"], [13, 2, 1, "", "with_comment"], [13, 2, 1, "", "with_delimiter"], [13, 2, 1, "", "with_escape"], [13, 2, 1, "", "with_file_compression_type"], [13, 2, 1, "", "with_file_extension"], [13, 2, 1, "", "with_file_sort_order"], [13, 2, 1, "", "with_has_header"], [13, 2, 1, "", "with_newlines_in_values"], [13, 2, 1, "", "with_null_regex"], [13, 2, 1, "", "with_quote"], [13, 2, 1, "", "with_schema"], [13, 2, 1, "", "with_schema_infer_max_records"], [13, 2, 1, "", "with_table_partition_cols"], [13, 2, 1, "", "with_terminator"], [13, 2, 1, "", "with_truncated_rows"]], "datafusion.plan": [[14, 1, 1, "", "ExecutionPlan"], [14, 1, 1, "", "LogicalPlan"]], "datafusion.plan.ExecutionPlan": [[14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "children"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "from_proto"], [14, 5, 1, "", "partition_count"], [14, 2, 1, "", "to_proto"]], "datafusion.plan.LogicalPlan": [[14, 2, 1, "", "__eq__"], [14, 2, 1, "", "__repr__"], [14, 3, 1, "", "_raw_plan"], [14, 2, 1, "", "display"], [14, 2, 1, "", "display_graphviz"], [14, 2, 1, "", "display_indent"], [14, 2, 1, "", "display_indent_schema"], [14, 2, 1, "", "from_proto"], [14, 2, 1, "", "inputs"], [14, 2, 1, "", "to_proto"], [14, 2, 1, "", "to_variant"]], "datafusion.record_batch": [[15, 1, 1, "", "RecordBatch"], [15, 1, 1, "", "RecordBatchStream"]], "datafusion.record_batch.RecordBatch": [[15, 2, 1, "", "__arrow_c_array__"], [15, 3, 1, "", "record_batch"], [15, 2, 1, "", "to_pyarrow"]], "datafusion.record_batch.RecordBatchStream": [[15, 2, 1, "", "__aiter__"], [15, 2, 1, "", "__anext__"], [15, 2, 1, "", "__iter__"], [15, 2, 1, "", "__next__"], [15, 2, 1, "", "next"], [15, 3, 1, "", "rbs"]], "datafusion.substrait": [[16, 1, 1, "", "Consumer"], [16, 1, 1, "", "Plan"], [16, 1, 1, "", "Producer"], [16, 1, 1, "", "Serde"]], "datafusion.substrait.Consumer": [[16, 2, 1, "", "from_substrait_plan"]], "datafusion.substrait.Plan": [[16, 2, 1, "", "encode"], [16, 2, 1, "", "from_json"], [16, 3, 1, "", "plan_internal"], [16, 2, 1, "", "to_json"]], "datafusion.substrait.Producer": [[16, 2, 1, "", "to_substrait_plan"]], "datafusion.substrait.Serde": [[16, 2, 1, "", "deserialize"], [16, 2, 1, "", "deserialize_bytes"], [16, 2, 1, "", "serialize"], [16, 2, 1, "", "serialize_bytes"], [16, 2, 1, "", "serialize_to_plan"]], "datafusion.unparser": [[17, 1, 1, "", "Dialect"], [17, 1, 1, "", "Unparser"]], "datafusion.unparser.Dialect": [[17, 2, 1, "", "default"], [17, 3, 1, "", "dialect"], [17, 2, 1, "", "duckdb"], [17, 2, 1, "", "mysql"], [17, 2, 1, "", "postgres"], [17, 2, 1, "", "sqlite"]], "datafusion.unparser.Unparser": [[17, 2, 1, "", "plan_to_sql"], [17, 3, 1, "", "unparser"], [17, 2, 1, "", "with_pretty"]], "datafusion.user_defined": [[18, 1, 1, "", "Accumulator"], [18, 1, 1, "", "AggregateUDF"], [18, 1, 1, "", "AggregateUDFExportable"], [18, 1, 1, "", "ScalarUDF"], [18, 1, 1, "", "ScalarUDFExportable"], [18, 1, 1, "", "TableFunction"], [18, 1, 1, "", "Volatility"], [18, 1, 1, "", "WindowEvaluator"], [18, 1, 1, "", "WindowUDF"], [18, 1, 1, "", "WindowUDFExportable"], [18, 4, 1, "", "_R"], [18, 6, 1, "", "_is_pycapsule"], [18, 6, 1, "", "data_type_or_field_to_field"], [18, 6, 1, "", "data_types_or_fields_to_field_list"], [18, 4, 1, "", "udaf"], [18, 4, 1, "", "udf"], [18, 4, 1, "", "udtf"], [18, 4, 1, "", "udwf"]], "datafusion.user_defined.Accumulator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "merge"], [18, 2, 1, "", "state"], [18, 2, 1, "", "update"]], "datafusion.user_defined.AggregateUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udaf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udaf"]], "datafusion.user_defined.AggregateUDFExportable": [[18, 2, 1, "", "__datafusion_aggregate_udf__"]], "datafusion.user_defined.ScalarUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 3, 1, "", "_udf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udf"]], "datafusion.user_defined.ScalarUDFExportable": [[18, 2, 1, "", "__datafusion_scalar_udf__"]], "datafusion.user_defined.TableFunction": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_table_udf"], [18, 2, 1, "", "_create_table_udf_decorator"], [18, 3, 1, "", "_udtf"], [18, 2, 1, "", "udtf"]], "datafusion.user_defined.Volatility": [[18, 3, 1, "", "Immutable"], [18, 3, 1, "", "Stable"], [18, 3, 1, "", "Volatile"], [18, 2, 1, "", "__str__"]], "datafusion.user_defined.WindowEvaluator": [[18, 2, 1, "", "evaluate"], [18, 2, 1, "", "evaluate_all"], [18, 2, 1, "", "evaluate_all_with_rank"], [18, 2, 1, "", "get_range"], [18, 2, 1, "", "include_rank"], [18, 2, 1, "", "is_causal"], [18, 2, 1, "", "memoize"], [18, 2, 1, "", "supports_bounded_execution"], [18, 2, 1, "", "uses_window_frame"]], "datafusion.user_defined.WindowUDF": [[18, 2, 1, "", "__call__"], [18, 2, 1, "", "__repr__"], [18, 2, 1, "", "_create_window_udf"], [18, 2, 1, "", "_create_window_udf_decorator"], [18, 2, 1, "", "_get_default_name"], [18, 2, 1, "", "_normalize_input_types"], [18, 3, 1, "", "_udwf"], [18, 2, 1, "", "from_pycapsule"], [18, 2, 1, "", "udwf"]], "datafusion.user_defined.WindowUDFExportable": [[18, 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, 13, 18, 20, 21, 26, 27, 29, 31, 32, 33, 34, 35, 36], "0": [2, 4, 5, 7, 18, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 45, 46], "007bff": 37, "01": [23, 27, 30], "01t00": 27, "03": 27, "038": 34, "04023": 5, "05": [27, 30], "06": [27, 30], "08": 27, "09": [23, 27], "1": [2, 4, 5, 7, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 46], "10": [2, 3, 4, 5, 7, 18, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 46], "100": [3, 5, 22, 23, 24, 33, 35, 36, 37, 38, 46], "1000": [1, 3, 7, 11, 13, 25, 37], "10000000": 34, "1024": [1, 2, 3, 7, 37], "103": [22, 35, 38], "104": [22, 35, 38, 46], "1048576": [2, 7], "105": [22, 24, 35, 38], "107": [24, 34], "109": [22, 35, 38, 46], "11": [22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "110": 24, "111": [22, 35, 38, 46], "112": 24, "115": [22, 24, 35, 38], "12": [21, 22, 23, 24, 26, 27, 29, 31, 33, 35, 38], "120": [5, 22, 24, 35, 38], "121": 24, "122": [22, 35, 38], "123": [22, 35, 38, 46], "12371": 5, "125": [5, 24, 27, 46], "128": [4, 5, 7], "12t09": 27, "13": [22, 24, 26, 27, 29, 31, 33, 35, 38], "130": [22, 35, 38, 46], "135": [22, 35, 38], "136": 24, "14": [22, 23, 24, 26, 27, 30, 31, 35, 38], "140": 24, "145": [22, 24, 35, 38], "149": 46, "15": [22, 23, 24, 26, 27, 30, 31, 33, 35, 38], "150": [22, 33, 35, 38], "158": 46, "159": [22, 35, 38, 46], "16": [23, 24, 26, 27, 31, 34], "160": 46, "161": 46, "162": 46, "163": 46, "165": [27, 46], "17": [23, 24, 26, 27, 31, 33], "18": [23, 24, 26, 27, 31, 33], "19": [24, 26, 27, 46], "190": 46, "1902": 5, "1921": 27, "195": [22, 35, 38], "1970": 27, "1m": [2, 7], "1px": 37, "2": [2, 3, 4, 5, 7, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "20": [2, 5, 7, 18, 22, 24, 26, 27, 32, 33, 35, 37, 38, 46], "200": 46, "20000": [2, 7], "2021": 23, "2026": 27, "205": [22, 35, 38], "2097152": [3, 37], "21": [23, 24, 26, 27, 33, 36], "22": [2, 26, 35], "223": 46, "224": [4, 5, 7], "229": 46, "23": [23, 25, 26, 33, 46], "23076923076923": 24, "2345": 5, "24": [23, 26], "25": [3, 5, 22, 24, 26, 27, 33, 35, 36, 37, 38], "256": [4, 5, 7], "25806451612904": 24, "26": [26, 33], "27": 26, "28": [23, 26, 33], "28571428571429": 24, "29": 26, "2mb": [3, 37], "3": [2, 5, 7, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "30": [22, 24, 26, 32, 33, 35, 38], "300": [3, 37], "309": [22, 27, 35, 38], "31": 26, "314": [22, 27, 35, 38], "318": [22, 27, 35, 38], "32": 26, "33": [23, 26], "333333333333332": 33, "333333333333336": 24, "34": [26, 27], "35": [22, 23, 24, 26, 30, 33, 35, 38], "36": [23, 26], "37": 26, "378": 25, "38": 26, "382": 25, "384": [4, 5, 7], "39": [22, 26, 35, 38, 46], "395": [22, 35, 38], "3rd": 5, "3x": 34, "4": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 46], "40": [5, 21, 22, 24, 26, 32, 35, 38], "405": [22, 27, 35, 38], "41": 26, "42": [24, 26, 33, 35], "42857142857143": 33, "43": [22, 26, 33, 35, 38, 45], "44": [22, 26, 35, 38], "45": [22, 24, 26, 27, 33, 35, 38], "4579": 27, "46": [24, 26], "47": 24, "4732": 27, "48": [22, 24, 35, 38], "49": [22, 26, 35, 38], "495": [22, 35, 38], "4mb": 37, "5": [2, 5, 18, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 38, 39, 46], "50": [3, 5, 7, 22, 24, 32, 35, 37, 38], "500": [3, 7], "5000000": 34, "51": [23, 24, 29, 46], "512": [4, 5, 7], "5129": 27, "52": [22, 24, 31, 35, 38], "525": [22, 27, 35, 38], "53": [24, 27], "530": [22, 35, 38], "534": [22, 27, 35, 38], "54": [24, 26, 27], "55": [22, 24, 33, 35, 38], "5580536720887": 25, "56": [24, 27], "569": 25, "58": [22, 24, 35, 38], "5811388300841898": 25, "59": [22, 35, 38], "6": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 36, 38, 39, 46], "60": [5, 22, 24, 33, 35, 38], "615": 25, "62": [22, 35, 38], "625": [22, 27, 35, 38], "63": [22, 24, 35, 38], "630": [22, 35, 38], "634": [22, 27, 35, 38], "64": [2, 7, 21, 22, 33, 35, 38], "65": [22, 24, 26, 30, 33, 35, 38], "66": [23, 24], "666666666666668": 33, "66666666666667": 24, "666667": 5, "67": [24, 26], "7": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "70": [22, 24, 33, 35, 38], "71": [24, 26], "72": 24, "73": 23, "732": 27, "75": [5, 22, 24, 35, 38, 46], "757149654": 27, "76": 33, "77777777777777": 24, "78": [22, 23, 35, 38, 46], "785714285714285": 24, "78571428571429": 24, "79": [22, 23, 35, 38], "8": [22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "80": [5, 22, 24, 33, 35, 38], "81": 23, "82": [22, 35, 38, 46], "83": [22, 24, 35, 38, 46], "833333333333336": 24, "84": [22, 33, 35, 38, 46], "85": [22, 24, 35, 38], "855": 27, "86": 24, "86740bfd3d9831d6b7c1d0e1bf4a21d91598a0ac": [4, 7], "887": 25, "88888888888889": 24, "8px": 37, "9": [5, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 39, 46], "90": [5, 22, 24, 33, 35, 38], "91": 24, "92": 23, "939": 25, "94": [23, 30], "95": [23, 24, 33, 46], "96": [23, 24], "972": 27, "98": [24, 46], "A": [0, 1, 2, 4, 5, 7, 8, 14, 16, 18, 23, 25, 29, 33, 35, 36, 41, 45, 47], "AND": [2, 4, 5, 7, 18], "AS": 2, "As": [5, 7, 18, 20, 26, 30, 31, 35], "At": [5, 20], "BY": 18, "Be": 2, "By": [2, 7, 13, 20, 21, 24, 35], "For": [1, 2, 5, 16, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 34, 36, 37, 38, 47], "INTO": [1, 7], "If": [0, 1, 2, 3, 4, 5, 7, 8, 11, 13, 18, 20, 21, 24, 27, 29, 31, 33, 35, 38, 41, 45, 46], "In": [7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 37, 38, 39, 46], "It": [1, 2, 3, 4, 5, 7, 18, 20, 22, 23, 24, 26, 29, 44], "Its": 22, "No": [2, 7], "Not": [2, 4, 7], "OR": [4, 5, 7], "On": [2, 20, 35], "One": [2, 4, 20, 24, 33, 35], "Or": [34, 37], "That": [4, 7], "The": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 39, 46, 47], "Then": 31, "There": [2, 5, 7, 27, 31, 35], "These": [2, 5, 7, 15, 18, 24, 26, 31, 34, 36, 37, 46], "To": [2, 5, 20, 21, 26, 27, 30, 31, 33, 34, 35, 36, 38, 39, 45, 46, 47], "Will": [2, 37], "With": [4, 7, 36, 38, 39], "_": 20, "__add__": [4, 7], "__aiter__": [2, 7, 15], "__and__": [4, 7], "__anext__": [7, 15], "__arrow_c_array__": [1, 7, 15, 39], "__arrow_c_stream__": [1, 2, 36, 39], "__call__": [3, 7, 18], "__datafusion_aggregate_udf__": 18, "__datafusion_catalog_provider__": 47, "__datafusion_logical_extension_codec__": [1, 47], "__datafusion_scalar_udf__": 18, "__datafusion_table_function__": 31, "__datafusion_table_provider__": [1, 20, 45], "__datafusion_task_context_provider__": 1, "__datafusion_window_udf__": 18, "__eq__": [4, 7, 14], "__ge__": [4, 7], "__getitem__": [2, 4, 7], "__gt__": [4, 7], "__init__": [7, 18, 31], "__invert__": [4, 7], "__iter__": [2, 7, 15], "__le__": [4, 7], "__lt__": [4, 7], "__mod__": [4, 7], "__mul__": [4, 7], "__ne__": [4, 7], "__next__": [7, 15], "__or__": [4, 7], "__radd__": [4, 7], "__rand__": [4, 7], "__repr__": [0, 1, 2, 3, 4, 7, 14, 18, 37], "__richcmp__": [4, 7], "__rmod__": [4, 7], "__rmul__": [4, 7], "__ror__": [4, 7], "__rsub__": [4, 7], "__rtruediv__": [4, 7], "__slots__": [0, 7], "__str__": 18, "__sub__": [4, 7], "__truediv__": [4, 7], "__version__": 38, "_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_file_sort_ord": 1, "_convert_table_partition_col": 1, "_create_table_udf": [7, 18], "_create_table_udf_decor": [7, 18], "_create_window_udf": [7, 18], "_create_window_udf_decor": [7, 18], "_custom_cell_build": 3, "_custom_header_build": 3, "_default_formatt": 3, "_export_to_c_capsul": 2, "_format_cell_valu": 3, "_get_cell_valu": 3, "_get_default_css": 3, "_get_default_nam": [7, 18], "_get_javascript": 3, "_inner": [0, 7], "_intern": [0, 1, 2, 4, 7, 13, 14, 15, 16, 17], "_io_custom_table_provid": 31, "_is_pycapsul": 18, "_max_row": 3, "_normalize_input_typ": [7, 18], "_null_treat": 4, "_order_bi": 4, "_partition_bi": 4, "_r": [7, 18], "_raw_plan": [7, 14], "_raw_schema": 0, "_raw_write_opt": [2, 7], "_refresh_formatter_refer": 3, "_repr_html_": [2, 3, 37], "_sum": [7, 18, 31], "_to_pyarrow_typ": [4, 7], "_type_formatt": 3, "_typesh": [7, 18], "_udaf": [7, 18], "_udf": [7, 18], "_udtf": [7, 18], "_udwf": [7, 18], "_validate_bool": 3, "_validate_formatter_paramet": 3, "_validate_positive_int": 3, "_window_fram": 4, "_window_funct": 5, "a0": 26, "a_siz": 26, "ab": [4, 5, 7], "abc": [0, 1, 2, 3, 4, 7, 8, 18], "abi": 20, "abi3": 21, "abi_st": 20, "abil": [35, 46], "abl": [7, 14], "about": [16, 17, 20, 22, 33, 34, 36], "abov": [5, 20, 24, 29, 33, 36, 46], "absolut": [4, 5, 7], "abstract": [0, 7, 8, 18, 26, 31, 35, 36], "accept": [1, 2, 4, 5, 7, 36, 39], "access": [1, 3, 7, 11, 20, 26, 35, 36, 47], "access_key_id": 35, "account": 35, "accum": [7, 18], "accumul": [7, 18, 31], "accur": 34, "achiev": 22, "aco": [4, 5, 7], "acosh": [4, 5, 7], "acronym": 20, "across": [3, 18, 20, 26, 34, 37, 46], "act": [7, 14], "action": 36, "activ": [20, 21], "actual": [2, 34, 36], "ad": [2, 20, 35], "adapt": 20, "add": [0, 1, 2, 3, 4, 5, 20, 21, 36], "add_3": 2, "addit": [2, 3, 4, 5, 7, 16, 17, 18, 20, 21, 31, 34, 35, 36, 41, 47], "addition": [20, 23], "adhoc": 21, "adopt": 20, "advanc": [0, 1, 2, 7, 11, 31, 35, 36, 37], "advantag": [20, 21, 22], "affect": [7, 13, 18, 24, 34, 37], "after": [1, 2, 3, 4, 5, 7, 18, 29, 31, 37], "ag": [26, 36], "against": [1, 2, 4, 5, 18, 20, 22, 32, 37], "age_col": 26, "age_in_year": 26, "agg": 2, "aggreg": [1, 2, 4, 5, 7, 18, 23, 28, 34, 36], "aggregatefunct": 4, "aggregateudf": [1, 7, 18], "aggregateudfexport": [7, 18], "agnost": 36, "aim": 38, "aiter": 2, "albert": 26, "algorithm": [2, 5], "alia": [0, 1, 2, 3, 4, 5, 7, 23, 24, 26, 27, 30, 31, 33, 36, 39], "alias": 21, "alic": 29, "align": [2, 37], "all": [0, 1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41, 46], "alloc": [2, 34], "allow": [1, 2, 3, 7, 13, 15, 18, 20, 21, 22, 24, 26, 27, 31, 34, 35, 36, 37, 41, 46], "allow_single_file_parallel": [2, 7], "alpha": [31, 35], "alreadi": [2, 5, 7, 20], "also": [1, 2, 3, 7, 18, 20, 21, 22, 24, 26, 27, 31, 33, 36, 37, 38, 46], "altern": [30, 41, 44], "alternate_a": 2, "alwai": [18, 37], "amazons3": [12, 35], "ambigu": 29, "amount": [2, 18, 36], "an": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 44, 46, 47], "analyt": 33, "analyz": [2, 4, 21], "ani": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 24, 29, 31, 33, 35, 36, 39], "annot": 21, "anoth": [2, 5, 7, 11, 20, 46], "anti": [2, 28], "apach": [1, 2, 4, 5, 7, 20, 21, 22, 39], "apart": 22, "api": [1, 2, 4, 7, 14, 20, 21, 22, 27, 33, 34, 35, 36, 37, 46], "appear": [4, 5, 7, 20], "append": [2, 5, 7, 31, 35], "appli": [2, 3, 7, 15, 20, 37], "applic": [20, 34], "approach": [5, 24, 26, 31, 34, 35, 46], "appropri": [18, 21, 31, 35, 37], "approx_distinct": [5, 24], "approx_median": [5, 24], "approx_percentile_cont": [5, 24], "approx_percentile_cont_with_weight": [5, 24], "approxim": [5, 24], "ar": [1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 46], "arbitrari": [2, 5], "arc": [4, 5, 7, 20, 31, 45, 47], "architectur": 34, "area": 20, "arg": [1, 2, 5, 7, 16, 18, 21], "argument": [2, 4, 5, 7, 18, 24, 31], "arithmet": 36, "around": [5, 21, 35], "arr": 36, "arrai": [1, 2, 3, 4, 5, 7, 18, 24, 28, 31, 35, 36, 39], "array1": 5, "array2": 5, "array_agg": [5, 24], "array_append": [5, 21], "array_cat": [5, 26], "array_concat": [5, 26], "array_dim": [4, 5, 7], "array_distinct": [4, 5, 7], "array_el": [4, 5, 7, 26], "array_empti": [4, 5, 7, 26], "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, 26], "array_replac": 5, "array_replace_al": 5, "array_replace_n": 5, "array_res": 5, "array_slic": [4, 5, 7], "array_sort": 5, "array_to_str": 5, "array_union": 5, "arriv": 39, "arro3": [7, 18, 31], "arrow": [1, 2, 3, 4, 5, 7, 15, 18, 21, 22, 25, 35, 38, 42], "arrow_cast": [4, 5, 7, 27], "arrow_datafusion_python_root": 21, "arrow_t": 36, "arrow_typ": 20, "arrow_typeof": [4, 5, 7], "arrowarrai": [7, 15], "arrowarrayexport": 1, "arrowarraystream": 2, "arrowschema": [7, 15], "arrowstreamexport": 1, "arxiv": 5, "as_pi": [7, 18, 31], "ascend": [4, 5, 7, 24, 33, 36], "ascii": [4, 5, 7, 13], "asin": [4, 5, 7], "asinh": [4, 5, 7], "ask": 20, "assembl": 1, "assign": [4, 5, 7], "assist": 21, "associ": [0, 1, 4, 5, 7, 20], "assum": [2, 5, 7, 18, 21, 35], "assumpt": 22, "async": [2, 7, 15, 36], "asynchron": [7, 15, 36], "asyncio": 36, "asynciter": 2, "atan": [4, 5, 7], "atan2": 5, "atanh": [4, 5, 7], "atk": [22, 35, 38], "attach": [4, 5, 7, 34], "attack": [22, 24, 27, 33, 35, 38, 46], "attempt": [1, 2, 7, 15, 18, 20, 21, 31], "attr_nam": 47, "attribut": 20, "auto": 19, "autoapi": 19, "automat": [1, 2, 7, 34, 36, 37], "avail": [2, 3, 7, 24, 28, 31, 34, 35, 36, 45], "averag": [5, 18, 33], "avg": [5, 18, 24, 33], "avoid": [1, 7, 11, 20], "avro": [1, 7, 11, 35, 36, 37, 42], "await": 36, "awar": [2, 30], "aws_access_key_id": 35, "aws_secret_access_kei": 35, "b": [2, 5, 25, 26, 31, 32, 35, 36, 39], "back": [4, 7, 18, 20, 22, 31, 35, 37, 39], "background": 37, "backward": 3, "balanc": 37, "bar": 34, "base": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 18, 19, 26, 29, 31, 34, 35], "base64": 5, "baseinputsourc": [8, 9, 10], "basi": [2, 7, 18, 31], "basic": [7, 18, 23, 28, 30, 31, 34, 35], "basic_typ": 27, "batch": [1, 2, 3, 7, 14, 15, 18, 25, 31, 32, 35, 36, 37, 39], "batch_arrai": 31, "batch_siz": [1, 7], "becaus": [2, 4, 7, 20, 31, 35], "becca": 26, "beedril": [22, 33, 35, 38], "beedrillmega": [22, 33, 35, 38], "been": [1, 3, 20, 31], "befor": [3, 5, 21, 26, 31, 37], "beforehand": [1, 7], "begin": [1, 4, 5, 7, 13, 18, 37], "behavior": [5, 7, 13], "being": 2, "below": [23, 24, 35, 36], "benefit": [2, 7, 34], "best": [1, 2, 7, 18, 20, 31], "beta": 35, "better": [2, 7, 37], "between": [1, 4, 5, 7, 18, 20, 22, 23, 29, 31, 33, 34], "bia": [7, 18], "bias_10": [7, 18], "biased_numb": [7, 18], "biasednumb": [7, 18], "bin": [5, 21], "binari": [4, 5, 7, 14, 20, 47], "binaryexpr": [4, 7], "bind": [7, 18, 20, 21, 22, 35, 38], "bit": [4, 5, 7], "bit_and": [5, 24], "bit_length": [4, 5, 7], "bit_or": [5, 24], "bit_pack": [2, 7], "bit_xor": [5, 24], "bitwis": [5, 26], "blake2": 5, "blake2b": 5, "blake3": 5, "blastois": [22, 35, 38], "blastoisemega": [22, 35, 38], "blob": [4, 7], "blog": [21, 31], "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": 26, "bob": 29, "bodi": 3, "bool": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 17, 18], "bool_": 31, "bool_and": [5, 24], "bool_or": [5, 24], "boolean": [3, 4, 5, 7, 28], "boost": [2, 7], "bootstrap": 21, "border": 37, "borrow": 20, "both": [2, 4, 5, 7, 18, 20, 21, 26, 29, 31, 36, 46], "bottleneck": 34, "bound": [4, 7, 18, 31, 33, 45, 47], "boundari": [18, 20, 33, 36], "bow": 33, "box": 20, "bracket": 26, "break": 20, "bronz": 5, "brotli": [2, 7], "btrim": [4, 5, 7], "bucket_nam": 35, "bug": [20, 22, 24, 33, 35, 38], "build": [3, 4, 5, 7, 20, 22, 23, 24, 33, 36, 47], "build_flag": 21, "build_tabl": [8, 9, 10], "builder": [3, 4, 5, 7, 13, 24, 33], "built": [0, 2, 7, 18, 20, 24, 26, 27, 31], "bulb": 27, "bulbafleur": 27, "bulbasaur": [22, 27, 33, 35, 38], "bulk": 20, "butterfre": [22, 33, 35, 38], "button": 3, "byte": [1, 2, 3, 4, 5, 7, 14, 16], "byte_stream_split": [2, 7], "bz2": [7, 13], "c": [1, 2, 7, 15, 18, 20, 21, 22, 25, 35, 36, 39], "cach": [2, 3, 7], "calcul": [2, 5, 18, 31], "call": [0, 2, 3, 4, 5, 7, 14, 15, 16, 17, 18, 20, 23, 24, 26, 31, 35, 36, 37], "call0": 47, "callabl": [2, 3, 7, 18], "caller": 20, "can": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "can_retir": 26, "candid": 4, "cannot": [1, 5, 7, 11, 46], "canon": 20, "canonical_nam": [4, 7], "capabl": [34, 46], "capit": [4, 5, 7, 30], "capsul": [2, 20, 47], "capsule_t": 45, "capsuletyp": [7, 18], "captur": 5, "cardin": [4, 5, 7, 26], "carefulli": 20, "cargo": 21, "carlo": 26, "cascad": [0, 7], "case": [2, 4, 5, 7, 18, 20, 24, 27, 30, 31, 33, 34, 35, 46], "case_build": 4, "casebuild": [4, 5], "cast": [2, 4, 5, 7, 28, 46], "castabl": [4, 7], "catalog": [1, 2, 7, 17, 19, 47], "catalog_list": 0, "catalog_nam": [0, 1], "cataloglist": [0, 1], "catalogprovid": [0, 1, 35, 46, 47], "catalogproviderexport": [0, 1], "catalogproviderlist": [0, 1], "catalogproviderlistexport": 1, "categori": [2, 27], "caterpi": [22, 33, 35, 38], "caus": [1, 7, 21, 33], "cbrt": [4, 5, 7], "cdatainterfac": [1, 2], "ceil": [4, 5, 7], "cell": [3, 37], "cellformatt": 3, "certain": 18, "certainli": 21, "chain": [2, 7, 13], "challeng": 20, "chang": [3, 18, 21, 26, 37], "chansei": 24, "char": 27, "char_length": [4, 5, 7, 27], "charact": [3, 4, 5, 7, 13, 37, 41], "character_length": [4, 5, 7], "characterist": 34, "charizard": [22, 27, 33, 35, 38, 46], "charizardmega": [22, 27, 33, 35, 38, 46], "charli": 29, "charmand": [22, 27, 33, 35, 38], "charmeleon": [22, 27, 33, 35, 38], "check": [5, 26, 27], "checksum": [4, 5, 7], "child": 37, "children": [7, 14], "chr": [4, 5, 7], "chrono": 5, "chunk": [2, 7], "chunkedarrai": 2, "ci": [20, 21], "citycab": 29, "class": [21, 31, 35, 37], "classmethod": [1, 2, 3], "classvar": [4, 7], "claus": [18, 33], "clean": 21, "clefabl": 33, "clefairi": [24, 33], "click": 3, "clone": [20, 21, 31, 45, 47], "close": 33, "cloud": 34, "co": [4, 5, 7], "coalesc": [2, 5, 27, 29], "coalesce_duplicate_kei": [2, 29], "code": [3, 4, 5, 7, 20, 27, 35], "codebas": 21, "codec": [1, 2, 7, 47], "coeffici": 5, "coerc": 5, "coercion": 2, "col": [2, 3, 4, 5, 7, 18, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 39, 46], "col1": [18, 36], "col2": 36, "col_attack": 24, "col_diff": 31, "col_idx": 3, "col_spe": 24, "col_type_1": 24, "col_type_2": 24, "collaps": [3, 37], "collect": [1, 2, 3, 4, 7, 18, 22, 23, 25, 32, 34, 36, 46], "collect_column": [2, 36], "collect_partit": 2, "collid": [2, 7], "color": [26, 37], "column": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 23, 24, 25, 27, 28, 29, 31, 33, 34, 41, 46], "column_a": 4, "column_index_truncate_length": [2, 7], "column_nam": [2, 4, 7, 13], "column_specific_opt": [2, 7], "com": [4, 5, 7, 21], "combin": [1, 2, 5, 7, 11, 26, 29, 30, 31, 34], "come": [35, 43], "command": [1, 7, 21, 35], "comment": [7, 13, 20], "common": [4, 5, 7, 8, 9, 10, 20, 24, 27, 29, 33, 35, 39], "commun": [20, 21], "compar": [5, 33], "comparison": [4, 7, 24, 36, 46], "compat": [3, 20, 26, 36], "compel": 20, "compet": 34, "compil": [20, 26], "complet": [4, 5, 7, 8, 20, 21, 31, 35, 36, 37, 45, 47], "complex": [2, 22, 27, 34], "complic": 2, "compon": 5, "compos": 5, "composit": 3, "comprehens": 37, "compress": [1, 2, 7, 11, 13], "compression_level": [2, 7], "comput": [2, 4, 5, 7, 18, 20, 26, 31, 36], "concat": 5, "concat_w": 5, "concaten": [5, 26], "concatenated_arrai": 26, "concept": [1, 2, 4, 7, 26, 34, 46], "concis": 21, "concurr": [1, 7, 34, 36], "condit": 28, "config": [1, 7, 20, 21, 34], "config_intern": [1, 7], "config_opt": [1, 7], "configopt": 20, "configur": [1, 3, 7, 13, 20, 21, 46], "configure_formatt": [3, 7, 37], "conflict": [1, 7, 11], "conjunct": 2, "connect": [1, 23], "consecut": 5, "consequ": 46, "consid": [5, 46], "consider": 37, "consist": [4, 5, 37], "consol": [2, 36], "constraint": 3, "construct": [2, 4, 7, 18, 31, 36, 45], "constructor": [0, 2, 4, 7, 14, 15, 16, 17, 18], "consum": [8, 16, 36, 39], "contain": [2, 3, 4, 5, 7, 13, 14, 18, 19, 20, 21, 24, 26, 29, 31, 37, 41], "content": [21, 28, 37], "context": [0, 3, 5, 7, 11, 14, 16, 19, 20, 31, 32, 34, 37, 39, 46], "continu": [5, 20], "contrast": 29, "contribut": [21, 47], "contributor": 20, "control": [1, 2, 5, 7, 24, 31, 33, 34, 36, 41], "conveni": [7, 18, 35], "convent": [4, 7, 20], "convers": [7, 18, 20, 21, 23, 36, 46], "convert": [0, 1, 2, 4, 5, 7, 13, 14, 15, 16, 17, 18, 20, 23, 25, 26, 27, 31, 32, 36, 46], "copi": [7, 15, 20, 21, 22, 31, 39], "copyto": 4, "core": [2, 4, 7, 20, 34, 35, 47], "corr": [5, 24], "correctli": [2, 18, 20], "correl": 5, "correspond": [5, 29], "cosh": [4, 5, 7], "cosin": [4, 5, 7], "cost": [22, 31], "costli": 18, "cot": [4, 5, 7], "cotang": [4, 5, 7], "could": [2, 4, 7, 20, 35], "count": [2, 5, 7, 24, 25, 34, 36], "count_star": 5, "counterpart": [5, 20], "coupl": [20, 33], "covar": 5, "covar_pop": [5, 24], "covar_samp": [5, 24], "covari": 5, "cover": [23, 27, 34], "cpython": [18, 21], "cr": [31, 45, 47], "crate": [20, 47], "creat": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 31, 32, 34, 39, 46], "create_datafram": [1, 31, 35], "create_dataframe_from_logical_plan": 1, "create_namespace_if_not_exist": 35, "create_t": 35, "createcatalog": 4, "createcatalogschema": 4, "created_bi": [2, 7], "createexternalt": 4, "createfunct": 4, "createfunctionbodi": 4, "createindex": 4, "creatememoryt": 4, "createview": 4, "creation": 36, "credenti": 35, "criteria": [5, 33], "crlf": [7, 13], "css": [3, 37], "cstream": 20, "cstring": 20, "csv": [0, 1, 2, 7, 11, 13, 20, 22, 24, 27, 33, 34, 35, 36, 37, 38, 42, 46], "csvreadopt": [1, 7, 11, 13, 41], "ctx": [0, 1, 2, 5, 7, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "cube": [4, 5, 7], "cubon": 24, "cume_dist": [5, 18, 33], "cumul": 5, "curr_valu": 31, "current": [0, 2, 3, 4, 5, 7, 14, 18, 20, 27, 31, 33, 37], "current_d": 5, "current_tim": 5, "custom": [1, 3, 7, 8, 14, 20, 29, 31, 34, 36, 42, 46], "custom_css": [3, 37], "custom_formatt": 3, "custom_html": 37, "customer_id": 29, "d": [2, 18, 39], "dai": [5, 27], "dant": 26, "dark": [24, 37], "data": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46], "data_page_row_count_limit": [2, 7], "data_pagesize_limit": [2, 7], "data_typ": [5, 7, 13, 20], "data_type_or_field_to_field": 18, "data_types_or_fields_to_field_list": 18, "databas": [0, 7, 26, 34], "dataflow": [7, 14], "datafram": [0, 1, 3, 4, 5, 6, 7, 11, 14, 15, 18, 19, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 46], "dataframe_formatt": [7, 19], "dataframehtmlformatt": 3, "dataframewriteopt": [2, 7], "datafus": [19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "datafusion_catalog": 47, "datafusion_catalog_provid": 47, "datafusion_df": 35, "datafusion_logical_extension_codec": 47, "datafusion_sql": 17, "datafusion_table_funct": 31, "datafusion_table_provid": [20, 45], "dataset": [0, 1, 3, 7, 27, 33, 34, 35, 37, 38], "datasourc": 8, "datastructur": [4, 7], "datatyp": [1, 2, 4, 7, 11, 13, 18, 31], "datatypemap": [4, 7, 20], "date": [5, 27, 36], "date32": 5, "date_bin": 5, "date_part": [5, 27], "date_trunc": 5, "datepart": 5, "datetrunc": 5, "ddd": 37, "ddl": [1, 7], "dealloc": 4, "debug": 20, "decid": [18, 20], "decim": 5, "decimal_plac": 5, "decod": 5, "decor": [7, 18], "def": [2, 7, 18, 22, 31, 35, 36, 37, 38, 46], "default": [0, 1, 2, 3, 4, 5, 7, 10, 11, 13, 17, 18, 20, 21, 29, 31, 33, 34, 35, 37, 46], "default_max_infer_schema": [1, 7, 13], "default_str_repr": 2, "default_valu": 5, "defaultstyleprovid": 3, "defens": [22, 27, 35, 38, 46], "defin": [0, 1, 2, 4, 7, 18, 20, 21, 27, 28, 33], "definit": [1, 4, 7, 18, 20, 23, 31], "degre": [4, 5, 7], "delet": [1, 7], "delimit": [1, 5, 7, 11, 13, 41], "delta": 20, "delta_binary_pack": [2, 7], "delta_byte_arrai": [2, 7], "delta_length_byte_arrai": [2, 7], "delta_t": 35, "deltalak": 35, "deltat": 35, "demand": [36, 39], "demonstr": [1, 31, 33, 34, 38, 39], "dens": 5, "dense_rank": [5, 18, 33], "depend": [5, 20, 24, 31, 33, 47], "deprec": [1, 2, 3, 5, 6, 33], "deprecationwarn": 3, "deregist": [0, 7], "deregister_schema": [0, 7], "deregister_t": [0, 1], "deriv": 20, "descend": 5, "describ": [2, 5, 20, 24, 25, 31, 35], "describet": 4, "descript": [1, 5, 7, 18], "deseri": 16, "deserialize_byt": 16, "design": [20, 28], "desir": 5, "detail": [2, 4, 5, 7, 18, 21, 23, 25, 36, 41], "determin": [0, 2, 4, 5, 7, 18, 31], "dev": 21, "develop": [20, 35], "deviat": 5, "df": [1, 2, 4, 5, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 46], "df1": 36, "df2": 36, "df_filter": 32, "df_view": 32, "dfschema": 7, "dialect": [17, 46], "dict": [1, 2, 3, 4, 5, 7], "dictionari": [1, 2, 5, 7, 26, 32, 35, 36, 46], "dictionary_en": [2, 7], "dictionary_page_size_limit": [2, 7], "differ": [2, 4, 5, 7, 13, 14, 18, 20, 27, 31, 34, 35, 36, 37], "difficult": 20, "digest": 5, "dimens": [4, 5, 7], "dimension": 2, "directli": [3, 4, 5, 7, 16, 18, 20, 35, 36, 39, 47], "directori": [1, 7, 21], "disabl": [1, 7, 29, 37], "discard": 2, "discuss": [20, 35], "disk": [1, 7, 9, 10], "displai": [3, 7, 14, 23, 25, 32, 36, 38], "display_graphviz": [7, 14], "display_ind": [7, 14], "display_indent_schema": [7, 14], "display_nam": [4, 7], "distanc": 5, "distinct": [2, 4, 5, 7, 35], "distinctli": 20, "distinguish": 20, "distribut": [5, 34], "div": 37, "divid": [5, 34], "divis": [4, 5, 7], "divisor": 5, "dml": [1, 7], "dmlstatement": 4, "do": [0, 1, 2, 7, 18, 20, 21, 23, 24, 31, 33, 35, 45, 46], "doc": [1, 2, 5, 17], "docstr": 21, "document": [1, 2, 4, 5, 7, 18, 19, 20, 21, 23, 34, 36, 38, 41], "doe": [2, 3, 5, 7, 13, 18, 20, 21, 33, 35], "doesn": 18, "dominant_typ": 27, "done": [2, 24, 31, 35], "dot": [7, 14], "doubl": [2, 30, 39], "double_func": [7, 18], "double_it": [7, 18], "double_udf": [7, 18], "down": [20, 33, 35], "downcast": [20, 47], "download": [23, 30, 38], "downstream": 39, "dragon": [22, 24, 27, 33, 35, 38], "dragonair": 33, "dratini": 33, "drop": [1, 2, 7, 36], "dropcatalogschema": 4, "dropfunct": 4, "droptabl": 4, "dropview": 4, "dtype": [2, 37], "duckdb": 17, "due": [1, 7, 11, 21, 47], "duplic": [2, 4, 5, 7, 28, 37], "dure": [7, 18, 21], "dyn": 47, "dynamic_lookup": 21, "e": [4, 5, 7, 18, 31], "each": [1, 2, 4, 5, 7, 18, 20, 21, 24, 27, 33, 36, 37], "eagerli": 36, "earli": 20, "easi": [20, 43], "easier": [20, 27, 38], "easili": [4, 7, 20], "east": 35, "effect": [30, 38], "effici": 34, "effort": [2, 7, 20], "either": [1, 2, 4, 7, 18, 20, 24, 35, 36, 46], "electr": [24, 33], "element": [2, 3, 4, 5, 7, 26], "ellipsi": [2, 7, 18], "els": [31, 47], "else_expr": 4, "embed": [2, 7], "employe": 26, "empti": [1, 4, 5, 7, 13, 14, 24, 26, 36], "empty_t": 1, "emptyrel": 4, "enabl": [1, 2, 7, 20, 34, 36, 37], "enable_cell_expans": [3, 7, 37], "enable_url_t": 1, "encod": [2, 5, 7, 16], "encount": 20, "encourag": 21, "end": [0, 2, 4, 5, 7, 14, 15, 17, 18, 33, 34], "end_bound": [4, 7], "end_posit": 5, "ends_with": 5, "engin": [1, 7, 22, 23], "enough": 18, "ensur": [3, 7, 8, 13, 20, 34], "ensure_expr": 4, "ensure_expr_list": 4, "entir": [2, 5, 7, 18, 24, 31, 33, 36], "entri": [2, 5, 24, 33, 36], "enum": [2, 4, 7, 18], "enumer": 18, "environ": [21, 22, 34, 36, 37], "equal": [2, 4, 5, 7, 14], "equival": [2, 5, 18, 20, 24, 33, 36], "error": [1, 3, 4, 7, 13, 21], "escap": [7, 13, 41], "especi": 21, "essenti": [7, 15, 25], "etc": [1, 3, 4, 7, 9, 10, 18], "eval_rang": 18, "evalu": [2, 4, 5, 7, 18, 23, 24, 26, 31, 33, 34, 36], "evaluate_al": [7, 18, 31], "evaluate_all_with_rank": [18, 31], "even": [1, 3, 7, 20, 29, 37], "evenli": 34, "event": 36, "everi": [5, 7, 18], "everyth": [9, 10], "ex": [4, 7, 30], "exact": 20, "exactli": [2, 33], "examin": [4, 7], "exampl": [1, 2, 3, 4, 5, 7, 14, 18, 20, 23, 24, 26, 27, 29, 31, 32, 33, 35, 36, 38, 45, 46, 47], "exce": 3, "excel": 20, "except": [2, 4, 5, 7, 26, 46], "except_al": 2, "exclud": [2, 29], "execut": [1, 2, 4, 7, 13, 18, 20, 21, 22, 23, 34, 39], "execute_stream": [2, 7, 15, 36], "execute_stream_partit": [2, 36], "execution_plan": 2, "executionplan": [1, 2, 7, 14], "exeggcut": 24, "exist": [0, 1, 2, 3, 4, 5, 7, 20, 36], "exp": [4, 5, 7], "exp_smooth": 31, "expand": [2, 3, 37], "expans": [3, 37], "expect": [4, 5, 7, 13, 18, 20, 26, 31, 33, 36, 46], "expens": 2, "experi": 21, "explain": [2, 4], "explan": [2, 20, 23], "explicit": [4, 34, 36, 37], "explicitli": [7, 18, 20, 36], "expon": 5, "exponenti": [4, 5, 7], "exponentialsmooth": 31, "export": [1, 2, 7, 15, 18, 20, 21, 35, 42], "expos": [2, 20, 31, 35, 36, 45], "expr": [1, 2, 5, 7, 11, 13, 18, 19, 31, 33, 36], "expr1": 5, "expr2": 5, "expr_type_error": 4, "express": [1, 2, 4, 5, 7, 13, 18, 24, 27, 28, 31, 33, 47], "exprfuncbuild": [4, 7], "extend": [5, 8, 20], "extens": [1, 3, 4, 7, 11, 13, 37, 41, 47], "extern": [0, 7], "extract": [3, 4, 5, 7, 27, 47], "extraenv": 21, "f": [4, 23, 24, 26, 27, 33, 35, 36, 46], "f2f2f2": 37, "face": 20, "fact": [20, 31], "factor": 34, "factori": [4, 5, 7, 18], "fail": [2, 21, 27], "fair": [1, 7], "fairi": [24, 33], "fals": [2, 3, 4, 5, 7, 13, 18, 20, 21, 22, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 45], "familiar": 21, "far": 2, "faster": [2, 5, 7, 18, 34], "featur": [2, 5, 7, 20, 21, 29, 35, 39], "fetch": 21, "few": [20, 21, 23], "fewer": 3, "ffi": [0, 1, 7, 18, 35, 47], "ffi_": 20, "ffi_catalogprovid": 47, "ffi_logical_codec_from_pycapsul": 47, "ffi_logicalextensioncodec": [1, 47], "ffi_provid": 20, "ffi_tablefunct": 31, "ffi_tableprovid": [20, 45], "ffi_taskcontextprovid": 1, "field": [2, 3, 5, 7, 13, 18, 20, 27, 31], "fight": [24, 33], "file": [1, 2, 7, 9, 10, 11, 13, 16, 20, 21, 22, 23, 30, 34, 36, 37, 38, 40, 41, 43, 44], "file_compression_typ": [1, 7, 11, 13], "file_extens": [1, 7, 11, 13], "file_partition_col": [1, 7, 11], "file_sort_ord": [1, 7, 11, 13], "filenam": 21, "filetyp": 4, "fill": [2, 4, 5, 7, 13, 27, 33], "fill_nan": [4, 7], "fill_nul": [2, 4, 7, 28], "filter": [2, 4, 5, 7, 13, 14, 23, 26, 32, 33, 35, 36], "final": [23, 31], "find": [5, 20, 21, 23, 24, 33], "find_in_set": 5, "finer": 36, "finish": [4, 24], "fire": [22, 24, 27, 35, 38], "first": [1, 2, 4, 5, 7, 20, 21, 23, 24, 26, 33, 35, 36, 38], "first_1": 24, "first_2": 24, "first_arrai": 5, "first_nam": 36, "first_valu": [5, 18, 24], "fix": [0, 18], "flag": [3, 5, 17, 18, 21], "flat": 4, "flatten": [4, 5, 7], "fleur": 27, "flexibl": 36, "float": [2, 5, 7, 18, 31, 37, 46], "float64": [7, 18, 27, 31], "floor": [4, 5, 7], "flow": [7, 14], "flower": 27, "fly": [22, 24, 33, 35, 38], "fn": [31, 45, 47], "focus": 20, "folder": [20, 31, 35, 45], "follow": [0, 1, 2, 4, 5, 7, 18, 20, 21, 23, 24, 26, 27, 29, 31, 33, 35, 38, 46], "foo": 34, "footer": 3, "fora": [4, 7], "foreign": [20, 47], "foreign_provid": 20, "foreigntableprovid": 20, "form": [2, 5, 7, 14, 24, 35], "format": [1, 2, 3, 4, 5, 6, 7, 13, 14, 23, 34, 35, 36, 40, 43, 46], "format_argu": 5, "format_html": [3, 37], "format_str": 3, "formatt": [2, 3, 5, 7], "formatted_valu": 3, "formatter_class": 37, "formattermanag": 3, "formatting_context": 37, "forth": 39, "found": [2, 5, 21, 33, 41, 45, 47], "four": 31, "frame": [2, 4, 5, 7, 18, 25, 31], "frame_bound": 4, "framework": 21, "free": [1, 7], "frequent": [20, 21], "fresh": 37, "from": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47], "from_arrai": [31, 35, 36], "from_arrow": [1, 35, 36, 39], "from_arrow_t": 1, "from_dataset": [0, 7], "from_json": 16, "from_panda": [1, 36], "from_polar": [1, 35], "from_proto": [7, 14], "from_pycapsul": [7, 18], "from_pydict": [1, 25, 26, 29, 31, 32, 35, 39], "from_pylist": [1, 29, 35], "from_str": 2, "from_stream": 36, "from_substrait_plan": 16, "from_unixtim": [4, 5, 7], "from_val": 5, "frozen": [20, 21], "full": [2, 5, 28, 36, 37, 46], "full_nam": 36, "fulli": [21, 34], "func": [1, 2, 7, 18, 31], "function": [1, 2, 12, 15, 19, 20, 23, 25, 28, 34, 35, 37, 44, 47], "function_to_impl": [18, 31], "further": [5, 20], "futur": [18, 20, 33], "g": [5, 18], "gamma": 35, "gather": 36, "gcd": 5, "gener": [4, 7, 14, 15, 16, 18, 19, 20, 21, 22, 35, 36, 38, 46], "geodud": 33, "get": [2, 3, 7, 14, 16, 18, 20, 21, 26, 29, 35, 36, 37, 46, 47], "get_cell_styl": 3, "get_default_level": 2, "get_formatt": [3, 37], "get_frame_unit": [4, 7], "get_header_styl": 3, "get_lower_bound": [4, 7], "get_offset": 4, "get_rang": 18, "get_table_styl": 37, "get_upper_bound": [4, 7], "get_value_styl": 37, "getattr": 47, "getenv": 35, "ghost": 24, "gil": 22, "git": 21, "github": [4, 5, 7, 21], "give": [5, 24, 30, 38], "given": [0, 1, 3, 4, 5, 7, 18, 31], "glanc": 20, "global": [1, 2, 3, 7, 11, 36, 37], "global_ctx": 1, "go": [20, 25, 27], "goe": 20, "gold": 5, "good": [20, 21], "googlecloud": [12, 35], "graph": [7, 14], "graphic": [7, 14], "graphviz": [7, 14], "grass": [22, 24, 27, 33, 35, 38], "great": 21, "greater": [4, 5, 7], "greatest": 5, "greatli": [31, 34], "greedi": [1, 7], "green": 26, "grimer": 33, "ground": 24, "group": [1, 2, 4, 5, 7, 11, 18, 23, 24, 25, 33, 36], "group_bi": [2, 24], "groupingset": 4, "guarante": [2, 7, 20], "guid": [1, 2, 28, 34, 36, 37, 38], "guidanc": 36, "gz": 41, "gzip": [2, 7, 13, 41], "ha": [1, 2, 3, 5, 7, 13, 18, 20, 26, 30, 31, 35, 46], "handl": [3, 15, 24, 28, 33, 34, 46], "happen": 21, "hardwar": 34, "has_head": [1, 7, 11, 13], "has_mor": [2, 3, 37], "hasattr": 47, "hash": [2, 4, 5, 7, 34], "haskel": 25, "have": [1, 2, 5, 7, 11, 13, 16, 18, 20, 21, 22, 24, 29, 31, 33, 34, 35, 41, 45, 46], "head": 2, "header": [1, 2, 3, 7, 11, 13, 41], "healthi": 21, "heavy_red_unit": 26, "height": [3, 37], "help": [1, 3, 7, 11, 20, 21, 26, 27, 34, 37], "helper": [2, 4, 7, 18, 20, 47], "henc": 18, "here": [2, 5, 7, 20, 27, 30, 31, 33, 34, 37, 38, 39, 46], "hex": 5, "hexadecim": [4, 5, 7], "hierarch": 35, "high": [4, 7], "higher": [2, 4, 7, 34], "highli": 31, "highlight": 38, "hint": [1, 18, 21], "hive": 46, "homebrew": 21, "hood": 35, "host": 1, "how": [1, 2, 4, 5, 7, 18, 20, 24, 25, 28, 29, 31, 33, 34, 35, 36, 37, 38, 41, 46], "howev": [18, 31], "hp": [22, 35, 38], "html": [1, 2, 3, 5, 7, 17], "html_formatt": [3, 7, 19, 37], "http": [1, 2, 4, 5, 7, 12, 14, 16, 17, 35], "hyperbol": [4, 5, 7], "i": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 46, 47], "ic": 24, "iceberg_t": 35, "id": [1, 2, 3, 21, 29, 36], "id_for_stud": 2, "ideal": 20, "ident": [2, 29, 35], "identifi": [1, 4, 7, 20, 30, 34, 35], "idl": [2, 7], "idx": [18, 31], "ignor": [5, 7, 13, 18, 21, 24, 33], "ignore_nul": [24, 33], "ilik": 4, "illustr": 20, "immut": [7, 18, 20, 31], "impact": [2, 34], "impl": [31, 45, 47], "implement": [0, 1, 2, 3, 7, 18, 21, 31, 35, 36, 37, 39, 45, 46, 47], "import": [1, 2, 3, 4, 7, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46], "improv": [1, 3, 7, 18, 31, 34, 35, 37, 47], "in_list": [5, 27], "includ": [1, 2, 3, 4, 7, 18, 20, 23, 24, 27, 29, 31, 34, 36, 37, 47], "include_rank": [18, 31], "inclus": [1, 4, 5, 7], "incomplet": 41, "incorpor": 31, "increas": [1, 2, 3, 7, 24, 34], "increment": [2, 18, 20, 31, 39], "incur": 31, "indent": [7, 14], "independ": [5, 33], "index": [2, 3, 4, 5, 7, 17, 18, 26], "indic": [3, 4, 5, 7, 26], "individu": [2, 7, 26, 33], "infer": [1, 7, 11, 13], "inform": [1, 2, 4, 7, 8, 16, 17, 18, 20, 31, 34, 36], "information_schema": [1, 7], "infrastructur": 34, "inherit": 35, "init": 21, "initcap": [4, 5, 7], "initi": [2, 3, 4, 5, 7, 13], "inlin": [18, 20], "inlist": 4, "inner": [2, 20, 28, 36, 47], "input": [1, 2, 4, 5, 7, 11, 13, 14, 18, 19, 26, 31], "input_field": [7, 18], "input_item": [8, 9, 10], "input_typ": [7, 18], "inputsourc": 8, "insert": [1, 2, 7], "insert_oper": [2, 7], "insertop": [2, 7], "insight": 34, "instanc": [1, 2, 3, 4, 5, 7, 18, 20, 23], "instanti": [2, 7, 18], "instead": [1, 3, 4, 5, 7, 20, 31, 34, 35, 36, 41, 47], "insubqueri": 4, "insuffici": 35, "int": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 31, 46], "int32": [7, 18, 27], "int64": [7, 18, 25, 27, 31], "integ": [3, 4, 5, 7, 18, 26, 31], "integr": [2, 20, 35, 36, 38, 45], "intend": [7, 13, 20], "intens": 34, "interact": [3, 20, 26, 35], "intercept": 5, "interchang": [7, 15, 43], "interest": 26, "interfac": [0, 1, 2, 5, 7, 15, 20, 22, 23, 31, 33, 35, 36, 39, 45, 47], "interior": 20, "intermedi": [7, 18], "intern": [0, 4, 7, 13, 20, 31], "intersect": [2, 5], "interv": 5, "into_view": 2, "intro": 21, "introduc": [21, 23, 34, 46], "intuit": 20, "invalid": [3, 7], "invers": [4, 5, 7], "invoc": 18, "invok": 39, "io": [1, 2, 7, 16, 19, 37], "io_avro": 36, "io_csv": 36, "io_json": 36, "io_parquet": 36, "ipc": 2, "is_caus": 18, "is_correct_input": [8, 9, 10], "is_current_row": 4, "is_empti": 26, "is_follow": 4, "is_not_nul": [4, 7, 24], "is_nul": [4, 7, 31], "is_null_arr": 31, "is_preced": 4, "is_unbound": 4, "isfals": 4, "isnan": [4, 5, 7], "isnotfals": 4, "isnotnul": [4, 7], "isnottru": 4, "isnotunknown": 4, "isnul": 4, "issu": [3, 5, 21, 33, 37], "istru": 4, "isunknown": 4, "iszero": [4, 5, 7], "item": 4, "iter": [2, 4, 7, 15, 36], "its": [2, 5, 7, 14, 18, 20, 22, 33, 37], "itself": 26, "ivi": 27, "ivyfleur": 27, "ivysaur": [22, 27, 33, 35, 38], "java": 25, "javascript": [3, 37, 43], "jigglypuff": 33, "join": [1, 2, 4, 7, 14, 28, 34, 36], "join_kei": [2, 29], "join_on": [2, 36], "joinconstraint": 4, "jointyp": 4, "json": [1, 2, 7, 11, 16, 35, 36, 37, 42], "jupyt": [3, 36, 38], "jupyterlab": 38, "just": [2, 37], "justif": 20, "jynx": 24, "kakuna": [22, 33, 35, 38], "keep": [20, 21, 32, 35, 37], "kei": [1, 2, 3, 4, 7, 20, 23, 26, 28, 34, 36], "kept": 2, "kind": [0, 7, 20, 21], "know": [1, 7], "known": 26, "kv_meta": [2, 7], "kwarg": [3, 7, 8, 9, 10], "l179": [4, 7], "lab": 38, "label": 2, "lack": 22, "lag": [5, 18, 33], "lambda": [7, 18], "languag": [1, 7, 14, 20], "larg": [2, 3, 7, 27, 34, 37], "large_trip_dist": 30, "larger": [2, 7], "last": [4, 5, 7, 33], "last_nam": 36, "last_valu": [5, 24, 33], "last_with_nul": 33, "last_wo_nul": 33, "latenc": 34, "later": [35, 38, 45], "latest": [5, 17, 20], "latter": 1, "lazi": [23, 36], "lazili": [2, 36, 39], "lcm": 5, "lead": [2, 5, 18, 20, 31, 33, 35], "leaf": [7, 14], "leak": 22, "learn": [20, 25, 33], "least": [5, 18, 24, 29, 31, 37], "leav": [7, 14, 20], "left": [2, 5, 27, 28, 37], "left_on": [2, 29], "leftmost": 5, "legendari": [22, 35, 38], "len": [18, 27], "length": [2, 3, 4, 5, 7, 13, 18], "less": [4, 5, 7, 13], "lesson": 20, "let": [20, 31, 34, 39, 45, 47], "letter": [4, 5, 7, 30], "level": [2, 4, 5, 7, 20, 35], "levenshtein": 5, "leverag": [2, 7, 20], "lib": 21, "lib_dir": 21, "lib_nam": 21, "librari": [7, 8, 15, 20, 22, 38, 39, 45, 47], "lieu": [7, 18], "lightweight": 43, "like": [1, 2, 3, 4, 5, 7, 8, 20, 21, 22, 27, 31, 35, 36, 46, 47], "limit": [2, 3, 4, 5, 21, 23, 25, 27, 34, 36, 37, 46], "line": [1, 2, 7, 11, 13, 14, 20, 41], "linear": [5, 24], "link": [21, 33], "lint": 21, "linter": 21, "list": [0, 1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 24, 31, 32, 33, 35, 36], "list_": 31, "list_append": [5, 21], "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, "lit": [2, 4, 5, 7, 21, 23, 24, 26, 30, 33, 36, 39], "liter": [2, 4, 7, 27, 28, 30, 31, 32, 36], "literal_with_metadata": [4, 7], "ll": [27, 29, 33], "ln": [4, 5, 7], "load": [3, 34, 35], "load_catalog": 35, "local": [1, 20, 21, 34], "localfilesystem": [12, 35], "locat": [1, 9, 19], "locationinputplugin": [9, 10], "lock": 22, "log": [5, 27], "log10": [4, 5, 7], "log2": [4, 5, 7], "logarithm": [4, 5, 7], "logic": [1, 2, 4, 7, 14, 16, 17, 23, 24, 30, 36, 37, 47], "logical_plan": [2, 16], "logicalextensioncodec": 47, "logicalplan": [1, 2, 4, 7, 14, 16, 17], "lonely_trip": 30, "long": [3, 20], "long_tim": 26, "longer": [5, 37, 47], "look": [20, 21, 34], "loop": 36, "loss": 46, "low": [4, 7, 24], "low_passenger_count": 30, "lower": [4, 5, 7, 18, 27, 30], "lowercas": [2, 4, 5, 7], "lowest": [20, 24], "lpad": 5, "ltrim": [4, 5, 7], "lz4": [2, 7], "lz4_raw": [2, 7], "lzo": [2, 7], "m": [21, 31], "mac": 21, "machin": 21, "machop": 33, "made": 30, "magikarp": 24, "magnemit": 33, "mai": [1, 2, 5, 7, 11, 13, 18, 20, 31, 34, 35, 37, 38, 46], "main": [1, 23, 36], "maintain": [1, 2, 20, 23, 46], "major": [21, 22, 47], "make": [5, 20, 21, 22, 27], "make_arrai": 5, "make_d": 5, "make_list": 5, "manag": [1, 3, 7, 21, 34], "mani": [3, 20, 24, 31, 34, 36, 37], "manipul": [1, 7, 27, 36], "mankei": 33, "manner": 20, "manual": [21, 34], "map": [2, 46], "match": [2, 4, 5, 7, 13, 27, 29, 34], "materi": [2, 36, 39], "math": 24, "mathemat": [28, 30, 36], "maturin": 21, "max": [5, 24, 25], "max_cell_length": [3, 7, 37], "max_cpu_usag": 34, "max_height": [3, 7, 37], "max_memory_byt": [3, 37], "max_row": [3, 37], "max_row_group_s": [2, 7], "max_width": [3, 7, 37], "maximum": [1, 2, 3, 5, 7, 11, 13, 37], "maximum_buffered_record_batches_per_stream": [2, 7], "maximum_parallel_row_group_writ": [2, 7], "md5": [4, 5, 7], "mean": [3, 5, 20, 21, 25], "meaning": [5, 30], "meant": [7, 14], "measur": 34, "medal": 5, "median": [5, 24, 25], "member": 21, "memoiz": 18, "memori": [0, 1, 2, 3, 7, 14, 18, 22, 34, 39], "memory_catalog": [0, 7, 35], "memory_schema": [0, 35], "memtabl": 47, "mention": 26, "merg": [7, 18, 29, 31], "messag": [3, 37], "metadata": [1, 2, 4, 5, 7, 11, 18, 31], "metapod": [22, 24, 33, 35, 38], "method": [0, 1, 2, 3, 5, 7, 11, 13, 18, 20, 23, 25, 27, 29, 31, 32, 36, 37, 47], "metric": 2, "metrorid": 29, "microsecond": 5, "microsoftazur": [12, 35], "might": [3, 18, 24, 37], "millisecond": 5, "min": [5, 24, 25], "min_row": [3, 37], "minimum": [1, 2, 3, 5, 7, 37], "miss": [2, 7, 13, 21, 28], "mode": [2, 7], "model": 2, "modifi": [2, 7, 23], "modify_df": 2, "modul": [6, 20, 33, 36, 37], "modulo": [4, 7], "moment": [2, 20], "monitor": 34, "month": [5, 27], "more": [1, 2, 3, 4, 7, 16, 18, 20, 21, 23, 24, 27, 31, 34, 36], "most": [18, 20, 26, 33, 38], "mostli": 21, "much": [18, 21, 37], "multi": 22, "multipl": [1, 2, 3, 4, 5, 7, 18, 24, 27, 29, 31, 33, 34, 35, 36, 37], "must": [1, 2, 3, 4, 5, 7, 13, 18, 20, 24, 26, 30, 31, 33, 39, 45, 46, 47], "mutabl": 21, "mutat": 20, "my": 37, "my_capsul": 20, "my_catalog": 35, "my_catalog_nam": 35, "my_delta_t": 35, "my_provid": 20, "my_schema": 35, "my_schema_nam": 35, "my_tabl": [32, 35], "my_udaf": 31, "myaccumul": 31, "mycatalogprovid": 47, "myformatt": 37, "mysql": [17, 46], "mystyleprovid": 37, "mytablefunct": 31, "mytableprovid": [20, 45], "myusernam": 21, "n": [2, 5, 7, 41], "n_column": [2, 7], "n_file": [2, 7], "n_row_group": [2, 7], "name": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 35, 38, 45, 46, 47], "name_pair": 5, "named_expr": 2, "named_param": 1, "named_struct": [5, 21], "nan": [4, 5, 7], "nanoarrow": [7, 18, 31], "nanosecond": 5, "nanvl": 5, "narrowli": 20, "nativ": [20, 35], "natur": [4, 5, 7], "nearest": [4, 5, 7], "nearli": [34, 35], "necessari": [20, 35, 47], "need": [0, 1, 2, 3, 4, 7, 11, 13, 18, 20, 21, 31, 33, 34, 35, 36, 37, 38, 46, 47], "neg": [4, 5], "negat": [4, 5, 7, 27], "nest": [1, 4, 34], "network": 34, "never": 2, "new": [1, 2, 3, 4, 5, 7, 17, 18, 20, 21, 26, 28, 31, 45, 46, 47], "new_bound": [20, 45], "new_nam": 2, "new_with_ffi_codec": 47, "newlin": [7, 13], "newlines_in_valu": [7, 13], "next": [5, 7, 15], "nice": 37, "node": [7, 14], "non": [2, 4, 5, 24, 33, 36], "none": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 20, 31, 33, 35, 37, 45, 46, 47], "normal": 24, "not_red_unit": 26, "notat": [26, 43], "note": [1, 2, 4, 7, 23, 26, 35, 36], "notebook": [3, 36, 37, 38], "now": [5, 18, 20, 27, 29, 32, 47], "nr": 25, "nth": 37, "nth_valu": [5, 18, 24], "ntile": [5, 33], "null": [2, 4, 5, 7, 13, 25, 27, 29, 31, 39, 41], "null_count": 25, "null_first": 5, "null_regex": [7, 13], "null_treat": [4, 5, 7, 24, 33], "nullabl": [2, 7, 13, 18, 31], "nullif": [5, 27], "nulls_first": [4, 5, 7], "nulltreat": [4, 5, 7, 24, 33], "num": [2, 5, 34, 46], "num_centroid": 5, "num_el": 26, "num_row": [7, 18, 31], "number": [1, 2, 3, 4, 5, 7, 11, 13, 14, 18, 21, 26, 27, 31, 33, 34, 37, 46], "numer": [2, 3, 4, 5, 7, 34], "nvl": 5, "o": [34, 35, 36, 37], "obj": 47, "object": [1, 2, 3, 4, 7, 12, 13, 15, 16, 18, 20, 26, 31, 34, 36, 37, 39, 43, 46, 47], "object_stor": [7, 19, 35], "objectstor": 1, "obtain": [8, 22, 36], "obviou": 20, "occasion": 20, "occur": [7, 18, 36], "occurr": 5, "octet_length": [4, 5, 7], "oddish": 33, "offend": 21, "offer": [27, 36, 46], "offici": 20, "offset": [2, 4], "often": [33, 34], "ok": 47, "old": 2, "old_nam": 2, "older": 35, "olymp": 5, "omit": 29, "on_expr": 2, "onc": [3, 5, 8, 18, 31, 37, 39, 45], "one": [2, 4, 5, 7, 18, 20, 24, 29, 31, 33, 35, 36], "onli": [1, 2, 3, 4, 5, 7, 11, 13, 15, 18, 20, 24, 27, 29, 31, 33, 36, 37], "onlin": [1, 2, 4, 5, 7, 18, 20, 34], "op": [2, 4, 7], "open": [3, 21], "oper": [1, 2, 4, 5, 7, 14, 15, 18, 20, 22, 24, 26, 30, 31, 33, 34, 35, 37], "operand": [4, 7], "operatefunctionarg": 4, "opt": [20, 21], "optim": [2, 18, 20, 34], "optimized_logical_plan": 2, "option": [0, 1, 2, 4, 5, 7, 11, 18, 19, 21, 23, 24, 27, 34, 35, 36, 37, 38, 41, 46], "options_intern": [1, 7], "order": [1, 2, 4, 5, 7, 8, 11, 13, 18, 20, 26], "order_bi": [4, 5, 7, 24, 33], "org": [1, 2, 5, 7, 14], "organ": 35, "origin": [2, 4, 5, 7, 31, 35, 46], "other": [1, 2, 3, 4, 5, 7, 11, 14, 18, 20, 21, 22, 23, 26, 28, 31, 34, 36, 37, 41], "other_df": 2, "other_id": 2, "otherwis": [4, 5, 7], "our": [20, 21, 24, 35, 38], "out": [2, 5, 7, 20, 24, 25, 26, 27, 29, 30, 33, 38, 39, 46], "output": [2, 3, 4, 7, 14, 18, 21, 24, 26, 31, 32, 37], "over": [2, 3, 4, 7, 15, 18, 20, 22, 24, 33, 35, 36, 37, 41], "overhead": 18, "overlai": 5, "overlap": 5, "overrid": [2, 7, 31], "overridden": 24, "overwrit": [2, 7], "own": [8, 31, 37, 47], "owner": 0, "owner_nam": 0, "pa": [1, 4, 7, 15, 18, 31, 35, 36, 39], "packag": [5, 20, 21], "pad": [5, 37], "page": [2, 7, 19, 20, 31], "pair": 5, "panda": [1, 2, 23, 25, 35, 36, 46], "pandas_df": [35, 36], "para": 33, "parallel": [1, 2, 7, 13, 34], "param_attack": 46, "param_nam": 3, "param_valu": [1, 46], "paramet": [0, 1, 2, 3, 4, 5, 7, 11, 13, 15, 16, 18, 21, 26, 28, 29, 37, 46, 47], "parameter": 1, "parasect": 33, "parquet": [0, 1, 2, 7, 11, 20, 22, 23, 30, 34, 35, 36, 37, 42], "parquet_prun": [1, 7, 11], "parquetcolumnopt": [2, 7], "parquetwriteropt": [2, 7], "pars": [1, 2, 7, 13, 16], "parse_sql_expr": 2, "parser": 46, "part": [2, 5, 7, 27], "particular": [5, 34], "partit": [1, 2, 4, 5, 7, 11, 13, 14, 18, 24, 34, 36], "partition_bi": [2, 4, 5, 7, 33], "partition_count": [7, 14], "pass": [1, 2, 7, 18, 20, 21, 25, 26, 31, 34, 35, 36, 46], "passenger_count": 30, "path": [1, 2, 7, 11, 16, 21, 35, 36], "path_to_t": 35, "pathlib": [1, 2, 7, 11, 16], "pattern": [2, 5, 7, 13, 20, 34], "pc": [7, 18], "pcre": 5, "pd": [35, 36], "peopl": 5, "per": [2, 3, 7, 13, 18, 33, 36, 37], "percent": 5, "percent_rank": [5, 18, 33], "percentag": 5, "percentil": 5, "perform": [1, 2, 3, 4, 5, 7, 13, 18, 20, 21, 23, 24, 27, 31, 33, 34, 35], "period": 20, "persist": 46, "person": 21, "physic": [2, 7, 14, 23], "pi": 5, "pick": 5, "pinsir": 33, "pip": [22, 38], "pixel": [3, 37], "pl": 35, "place": [5, 20, 21, 38, 46], "placehold": [4, 46], "plain": [2, 4, 7, 36, 37], "plain_dictionari": [2, 7], "plan": [1, 2, 4, 7, 16, 17, 18, 19, 22, 23, 36], "plan_intern": 16, "plan_to_sql": 17, "planner": [7, 14], "pleas": [21, 30], "plu": 5, "plugin": [8, 9, 10], "point": [3, 4, 5, 7, 21, 36, 46], "pointer_width": 21, "poison": [22, 24, 33, 35, 38], "pokemon": [22, 24, 27, 33, 35, 38, 46], "polar": [1, 2, 35, 36], "polars_df": [35, 36], "poll": 36, "pool": [1, 7], "popul": 5, "popular": [27, 35], "portion": 20, "posit": [2, 3, 5, 7, 24], "possibl": [2, 4, 7, 18, 20, 27, 31, 33], "possibli": 4, "post": 21, "postgr": 17, "postgresql": 17, "potenti": [2, 7, 14, 46, 47], "pow": [5, 27], "power": [5, 27, 31, 33], "pr": 21, "practic": [2, 20, 31, 34], "preced": [3, 4, 5, 7, 18, 33, 46], "precis": [5, 34], "predic": [1, 2, 7, 11], "prefer": [20, 21], "prefix": [5, 20], "prepar": [4, 46], "prepend": 5, "presenc": 27, "present": [2, 20, 29], "preserve_nul": 2, "pretti": 17, "prevent": [3, 21, 37], "previou": [5, 31, 33], "previous": 1, "primari": [2, 7, 9, 26, 36], "primit": [7, 18, 20, 31], "principl": 34, "print": [0, 1, 2, 4, 7, 14, 18, 32, 34, 36, 37], "printabl": [7, 14, 18], "prior": [2, 35], "probabl": [2, 7, 24], "problem": 29, "process": [2, 18, 24, 33, 34, 36, 39], "processor": 34, "produc": [2, 5, 7, 14, 16, 18, 20, 33, 36], "product": [5, 34, 36], "program": 20, "programmat": [7, 14], "project": [2, 4, 7, 14, 15, 20, 21, 36, 39, 47], "proper": 34, "properti": [0, 2, 3, 4, 7, 14], "proto_byt": 16, "protobuf": [7, 14], "protocol": [1, 3, 18, 36], "provid": [0, 1, 2, 3, 4, 5, 7, 8, 9, 13, 15, 16, 17, 18, 20, 23, 24, 27, 31, 33, 34, 36, 38, 42, 46, 47], "prune": [1, 7, 11], "psychic": 24, "pub": [20, 47], "public": [0, 7], "pull": [21, 39], "pure": 21, "push": [21, 35], "pushdown_filt": 34, "put": 30, "py": [1, 7, 16, 20, 31, 34, 45, 47], "py_dict": 36, "py_list": 36, "pyani": 47, "pyarrow": [0, 1, 2, 4, 7, 11, 13, 15, 18, 20, 25, 31, 35, 39, 46], "pycapsul": [0, 1, 2, 7, 15, 18, 20, 31, 35, 39, 45, 47], "pycapsuleinterfac": [1, 2], "pyclass": [20, 21], "pyconfig": 20, "pydatatyp": 20, "pyiceberg": 35, "pymethod": [31, 45, 47], "pyo3": [21, 31, 35], "pyo3_build_config": 21, "pyo3_config_fil": 21, "pyo3_print_config": 21, "pypi": 38, "pyproject": 21, "pyresult": [31, 45, 47], "pysessioncontext": 20, "pyspark": 22, "pytabl": 20, "pytest": 21, "python": [0, 1, 2, 4, 7, 18, 25, 26, 29, 31, 34, 35, 38, 39, 45, 46, 47], "python3": 21, "python_typ": 20, "python_valu": [4, 7], "pythontyp": [4, 7, 20], "queri": [1, 2, 7, 14, 16, 18, 20, 22, 23, 27, 32, 34, 35, 36, 39], "quick": 25, "quit": 44, "quot": [2, 7, 13, 30], "r": [2, 4, 5, 7, 17, 20, 21, 41], "radian": [4, 5, 7], "rais": [2, 3, 4, 5, 7], "ram": 34, "random": [5, 18, 25, 26], "rang": [1, 2, 4, 5, 7, 18, 25, 26, 27, 31, 33, 34, 36], "rank": [5, 18, 31, 33], "ranks_in_partit": 18, "rare": 20, "rather": [5, 16, 36, 39], "ratio": 5, "raw": [1, 3, 4], "raw_sort": 4, "rawcatalog": [0, 7], "rawcataloglist": 0, "rawexpr": [4, 7], "rawschema": [0, 7], "rb": [7, 15], "re": [2, 20], "reach": 3, "read": [0, 1, 2, 7, 9, 10, 11, 13, 16, 20, 35, 36, 37, 38, 40, 41, 43, 44, 46], "read_avro": [1, 7, 11, 36, 40], "read_csv": [1, 7, 11, 22, 23, 24, 33, 35, 36, 38, 41], "read_json": [1, 7, 11, 36, 43], "read_parquet": [1, 7, 11, 23, 30, 34, 36, 44], "read_tabl": 1, "reader": [1, 7, 11, 13, 36, 39], "realiti": 24, "reason": [2, 20, 21], "rebuild": 21, "receiv": [5, 18, 20], "recent": [33, 35], "recommend": [2, 20, 21, 31, 34, 37, 46], "record": [1, 2, 3, 7, 13, 14, 15, 23, 30, 31, 35, 39, 40], "record_batch": [1, 2, 7, 19], "record_batch_stream": [7, 15], "recordbatch": [1, 2, 3, 7, 15, 31, 35, 36], "recordbatchread": 36, "recordbatchstream": [1, 2, 7, 15, 36], "recursivequeri": 4, "red": [26, 37], "red_or_green_unit": 26, "red_unit": 26, "reduc": [7, 13, 21, 29, 31, 37, 47], "ref": [5, 31, 36], "refer": [2, 3, 5, 20, 23, 27, 36, 37, 46, 47], "referenc": [1, 23], "reflect": 3, "refresh": 3, "regardless": 18, "regener": 21, "regex": [5, 7, 13], "regexp_count": 5, "regexp_instr": 5, "regexp_lik": 5, "regexp_match": [5, 27], "regexp_replac": [5, 27], "region": 35, "regist": [0, 1, 2, 3, 7, 8, 11, 20, 23, 28, 31, 35, 36, 45, 46], "register_avro": 1, "register_catalog": [0, 35], "register_catalog_provid": 1, "register_catalog_provider_list": 1, "register_csv": [1, 27, 41, 46], "register_dataset": [1, 35], "register_formatt": 3, "register_json": 1, "register_listing_t": 1, "register_object_stor": [1, 35], "register_parquet": [1, 35, 44], "register_record_batch": 1, "register_schema": [0, 7, 35], "register_t": [0, 1, 2, 35, 45], "register_table_provid": [1, 35], "register_udaf": 1, "register_udf": 1, "register_udtf": [1, 31], "register_udwf": 1, "register_view": [1, 32], "registr": 46, "regr_avgi": [5, 24], "regr_avgx": [5, 24], "regr_count": [5, 24], "regr_intercept": [5, 24], "regr_r2": [5, 24], "regr_slop": [5, 24], "regr_sxi": 5, "regr_sxx": [5, 24], "regr_syi": [5, 24], "regress": [5, 24], "regular": [3, 5, 27], "reject": 4, "rel": [5, 33], "relat": [7, 14, 29], "releas": [20, 33], "relev": 21, "reli": [21, 35, 46], "remain": [4, 5, 7, 20, 27], "remot": [9, 10, 34], "remov": [0, 1, 2, 4, 5, 7, 24, 47], "renam": 2, "renamed_ag": 26, "render": 3, "reorder": [2, 7, 15], "repartit": [1, 2, 4, 7, 34], "repartition_by_hash": [2, 34], "repeat": [5, 26], "repeated_arrai": 26, "replac": [2, 5, 7, 27, 46], "repo": 21, "report": [2, 21], "repositori": [20, 31, 34, 35], "repr": 3, "repr_row": 3, "repres": [1, 2, 4, 5, 7, 11, 13, 14, 15, 16, 23, 26, 31, 34, 36], "represent": [0, 1, 2, 3, 4, 5, 7, 11, 14, 16, 18, 46], "request": [3, 20, 21], "requested_schema": [1, 2, 7, 15], "requir": [2, 4, 7, 18, 20, 27, 34, 35, 41, 47], "reserv": [1, 7], "reset": [3, 37], "reset_formatt": [3, 37], "resolv": [3, 21, 33], "resourc": [20, 34], "respect": [5, 24, 31, 35], "respect_nul": [5, 24, 33], "rest": [7, 18], "result": [1, 2, 5, 7, 14, 15, 18, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "result_batch": 36, "result_dict": 32, "retriev": [0, 1, 4, 7, 29], "return": [0, 1, 2, 3, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 26, 29, 31, 35, 36, 37, 39], "return_field": [7, 18], "return_typ": [7, 18, 31], "reus": 20, "reusabl": 4, "revers": [4, 5, 7], "review": [20, 21], "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": 33, "rich": [3, 37], "richer": 37, "right": [2, 5, 29], "right_on": [2, 29], "ritchi": 33, "rle": [2, 7], "rle_dictionari": [2, 7], "robin": 2, "rock": 24, "roll": 33, "root": [4, 5, 7, 14], "roption": 20, "round": [2, 5, 23], "rout": 20, "row": [1, 2, 3, 4, 5, 7, 11, 13, 18, 23, 24, 25, 26, 29, 31, 32, 33, 34, 36, 37, 41, 46], "row_count": 3, "row_idx": 3, "row_numb": [5, 18, 33], "rpad": 5, "rresult": 20, "rstring": 20, "rtrim": [4, 5, 7], "rubi": 25, "run": [1, 2, 7, 11, 13, 22, 32, 34, 38], "runnabl": 21, "runtim": [1, 7, 18, 34], "runtimeconfig": 1, "runtimeenvbuild": [1, 7, 34], "rust": [2, 5, 7, 13, 18, 20, 22, 31, 34, 35, 45], "rustc": 20, "rustflag": 21, "rustonomicon": 20, "rvec": 20, "rwlock": 20, "s3": 35, "safe": 20, "safeti": 22, "same": [2, 5, 7, 18, 20, 23, 31, 36], "sampl": [5, 25, 32, 35], "saur": 27, "save": 18, "scalar": [1, 4, 7, 18, 26, 28, 46], "scalarsubqueri": 4, "scalarudf": [1, 7, 18], "scalarudfexport": [7, 18], "scalarvalu": 18, "scalarvari": 4, "scan": [1, 7, 13, 14], "schema": [0, 1, 2, 3, 4, 7, 11, 13, 14, 15, 25, 37], "schema_infer_max_record": [1, 7, 11, 13], "schema_nam": [0, 4, 7], "schemaprovid": [0, 7, 46, 47], "schemaproviderexport": [0, 7], "scheme": 2, "scienc": 27, "score": 5, "script": [3, 34], "search": 5, "second": [5, 23, 24, 26, 35], "second_arrai": 5, "second_two_el": 26, "secret_access_kei": 35, "section": [20, 23, 25, 28, 29, 33, 35, 36], "see": [1, 2, 4, 5, 7, 15, 16, 17, 18, 20, 21, 23, 24, 26, 31, 33, 34, 36, 37], "seen": [18, 24], "select": [1, 2, 4, 5, 7, 11, 13, 15, 18, 23, 26, 27, 28, 29, 31, 32, 33, 35, 36, 39, 46], "select_column": 2, "select_expr": 2, "self": [7, 13, 15, 18, 31, 37, 45, 47], "semi": [2, 28], "send": 47, "sensit": [2, 7], "separ": [5, 36], "sequenc": [1, 2, 7, 18], "serd": 16, "seri": 26, "serial": [2, 7, 16, 40], "serialize_byt": 16, "serialize_to_plan": 16, "serv": 20, "session": [1, 2, 3, 7, 31, 34, 37, 38, 46, 47], "session_id": 1, "sessionconfig": [1, 7, 34], "sessioncontext": [0, 1, 2, 5, 7, 8, 14, 16, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 46], "sessioncontextintern": 1, "set": [0, 1, 2, 3, 4, 5, 7, 11, 13, 17, 18, 20, 21, 23, 28, 29, 31, 34, 37, 41, 46], "set_custom_cell_build": 3, "set_custom_header_build": 3, "set_formatt": 3, "setter": 20, "setvari": 4, "sever": [30, 34, 36], "sha": [4, 5, 7], "sha224": [4, 5, 7], "sha256": [4, 5, 7], "sha384": [4, 5, 7], "sha512": [4, 5, 7], "sharabl": 20, "share": [3, 20, 21, 23, 26, 39], "shift_offet": 5, "shift_offset": 5, "short": 36, "shot": 18, "should": [1, 2, 4, 5, 7, 8, 11, 14, 16, 20, 21, 24, 29, 31, 33], "show": [2, 3, 20, 22, 23, 25, 26, 29, 31, 33, 34, 35, 36, 37, 38, 45, 46], "show_attack": 46, "show_column": 46, "show_truncation_messag": [3, 37], "showcas": 34, "shown": 3, "side": [4, 5, 7, 20], "sign": [4, 5, 7], "signatur": 47, "signific": 35, "significantli": [5, 34], "signum": [4, 5, 7], "silver": 5, "similar": [4, 5, 7, 20, 23, 26, 33, 46], "similarto": 4, "simpl": [2, 5, 21, 30, 34, 43, 44, 46], "simplest": [18, 31], "simpli": [2, 7, 18, 20, 21, 35, 37, 46], "simplic": [7, 18], "simplifi": 33, "simultan": 34, "sin": [4, 5, 7], "sinc": [2, 3, 24, 31, 35, 46], "sine": [4, 5, 7], "singl": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 31, 33, 34, 35, 36, 46], "single_file_output": [2, 7], "sinh": [4, 5, 7], "site": 41, "size": [1, 2, 5, 7, 26, 34, 37, 47], "skew": 34, "skip": [1, 2, 7, 11, 18, 41], "skip_arrow_metadata": [2, 7], "skip_metadata": [1, 7, 11], "slice": [4, 5, 7, 26], "slightli": 31, "slope": 5, "slow": 2, "slower": [2, 34], "slowest": 31, "slowpok": 33, "small": [34, 35], "smallest": [18, 24], "smooth_a": 31, "snappi": [2, 7], "snorlax": 33, "so": [1, 2, 4, 7, 18, 20, 21, 30, 31, 33, 36, 39, 45], "softwar": [7, 14, 20], "solid": 37, "some": [2, 5, 7, 18, 20, 21, 24, 27, 31, 33, 35, 36, 38, 45, 47], "sometim": [1, 7, 20, 35], "soon": 5, "sort": [1, 2, 4, 5, 7, 11, 13, 24, 33, 36], "sort_bi": [2, 7], "sort_express": 5, "sort_list_to_raw_sort_list": 1, "sortexpr": [1, 2, 4, 5, 7, 13], "sortkei": [1, 2, 4, 5], "sound": 20, "sourc": [1, 5, 7, 8, 9, 10, 11, 20, 21, 23, 34, 36, 37, 38, 39, 45], "sp": [22, 35, 38], "space": [4, 5, 7], "sparingli": 31, "special": [3, 18, 46], "specif": [0, 2, 3, 4, 5, 7, 14, 25, 26, 27, 33, 34, 36, 37, 46, 47], "specifi": [1, 2, 4, 5, 7, 13, 26, 27, 29, 31, 33, 34, 46], "speed": [2, 7, 22, 24, 33, 35, 38], "sphinx": 19, "spill": [1, 7], "spillabl": [1, 7], "split": [5, 31], "split_part": 5, "sql": [1, 2, 7, 14, 16, 17, 18, 22, 23, 26, 30, 32, 35, 36], "sql_type": 20, "sql_with_opt": 1, "sqlite": 17, "sqloption": [1, 7], "sqltabl": [8, 9, 10], "sqltype": [4, 7, 20], "sqrt": [4, 5, 7], "squar": [4, 5, 7], "squi": 27, "squirtl": [22, 27, 33, 35, 38], "src": [4, 7, 20, 21], "ssd": 34, "stabl": [18, 20, 31], "stai": 20, "standard": [5, 7, 18, 20], "start": [4, 5, 7, 13, 18, 26, 29, 30, 33, 37, 38, 41], "start_ag": 26, "start_bound": [4, 7], "started_young": 26, "starts_with": 5, "state": [1, 7, 18, 20, 23, 31], "state_typ": [7, 18, 31], "statement": [1, 4, 5, 7, 23, 46], "static": [0, 1, 2, 4, 7, 14, 16, 17, 18], "statist": [2, 7, 24, 25], "statistics_en": [2, 7], "statistics_truncate_length": [2, 7], "std": 25, "stddev": [5, 24], "stddev_pop": [5, 24], "stddev_samp": 5, "steel": 24, "stem": 20, "step": [5, 20], "still": [2, 7, 13, 20, 31, 35], "stop": 5, "storag": [34, 35], "store": [1, 4, 7, 12, 20], "str": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 46], "str_lit": 27, "straightforward": [7, 15, 40, 41], "strategi": 34, "stream": [1, 2, 7, 15, 20, 39], "strftime": 5, "stride": 5, "string": [0, 1, 2, 3, 4, 5, 7, 13, 14, 16, 17, 18, 20, 21, 24, 25, 26, 28, 31, 36, 46], "string1": 5, "string2": 5, "string_agg": [5, 24], "string_list": 5, "string_liter": [4, 7, 27], "string_view": [4, 7, 39], "strip": 2, "strong": 22, "strongli": 34, "strpo": 5, "struct": [1, 4, 5, 7, 20, 28, 39], "structarrai": 39, "structur": [7, 13, 14, 20], "style": [3, 20, 26, 36, 46], "style_provid": [3, 37], "styleprovid": [3, 37], "sub": [4, 7], "sub_expr": 5, "subclass": 20, "subfield": [4, 5, 7], "submit": 21, "submodul": 21, "subqueri": 4, "subqueryalia": 4, "subset": [2, 27, 30], "substitut": 1, "substr": 5, "substr_index": 5, "substrait": [7, 19], "subtl": 20, "subtract": [4, 7], "successfulli": [7, 13], "suffici": [1, 7, 34], "suffix": 5, "suggest": 35, "sum": [5, 7, 18, 24, 31, 34, 36], "sum_bias_10": [7, 18], "summar": [2, 7, 18], "summari": [2, 24, 25], "support": [0, 1, 2, 3, 4, 5, 7, 13, 14, 15, 16, 17, 18, 20, 29, 31, 35, 36, 37, 46], "supports_bounded_execut": [18, 31], "suppos": [5, 20, 24], "suppress_build_script_link_lin": 21, "sure": 21, "switch": 46, "symbol": 2, "sync": 21, "synchron": 20, "syntax": [5, 26], "synthet": 34, "system": [1, 2, 7, 20, 21, 34], "t": [5, 18, 30], "t1": 18, "tabl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 13, 14, 18, 20, 23, 25, 27, 28, 29, 34, 36, 37, 38, 39, 41, 42, 44, 46], "table_exist": [0, 1], "table_id": 3, "table_nam": [0, 2, 8, 9, 10], "table_partition_col": [1, 7, 11, 13], "table_provid": 1, "table_uuid": [2, 3, 37], "tablefunct": [1, 7, 18, 47], "tableprovid": [20, 45, 47], "tableproviderexport": [0, 1, 7], "tablescan": 4, "tabular": 36, "tag": 3, "tail": 2, "take": [2, 3, 18, 20, 21, 24, 26, 31, 33, 35, 47], "taken": 34, "tan": [4, 5, 7], "tangent": [4, 5, 7], "tanh": [4, 5, 7], "target": [1, 2, 7, 34], "target_partit": [1, 7], "task": [27, 36], "taskcontextprovid": 47, "taxi": 23, "td": 37, "technic": 22, "techniqu": [34, 35], "templat": [7, 18], "tempor": 28, "temporari": [1, 2, 7, 37, 46], "temporarili": 37, "temporary_column": 36, "term": 33, "termin": [7, 13], "terminologi": 20, "test": [5, 7, 14, 21, 31, 34, 35], "text": [1, 2, 5, 37], "textual": 27, "th": [5, 37], "than": [2, 4, 5, 7, 13, 24, 31, 34, 36, 37, 39, 41], "thei": [7, 8, 18, 20, 26, 31, 46], "them": [2, 5, 7, 20, 21, 23, 25, 31, 35], "theme": 37, "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, 29, 31, 32, 33, 34, 35, 37, 38, 39, 45, 46, 47], "third": 23, "thoroughli": 20, "those": [2, 4, 7, 22, 24, 31, 35, 46], "though": [20, 31], "thread": 22, "three": [31, 33, 35], "threshold": 46, "through": [2, 3, 20, 22, 28, 35, 36, 37, 38], "thu": 18, "thusli": 20, "ticket": 21, "tie": 5, "tight": 20, "tile": 5, "time": [5, 18, 20, 21, 24, 26, 27, 31, 34, 36, 47], "time64": 5, "timestamp": [4, 5, 7, 27, 31], "tip_amount": [23, 30], "tip_perc": 23, "tips_plus_tol": 30, "tlc": [23, 30], "tmp": [1, 7], "to_arrow_t": [2, 36], "to_hex": [4, 5, 7], "to_inn": [7, 13], "to_json": 16, "to_panda": [2, 25, 27, 36, 46], "to_polar": [2, 36], "to_proto": [7, 14], "to_pyarrow": [7, 15, 36], "to_pyarrow_dataset": 35, "to_pydict": [2, 32, 36], "to_pylist": [2, 36], "to_substrait_plan": 16, "to_timestamp": [5, 27], "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, 14], "todo": 20, "togeth": [2, 5, 24], "toler": [2, 7], "tolls_amount": 30, "toml": 21, "top": 25, "topic": 35, "total": [2, 4, 5, 7, 22, 23, 26, 27, 35, 38], "total_amount": [23, 36], "total_as_float": 27, "total_as_int": 27, "touch": 21, "toward": 5, "tr": 37, "track": 20, "tracker": 5, "tradit": 21, "trail": 2, "trait": [18, 20], "transact": [1, 7], "transactionaccessmod": 4, "transactionconclus": 4, "transactionend": 4, "transactionisolationlevel": 4, "transactionstart": 4, "transfer": 20, "transform": [2, 7, 14, 23, 36], "translat": [5, 20], "treat": [4, 33, 41], "treatment": [4, 7], "tree": [7, 14, 26], "trigger": [2, 37, 39], "trim": [4, 5, 7], "trip": [23, 30, 35], "trip_dist": [23, 30], "trivial": 21, "true": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 18, 21, 24, 26, 27, 30, 31, 33, 34, 37, 41], "trunc": 5, "truncat": [2, 3, 5, 7, 13, 24, 27, 30, 33, 37], "truncated_row": [7, 13], "try": [1, 7, 11, 13, 20], "trycast": 4, "tune": [2, 7, 34], "tupl": [1, 2, 5, 7, 11, 13, 15, 18], "turn": [0, 2, 4, 7, 20, 46], "tutori": 38, "two": [2, 4, 5, 7, 14, 15, 20, 24, 26, 29, 31, 33, 34, 35], "type": [0, 1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 27, 30, 31, 33, 34, 35, 38, 46], "type_class": 3, "typeerror": [3, 4], "typeguard": 18, "typic": [0, 2, 4, 7, 15, 17, 18, 23, 35], "typing_extens": [7, 15], "u": [20, 24, 26, 35], "udaf": [1, 7, 18, 22, 31], "udaf1": [7, 18], "udaf2": [7, 18], "udaf3": [7, 18], "udf": [1, 7, 18, 22, 31], "udf4": [7, 18], "udtf": [7, 18], "udwf": [1, 7, 18], "udwf1": [7, 18], "udwf2": [7, 18], "udwf3": [7, 18], "ultim": 21, "unabl": 46, "unari": [7, 14], "unbound": [1, 4, 7, 18, 33], "unchang": [2, 27], "uncompress": [2, 7, 13], "undefin": 21, "under": [1, 20, 35], "underli": [4, 7, 13, 18, 20, 39], "understand": [20, 34, 36], "unfortun": 20, "unfrozen": 20, "unicod": [4, 5, 7], "unintend": 46, "union": [2, 4, 5], "union_distinct": 2, "uniqu": [1, 2, 3, 5, 7, 18, 24], "unit": [4, 7, 33, 35], "unixtim": 5, "unknown": 4, "unless": 20, "unlik": [4, 7, 33], "unmatch": 29, "unnest": [2, 4], "unnest_column": 2, "unnestexpr": 4, "unoptim": 2, "unpars": [7, 19], "unsaf": [20, 47], "unspil": [1, 7], "until": 23, "up": [2, 7, 14, 18, 23, 26, 33, 34, 37], "updat": [1, 2, 7, 18, 20, 31, 47], "upon": [5, 20, 31], "upper": [4, 5, 7], "uppercas": [4, 5, 7], "upstream": 20, "urbango": 29, "url": 1, "us": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47], "usabl": 2, "usag": [1, 2, 4, 5, 7, 18, 24, 33], "use_shared_styl": [3, 7, 37], "user": [0, 1, 2, 4, 5, 7, 8, 14, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 37, 38, 47], "user_defin": [1, 7, 19, 31], "user_id": 36, "uses_window_fram": [18, 31], "utc": 5, "utf8": [4, 5, 7], "utf8view": [4, 7], "util": [3, 20, 33, 34, 35], "uuid": 5, "uv": 21, "v": [21, 34], "v4": 5, "val": 46, "valid": [1, 2, 3, 4, 7, 8, 9, 10, 18], "validate_pycapsul": 47, "valu": [1, 2, 3, 4, 5, 7, 13, 14, 18, 24, 26, 28, 29, 30, 31, 33, 36, 37, 46], "value1": 5, "value2": 5, "value_i": 5, "value_x": 5, "valueerror": [2, 3, 7], "values_a": 31, "values_b": 31, "values_view": 2, "var": 5, "var_pop": [5, 24], "var_samp": [5, 24], "var_sampl": 5, "vari": 34, "variabl": [1, 5, 7, 21, 26, 46], "varianc": 5, "variant": [4, 7, 14, 29], "variant_nam": [4, 7], "varieti": [26, 31, 35, 41], "variou": [13, 36, 37, 38], "vastli": [21, 34], "vec": 20, "vendorid": 30, "venomoth": 33, "venonat": 33, "venu": 27, "venufleur": 27, "venufleurmega": 27, "venusaur": [22, 27, 33, 35, 38, 46], "venusaurmega": [22, 27, 33, 35, 38, 46], "venv": 21, "verbos": 2, "veri": [40, 41], "verifi": 38, "version": [2, 3, 7, 20, 21, 29, 35, 47], "versu": 34, "via": [1, 2, 4, 7, 15, 16, 18, 20, 21, 22, 26, 29, 31, 35, 36, 38, 45, 46, 47], "view": [0, 1, 2, 7, 25, 27, 28, 38, 46], "view1": 32, "vink": 33, "violat": 3, "virtual": [1, 7, 21], "visual": [7, 14, 23, 37], "volatil": [7, 18, 31], "voltorb": [24, 33], "volum": 34, "vulpix": 24, "wa": [1, 7], "wai": [20, 21, 24, 35, 36, 38], "wait": 20, "want": [20, 21, 24, 27, 31, 33, 37, 45], "wartortl": [22, 35, 38], "water": [22, 24, 27, 35, 38], "we": [0, 2, 7, 18, 20, 21, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 38, 39, 46], "weedl": [22, 33, 35, 38], "weight": [5, 26], "welcom": [21, 38], "well": [1, 7, 20, 21, 31, 36, 46], "were": [20, 26], "what": [20, 23], "whatev": 18, "when": [1, 2, 3, 4, 5, 7, 11, 13, 18, 20, 21, 22, 24, 26, 29, 31, 33, 34, 35, 36, 37, 43, 46], "when_expr": 4, "whenev": [20, 21, 36], "where": [2, 4, 5, 7, 14, 24, 26, 27, 31, 32, 33, 35, 46], "wherea": 26, "wherev": 20, "whether": [1, 2, 3, 4, 5, 7, 11, 13, 18, 26], "which": [0, 2, 4, 5, 7, 13, 18, 20, 21, 22, 24, 26, 30, 31, 33, 35, 36, 37, 47], "while": [7, 18, 20, 29, 34], "white": 37, "who": [20, 47], "whole": 24, "why": 20, "wide": [26, 34, 35, 36], "width": [3, 37], "window": [1, 4, 5, 7, 18, 24, 28, 34], "window_fram": [4, 5, 7, 33], "windowevalu": [7, 18, 31], "windowexpr": 4, "windowfram": [4, 5, 7, 33], "windowframebound": [4, 7], "windowudf": [1, 7, 18], "windowudfexport": [7, 18], "wish": [20, 29, 31], "with_": [7, 13], "with_allow_ddl": [1, 7], "with_allow_dml": [1, 7], "with_allow_stat": [1, 7], "with_batch_s": [1, 7], "with_column": [2, 36], "with_column_renam": 2, "with_com": [7, 13, 41], "with_create_default_catalog_and_schema": [1, 7, 34], "with_default_catalog_and_schema": [1, 7, 34], "with_delimit": [7, 13, 41], "with_disk_manager_dis": [1, 7], "with_disk_manager_o": [1, 7, 34], "with_disk_manager_specifi": [1, 7], "with_escap": [7, 13, 41], "with_fair_spill_pool": [1, 7, 34], "with_file_compression_typ": [7, 13, 41], "with_file_extens": [7, 13, 41], "with_file_sort_ord": [7, 13], "with_greedy_memory_pool": [1, 7], "with_has_head": [7, 13, 41], "with_head": 2, "with_information_schema": [1, 7, 34], "with_logical_extension_codec": 1, "with_newlines_in_valu": [7, 13], "with_null_regex": [7, 13, 41], "with_parquet_prun": [1, 7, 34], "with_pretti": 17, "with_quot": [7, 13], "with_repartition_aggreg": [1, 7, 34], "with_repartition_file_min_s": [1, 7], "with_repartition_file_scan": [1, 7], "with_repartition_join": [1, 7, 34], "with_repartition_sort": [1, 7], "with_repartition_window": [1, 7, 34], "with_schema": [7, 13], "with_schema_infer_max_record": [7, 13], "with_table_partition_col": [7, 13], "with_target_partit": [1, 7, 34], "with_temp_file_path": [1, 7], "with_termin": [7, 13], "with_truncated_row": [7, 13, 41], "with_unbounded_memory_pool": [1, 7], "within": [0, 5, 7, 9, 18, 24, 26], "within_limit": 2, "without": [2, 4, 5, 7, 20, 21, 24, 27, 29, 30, 31, 36, 46], "won": 30, "word": [4, 5, 7], "work": [1, 2, 5, 7, 23, 27, 30, 34, 36, 37, 38, 46], "workflow": 21, "workload": 34, "worthwhil": [2, 7], "would": [4, 5, 8, 18, 20, 46], "wrap": [1, 2, 20, 31], "wrapper": [1, 7, 15, 20, 21, 35], "write": [2, 7, 8, 16, 20, 31, 35, 36, 47], "write_batch_s": [2, 7], "write_csv": 2, "write_json": 2, "write_opt": 2, "write_parquet": 2, "write_parquet_with_opt": 2, "write_t": 2, "writer": [2, 7], "writer_vers": [2, 7], "written": [2, 7, 20, 22, 35, 36], "x": [2, 5, 7, 18, 22, 27, 33, 35, 38, 46], "xor": 5, "xz": [7, 13], "y": [2, 5, 18, 22, 27, 33, 35, 38, 46], "year": 5, "years_in_posit": 26, "yellow": [23, 35], "yellow_tripdata_2021": [23, 30], "yet": [2, 35], "yield": [2, 5, 36, 39], "you": [0, 1, 2, 5, 7, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47], "your": [0, 2, 7, 18, 20, 21, 24, 25, 30, 31, 34, 35, 36, 37, 46, 47], "your_tabl": 36, "yourself": 20, "z": [1, 7, 18], "zero": [2, 5, 7, 15, 22, 39], "zstandard": [2, 7], "zstd": [2, 7, 13], "zubat": 24, "\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.options", "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", "Upgrade Guides"], "titleterms": {"0": 47, "52": 47, "The": 20, "addit": 37, "aggreg": [24, 31, 33], "altern": 20, "anti": 29, "apach": 35, "api": 19, "approach": 20, "argument": 36, "arrai": 26, "arrow": [20, 36, 39], "attribut": [4, 7, 12, 18], "avail": 33, "avro": 40, "base": [8, 36], "basic": [25, 37], "benchmark": 34, "best": 37, "boolean": 26, "build": 21, "built": 36, "cast": 27, "catalog": [0, 35], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 20, 36], "code": 21, "column": [26, 30, 36], "commit": 21, "common": [28, 36], "concept": 23, "condit": 27, "configur": [34, 37], "consider": 34, "content": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "context": [1, 23], "contextu": 37, "control": 37, "copi": 36, "core": 36, "cpu": 34, "creat": [35, 36, 37], "csv": 41, "custom": [35, 37, 45], "data": 35, "datafram": [2, 23, 35, 36], "dataframe_formatt": 3, "datafus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 39, 47], "defin": [31, 35], "delta": 35, "depend": 21, "detail": 20, "develop": 21, "displai": 37, "distinct": 24, "duplic": 29, "exampl": [22, 34], "execut": 36, "export": 39, "expr": 4, "express": [23, 26, 36], "extens": 20, "faq": 31, "ffi": 20, "file": 35, "fill_nul": 27, "filter": 24, "format": 37, "formatt": 37, "frame": 33, "from": [20, 39], "full": 29, "function": [3, 4, 5, 7, 11, 18, 24, 26, 27, 31, 33, 36], "guid": 47, "guidelin": [20, 21], "handl": 27, "hook": 21, "how": 21, "html": [36, 37], "html_formatt": 6, "iceberg": 35, "implement": 20, "import": [34, 39], "improv": 21, "inner": 29, "input": [8, 9, 10], "inspir": 20, "instal": [21, 22, 38], "introduct": [21, 38], "io": [11, 42], "issu": 20, "join": 29, "json": 43, "jupyt": 37, "kei": 29, "lake": 35, "left": 29, "librari": [35, 36], "liter": 26, "local": 35, "locat": 10, "manag": 37, "mathemat": 27, "maxim": 34, "memori": [35, 37], "miss": 27, "modul": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18], "mutabl": 20, "name": 36, "null": [24, 33], "object": 35, "object_stor": 12, "oper": [25, 28, 36], "optim": 37, "option": [13, 31], "order": [24, 33], "other": [27, 35], "overview": 36, "packag": [7, 9], "paramet": [24, 33], "parameter": 46, "parquet": 44, "partit": 33, "perform": 37, "plan": 14, "practic": 37, "pre": 21, "primari": 20, "provid": [35, 37, 45], "pyarrow": 36, "pyo3": 20, "python": [20, 21, 22, 36], "queri": 46, "record_batch": 15, "refer": 19, "regist": 32, "render": [36, 37], "resourc": 37, "return": [4, 5, 7], "run": 21, "rust": 21, "scalar": 31, "schema": 35, "select": 30, "semi": 29, "separ": 21, "session": 23, "set": [24, 33], "share": 37, "sourc": 35, "speed": 21, "sql": 46, "statu": 20, "store": 35, "stream": 36, "string": 27, "struct": 26, "style": 37, "submodul": [7, 9], "substrait": 16, "tabl": [31, 35, 45], "tempor": 27, "termin": 36, "treatment": [24, 33], "udwf": 31, "unpars": 17, "updat": 21, "upgrad": 47, "usag": 34, "user": [31, 35], "user_defin": 18, "valu": 27, "view": 32, "window": [31, 33], "work": 20, "zero": 36}}) \ No newline at end of file diff --git a/user-guide/common-operations/aggregations.html b/user-guide/common-operations/aggregations.html index edce52dc3..d2b473a61 100644 --- a/user-guide/common-operations/aggregations.html +++ b/user-guide/common-operations/aggregations.html @@ -620,15 +620,15 @@

          Distinct +----------+--------------------------------------------------+ | Type 1 | Type 2 List | +----------+--------------------------------------------------+ -| Bug | [, Grass, Flying, Poison] | -| Poison | [Ground, , Flying] | -| Electric | [, Flying, Steel] | +| Bug | [Flying, Poison, , Grass] | +| Poison | [Flying, , Ground] | +| Electric | [Flying, , Steel] | | Fairy | [] | -| Normal | [Flying, , Fairy] | +| Normal | [Fairy, , Flying] | | Ice | [Flying, Psychic] | -| Grass | [Psychic, , Poison] | -| Fire | [Dragon, , Flying] | -| Water | [Ice, Psychic, , Flying, Dark, Poison, Fighting] | +| Grass | [, Poison, Psychic] | +| Fire | [, Dragon, Flying] | +| Water | [Dark, Flying, Psychic, Poison, Ice, Fighting, ] | | Ground | [Rock, ] | +----------+--------------------------------------------------+ Data truncated. @@ -644,14 +644,14 @@

          Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Poison, Flying, Grass] | -| Poison | [Ground, Flying] | -| Electric | [Flying, Steel] | -| Normal | [Fairy, Flying] | -| Ice | [Flying, Psychic] | +| Bug | [Flying, Grass, Poison] | +| Poison | [Flying, Ground] | +| Electric | [Steel, Flying] | +| Normal | [Flying, Fairy] | +| Ice | [Psychic, Flying] | | Grass | [Poison, Psychic] | -| Fire | [Dragon, Flying] | -| Water | [Fighting, Poison, Dark, Flying, Psychic, Ice] | +| Fire | [Flying, Dragon] | +| Water | [Psychic, Flying, Poison, Ice, Dark, Fighting] | | Rock | [Ground, Water, Flying] | | Ghost | [Poison] | +----------+------------------------------------------------+ @@ -663,15 +663,15 @@

          Distinct +----------+------------------------------------------------+ | Type 1 | Type 2 List | +----------+------------------------------------------------+ -| Bug | [Grass, Poison, Flying] | +| Bug | [Flying, Grass, Poison] | | Poison | [Ground, Flying] | -| Electric | [Flying, Steel] | +| Electric | [Steel, Flying] | | Fairy | | -| Normal | [Fairy, Flying] | +| Normal | [Flying, Fairy] | | Ice | [Flying, Psychic] | | Grass | [Poison, Psychic] | -| Fire | [Flying, Dragon] | -| Water | [Poison, Dark, Fighting, Ice, Psychic, Flying] | +| Fire | [Dragon, Flying] | +| Water | [Fighting, Psychic, Ice, Flying, Poison, Dark] | | Ground | [Rock] | +----------+------------------------------------------------+ Data truncated. diff --git a/user-guide/common-operations/basic-info.html b/user-guide/common-operations/basic-info.html index a8eb1c08b..7ae87351f 100644 --- a/user-guide/common-operations/basic-info.html +++ b/user-guide/common-operations/basic-info.html @@ -456,11 +456,11 @@

          Basic Operations+-----+---------+--------+--------+ | nrs | names | random | groups | +-----+---------+--------+--------+ -| 1 | python | 628 | A | -| 2 | ruby | 89 | A | -| 3 | java | 789 | B | -| 4 | haskell | 911 | C | -| 5 | go | 878 | B | +| 1 | python | 23 | A | +| 2 | ruby | 939 | A | +| 3 | java | 615 | B | +| 4 | haskell | 887 | C | +| 5 | go | 382 | B | +-----+---------+--------+--------+ @@ -471,8 +471,8 @@

          Basic Operations+-----+--------+--------+--------+ | nrs | names | random | groups | +-----+--------+--------+--------+ -| 1 | python | 628 | A | -| 2 | ruby | 89 | A | +| 1 | python | 23 | A | +| 2 | ruby | 939 | A | +-----+--------+--------+--------+ @@ -490,11 +490,11 @@

          Basic Operations
          In [8]: df.to_pandas()
           Out[8]: 
              nrs    names  random groups
          -0    1   python     628      A
          -1    2     ruby      89      A
          -2    3     java     789      B
          -3    4  haskell     911      C
          -4    5       go     878      B
          +0    1   python      23      A
          +1    2     ruby     939      A
          +2    3     java     615      B
          +3    4  haskell     887      C
          +4    5       go     382      B
           

          describe() shows a quick statistic summary of your data:

          @@ -506,11 +506,11 @@

          Basic Operations+------------+--------------------+-------+-------------------+--------+ | count | 5.0 | 5 | 5.0 | 5 | | null_count | 0.0 | 0 | 0.0 | 0 | -| mean | 3.0 | null | 659.0 | null | -| std | 1.5811388300841898 | null | 336.9814534955893 | null | -| min | 1.0 | go | 89.0 | A | -| max | 5.0 | ruby | 911.0 | C | -| median | 3.0 | null | 789.0 | null | +| mean | 3.0 | null | 569.2 | null | +| std | 1.5811388300841898 | null | 378.5580536720887 | null | +| min | 1.0 | go | 23.0 | A | +| max | 5.0 | ruby | 939.0 | C | +| median | 3.0 | null | 615.0 | null | +------------+--------------------+-------+-------------------+--------+ diff --git a/user-guide/common-operations/functions.html b/user-guide/common-operations/functions.html index b4e4a5c3a..1afdcb7ef 100644 --- a/user-guide/common-operations/functions.html +++ b/user-guide/common-operations/functions.html @@ -566,16 +566,16 @@

          Temporal +-------------------------------+ | now() | +-------------------------------+ -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | -| 2026-02-23T12:53:06.752343449 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +| 2026-03-12T09:56:53.757149654 | +-------------------------------+ Data truncated. diff --git a/user-guide/introduction.html b/user-guide/introduction.html index 439c369f0..00a760dde 100644 --- a/user-guide/introduction.html +++ b/user-guide/introduction.html @@ -457,7 +457,7 @@

          Installation
          In [1]: import datafusion
           
           In [2]: datafusion.__version__
          -Out[2]: '52.0.0'
          +Out[2]: '52.3.0'
           

          In this documentation we will also show some examples for how DataFusion integrates