This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/proto-5f30c81d2c in repository https://gitbox.apache.org/repos/asf/datafusion.git
discard 1f7185e4aa chore(deps): bump the proto group with 2 updates add 173989cc2f Docs: Add Tuning Guide for larger-than-memory queries (#17069) add 407a965d37 Link UdfEq and PtrEq to help understand relationship. (#17082) add cbc0614209 feat: Dynamic Parquet encryption and decryption properties (#16779) add 43a0627eed chore(deps): bump the proto group with 2 updates 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 (1f7185e4aa) \ N -- N -- N refs/heads/dependabot/cargo/main/proto-5f30c81d2c (43a0627eed) 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 | 3 + datafusion-examples/Cargo.toml | 2 + datafusion-examples/README.md | 1 + .../examples/parquet_encrypted_with_kms.rs | 301 +++++++++++++++++++++ datafusion/common/src/config.rs | 90 ++++++ datafusion/common/src/encryption.rs | 29 +- .../common/src/file_options/parquet_writer.rs | 9 +- datafusion/core/tests/memory_limit/mod.rs | 4 + datafusion/core/tests/parquet/encryption.rs | 254 ++++++++++++++++- datafusion/core/tests/parquet/mod.rs | 1 + datafusion/datasource-parquet/Cargo.toml | 1 + datafusion/datasource-parquet/src/file_format.rs | 165 +++++++++-- datafusion/datasource-parquet/src/opener.rs | 56 +++- datafusion/datasource-parquet/src/source.rs | 42 ++- datafusion/execution/Cargo.toml | 6 + datafusion/execution/src/lib.rs | 2 + datafusion/execution/src/parquet_encryption.rs | 81 ++++++ datafusion/execution/src/runtime_env.rs | 40 +++ datafusion/expr/src/ptr_eq.rs | 2 + datafusion/expr/src/udf_eq.rs | 2 + dev/update_config_docs.sh | 26 ++ docs/source/user-guide/configs.md | 26 ++ 22 files changed, 1076 insertions(+), 67 deletions(-) create mode 100644 datafusion-examples/examples/parquet_encrypted_with_kms.rs create mode 100644 datafusion/execution/src/parquet_encryption.rs --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org