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 e88dc89033 chore(deps): bump prost-build from 0.13.5 to 0.14.1 in the proto group add 0c30f13c82 Add nested struct casting support and integrate into SchemaAdapter (#16371) add 9c6d6ee00d Fix type of ExecutionOptions::time_zone (#16569) add fffcd1f76c Improve err message grammar (#16566) add 3839736c7f feat: add `array_min` scalar function and associated tests (#16574) add 586a88c15c refactor: move PruningPredicate into its own module (#16587) add d73f0e87dc feat: Finalize support for `RightMark` join + `Mark` join swap (#16488) add 18841752d7 chore(deps): bump indexmap from 2.9.0 to 2.10.0 (#16582) add b4ba1c6ea9 Skip re-pruning based on partition values and file level stats if there are no dynamic filters (#16424) add cce3f3f3b5 fix: column indices in FFI partition evaluator (#16480) add 2999e41b6f Support timestamp and date arguments for `range` and `generate_series` table functions (#16552) add 8d34abb169 Fix normalization of columns in JOIN ... USING. (#16560) add 1de4d0e2e1 fix: support within_group (#16538) add 8d772e5f8a Revert "feat: Finalize support for `RightMark` join + `Mark` join swap (#16488)" (#16597) add 9f3cc7b85b move min_batch/max_batch to functions-aggregate-common (#16593) add d66d6b9eb8 feat: Parquet modular encryption (#16351) add 1c0dcad2d8 fix: disallow specify both order_by and within_group (#16606) add ebf49b4fe5 fix: format within_group error message (#16613) new e9e7e5f14d 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 (e88dc89033) \ N -- N -- N refs/heads/dependabot/cargo/main/proto-8afbff2258 (e9e7e5f14d) 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. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: Cargo.lock | 38 +- Cargo.toml | 3 +- benchmarks/src/bin/dfbench.rs | 4 +- benchmarks/src/bin/imdb.rs | 2 +- benchmarks/src/bin/tpch.rs | 2 +- datafusion-examples/README.md | 1 + datafusion-examples/examples/parquet_encrypted.rs | 119 + datafusion/common/Cargo.toml | 1 + datafusion/common/src/config.rs | 489 +- .../common/src/file_options/parquet_writer.rs | 20 +- datafusion/common/src/lib.rs | 1 + datafusion/common/src/nested_struct.rs | 329 ++ datafusion/core/src/dataframe/parquet.rs | 68 + .../core/src/datasource/file_format/options.rs | 20 +- .../core/src/datasource/file_format/parquet.rs | 42 +- datafusion/core/src/datasource/mod.rs | 18 +- datafusion/core/tests/parquet/custom_reader.rs | 1 + datafusion/core/tests/parquet/encryption.rs | 129 + datafusion/core/tests/parquet/mod.rs | 7 + datafusion/core/tests/parquet/row_group_pruning.rs | 100 + datafusion/core/tests/sql/joins.rs | 48 + datafusion/datasource-parquet/Cargo.toml | 1 + datafusion/datasource-parquet/src/file_format.rs | 55 +- datafusion/datasource-parquet/src/metrics.rs | 23 +- datafusion/datasource-parquet/src/opener.rs | 258 +- datafusion/datasource-parquet/src/page_filter.rs | 2 +- .../datasource-parquet/src/row_group_filter.rs | 2 +- datafusion/datasource-parquet/src/source.rs | 8 + datafusion/datasource/src/mod.rs | 17 + datafusion/datasource/src/schema_adapter.rs | 359 +- datafusion/expr/src/logical_plan/builder.rs | 8 +- datafusion/ffi/src/udwf/mod.rs | 68 +- .../ffi/src/udwf/partition_evaluator_args.rs | 27 +- datafusion/functions-aggregate-common/src/lib.rs | 1 + .../functions-aggregate-common/src/min_max.rs | 353 ++ datafusion/functions-aggregate/src/min_max.rs | 345 +- datafusion/functions-nested/Cargo.toml | 1 + datafusion/functions-nested/src/lib.rs | 7 +- .../functions-nested/src/{max.rs => min_max.rs} | 96 +- datafusion/functions-table/src/generate_series.rs | 555 ++- .../optimizer/src/optimize_projections/mod.rs | 2 +- .../physical-expr-common/src/physical_expr.rs | 50 +- .../src/expressions/dynamic_filters.rs | 56 +- datafusion/proto-common/src/from_proto/mod.rs | 1 + datafusion/proto/src/logical_plan/file_formats.rs | 1 + datafusion/pruning/Cargo.toml | 2 + datafusion/pruning/src/file_pruner.rs | 133 + datafusion/pruning/src/lib.rs | 5117 +------------------- .../pruning/src/{lib.rs => pruning_predicate.rs} | 25 + datafusion/sql/src/expr/function.rs | 13 +- datafusion/sql/src/planner.rs | 2 +- datafusion/sql/src/relation/join.rs | 2 +- datafusion/sqllogictest/test_files/aggregate.slt | 18 +- datafusion/sqllogictest/test_files/array.slt | 87 +- .../sqllogictest/test_files/encrypted_parquet.slt | 89 + .../sqllogictest/test_files/table_functions.slt | 174 +- docs/source/user-guide/cli/datasources.md | 41 + docs/source/user-guide/sql/scalar_functions.md | 24 + 58 files changed, 3719 insertions(+), 5746 deletions(-) create mode 100644 datafusion-examples/examples/parquet_encrypted.rs create mode 100644 datafusion/common/src/nested_struct.rs create mode 100644 datafusion/core/tests/parquet/encryption.rs create mode 100644 datafusion/functions-aggregate-common/src/min_max.rs rename datafusion/functions-nested/src/{max.rs => min_max.rs} (60%) create mode 100644 datafusion/pruning/src/file_pruner.rs copy datafusion/pruning/src/{lib.rs => pruning_predicate.rs} (99%) create mode 100644 datafusion/sqllogictest/test_files/encrypted_parquet.slt --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org