This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/proto-8afbff2258 in repository https://gitbox.apache.org/repos/asf/datafusion.git
omit f0a51d7dc9 chore(deps): bump prost-build from 0.13.5 to 0.14.1 in the proto group add 0e486277ef adapt filter expressions to file schema during parquet scan instead of using a SchemaAdapter (#16461) add b4053801bf Simplify AsyncScalarUdfImpl so it extends ScalarUdfImpl (#16523) add 3649dc80ce datafusion-cli: Use correct S3 region if it is not specified (#16502) add 0143b20de3 feat: support `map_entries` builtin function (#16557) add e88dc89033 chore(deps): bump prost-build from 0.13.5 to 0.14.1 in the proto group 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 (f0a51d7dc9) \ N -- N -- N refs/heads/dependabot/cargo/main/proto-8afbff2258 (e88dc89033) 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: datafusion-cli/src/catalog.rs | 2 +- datafusion-cli/src/exec.rs | 53 ++- datafusion-cli/src/object_storage.rs | 89 +++- datafusion-cli/tests/cli_integration.rs | 33 ++ .../snapshots/aws_region_auto_resolution.snap | 29 ++ datafusion-examples/examples/async_udf.rs | 31 +- datafusion/common/src/utils/mod.rs | 2 +- .../core/src/datasource/physical_plan/parquet.rs | 68 ++- datafusion/core/src/physical_planner.rs | 10 +- datafusion/datasource-parquet/src/opener.rs | 136 +++++- datafusion/datasource-parquet/src/row_filter.rs | 155 +------ datafusion/expr/src/async_udf.rs | 42 +- datafusion/functions-nested/src/lib.rs | 3 + .../src/{map_keys.rs => map_entries.rs} | 65 +-- .../physical-expr/src/async_scalar_function.rs | 34 +- datafusion/physical-expr/src/lib.rs | 2 + datafusion/physical-expr/src/schema_rewriter.rs | 466 +++++++++++++++++++++ datafusion/physical-plan/src/async_func.rs | 2 + datafusion/sqllogictest/test_files/map.slt | 51 +++ .../library-user-guide/functions/adding-udfs.md | 52 ++- docs/source/user-guide/sql/scalar_functions.md | 25 ++ 21 files changed, 1082 insertions(+), 268 deletions(-) create mode 100644 datafusion-cli/tests/snapshots/aws_region_auto_resolution.snap copy datafusion/functions-nested/src/{map_keys.rs => map_entries.rs} (62%) create mode 100644 datafusion/physical-expr/src/schema_rewriter.rs --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org