This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/pyo3-build-config-0.25.0 in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
discard c964cd66 build(deps): bump pyo3-build-config from 0.24.1 to 0.25.0 add e8aa671b Move the udf module to user_defined (#1112) add 1e7494ba add unit tests for expression functions (#1121) add 278a33ef feat: add user defined table function support (#1113) add 0cc9b0a5 Release DataFusion 47.0.0 (#1130) add bd46bced build(deps): bump pyo3-build-config from 0.24.1 to 0.25.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 (c964cd66) \ N -- N -- N refs/heads/dependabot/cargo/main/pyo3-build-config-0.25.0 (bd46bced) 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: .github/workflows/build.yml | 8 +- .github/workflows/docs.yaml | 2 +- .github/workflows/test.yaml | 6 +- Cargo.lock | 892 +++++++------ Cargo.toml | 6 +- dev/changelog/47.0.0.md | 64 + dev/release/README.md | 20 +- docs/source/conf.py | 1 + .../user-guide/common-operations/udf-and-udfa.rst | 44 +- .../.cargo/config.toml | 0 .../Cargo.lock | 1333 ++++++++++++-------- .../Cargo.toml | 12 +- .../build.rs | 0 .../pyproject.toml | 2 +- .../python/tests/_test_table_function.py | 134 ++ .../python/tests/_test_table_provider.py | 4 +- .../datafusion-ffi-example/src/lib.rs | 14 +- .../datafusion-ffi-example/src/table_function.rs | 56 + .../src/table_provider.rs} | 48 +- examples/python-udwf.py | 2 +- pyproject.toml | 4 + python/datafusion/__init__.py | 14 +- python/datafusion/context.py | 6 +- python/datafusion/udf.py | 756 +---------- python/datafusion/{udf.py => user_defined.py} | 170 ++- python/tests/test_expr.py | 465 ++++++- python/tests/test_imports.py | 2 +- python/tests/test_udwf.py | 2 +- src/context.rs | 7 + src/dataframe.rs | 22 +- src/lib.rs | 2 + src/udtf.rs | 127 ++ 32 files changed, 2414 insertions(+), 1811 deletions(-) create mode 100644 dev/changelog/47.0.0.md rename examples/{ffi-table-provider => datafusion-ffi-example}/.cargo/config.toml (100%) rename examples/{ffi-table-provider => datafusion-ffi-example}/Cargo.lock (71%) rename examples/{ffi-table-provider => datafusion-ffi-example}/Cargo.toml (83%) rename examples/{ffi-table-provider => datafusion-ffi-example}/build.rs (100%) rename examples/{ffi-table-provider => datafusion-ffi-example}/pyproject.toml (97%) create mode 100644 examples/datafusion-ffi-example/python/tests/_test_table_function.py rename examples/{ffi-table-provider => datafusion-ffi-example}/python/tests/_test_table_provider.py (94%) copy build.rs => examples/datafusion-ffi-example/src/lib.rs (70%) create mode 100644 examples/datafusion-ffi-example/src/table_function.rs rename examples/{ffi-table-provider/src/lib.rs => datafusion-ffi-example/src/table_provider.rs} (71%) copy python/datafusion/{udf.py => user_defined.py} (84%) create mode 100644 src/udtf.rs --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org