This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/sqlparser-0.49.0 in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
discard 7ed8dad build(deps): bump sqlparser from 0.47.0 to 0.49.0 add f580155 Upgrade Datafusion 40 (#771) add 66bfe36 Bugfix: Calling count with None arguments (#768) add 951d6b9 Add in user example that compares a two different approaches to UDFs (#770) add 9a6805e Add missing exports for wrapper modules (#782) add 3eb198b Add PyExpr to_variant conversions (#793) add 1d61548 Add missing expressions to wrapper export (#795) add bd0e820 Doc/cross reference (#791) add 2205e05 Re-Enable `num_centroids` to `approx_percentile_cont` (#798) add b6f06f7 UDAF process all state variables (#799) add e24a4bb build(deps): bump sqlparser from 0.47.0 to 0.49.0 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (7ed8dad) \ N -- N -- N refs/heads/dependabot/cargo/main/sqlparser-0.49.0 (e24a4bb) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: Cargo.lock | 233 ++++---- Cargo.toml | 26 +- docs/.gitignore | 2 + docs/requirements.txt | 4 +- docs/source/api.rst | 31 - docs/source/api/dataframe.rst | 27 - docs/source/api/execution_context.rst | 29 - docs/source/api/expression.rst | 27 - docs/source/api/functions.rst | 27 - docs/source/api/object_store.rst | 27 - docs/source/conf.py | 56 +- docs/source/index.rst | 2 - docs/source/user-guide/basics.rst | 14 +- .../user-guide/common-operations/aggregations.rst | 2 +- .../user-guide/common-operations/basic-info.rst | 8 +- .../user-guide/common-operations/expressions.rst | 12 +- .../user-guide/common-operations/functions.rst | 14 +- docs/source/user-guide/common-operations/joins.rst | 4 +- .../common-operations/select-and-filter.rst | 10 +- .../user-guide/common-operations/udf-and-udfa.rst | 9 +- .../user-guide/common-operations/windows.rst | 6 +- docs/source/user-guide/configuration.rst | 8 +- docs/source/user-guide/io/avro.rst | 2 +- docs/source/user-guide/io/csv.rst | 6 +- docs/source/user-guide/io/json.rst | 2 +- docs/source/user-guide/io/parquet.rst | 6 +- examples/python-udf-comparisons.py | 186 ++++++ examples/substrait.py | 2 +- python/datafusion/__init__.py | 33 +- python/datafusion/catalog.py | 4 +- python/datafusion/common.py | 32 +- python/datafusion/context.py | 134 +++-- python/datafusion/dataframe.py | 109 ++-- python/datafusion/expr.py | 101 +++- python/datafusion/functions.py | 508 +++++++++++----- python/datafusion/object_store.py | 12 + python/datafusion/record_batch.py | 14 +- python/datafusion/substrait.py | 24 +- python/datafusion/tests/test_aggregation.py | 132 ++--- python/datafusion/tests/test_dataframe.py | 116 ++-- python/datafusion/tests/test_expr.py | 28 + python/datafusion/tests/test_functions.py | 184 +++--- python/datafusion/tests/test_sql.py | 17 +- python/datafusion/tests/test_udaf.py | 4 +- python/datafusion/tests/test_wrapper_coverage.py | 49 ++ python/datafusion/udf.py | 38 +- src/common/data_type.rs | 5 + src/dataset_exec.rs | 5 + src/expr.rs | 51 +- src/expr/alias.rs | 32 +- src/expr/exists.rs | 15 +- src/expr/in_list.rs | 22 +- src/expr/in_subquery.rs | 22 +- src/expr/placeholder.rs | 21 +- src/expr/{alias.rs => sort_expr.rs} | 56 +- src/expr/{alias.rs => unnest_expr.rs} | 58 +- src/functions.rs | 652 ++++++++++++--------- src/sql/logical.rs | 15 +- src/substrait.rs | 6 +- src/udaf.rs | 19 +- 60 files changed, 1991 insertions(+), 1309 deletions(-) create mode 100644 docs/.gitignore delete mode 100644 docs/source/api.rst delete mode 100644 docs/source/api/dataframe.rst delete mode 100644 docs/source/api/execution_context.rst delete mode 100644 docs/source/api/expression.rst delete mode 100644 docs/source/api/functions.rst delete mode 100644 docs/source/api/object_store.rst create mode 100644 examples/python-udf-comparisons.py create mode 100644 python/datafusion/tests/test_wrapper_coverage.py copy src/expr/{alias.rs => sort_expr.rs} (60%) copy src/expr/{alias.rs => unnest_expr.rs} (57%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org