This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a change to branch kevinjqliu/hive-4
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
discard 1c492347 Upgrade Hive image from 3.1.3 to 4.0.0
add b6dc4cfb feat: Support for V3 Metadata (#1682)
add fd089164 fix(reader): Support both position and equality delete files
on the same FileScanTask (#1778)
add a970a0c0 feat(datafusion): Add TaskWriter for DataFusion (#1769)
add 76d8e2d3 fix: support reading compressed metadata (#1802)
add bb607dc5 Support deserializing bytes (#1820)
add 06e934f8 Upgrade Hive image from 3.1.3 to 4.0.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 (1c492347)
\
N -- N -- N refs/heads/kevinjqliu/hive-4 (06e934f8)
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 | 1 +
Cargo.toml | 1 +
crates/iceberg/Cargo.toml | 1 +
.../src/arrow/caching_delete_file_loader.rs | 113 ++++
crates/iceberg/src/arrow/delete_filter.rs | 4 +-
.../src/arrow/record_batch_partition_splitter.rs | 6 -
crates/iceberg/src/catalog/memory/catalog.rs | 4 +-
crates/iceberg/src/catalog/mod.rs | 219 ++++++-
.../src/expr/visitors/manifest_evaluator.rs | 1 +
crates/iceberg/src/spec/encrypted_key.rs | 16 +-
crates/iceberg/src/spec/manifest/data_file.rs | 6 +-
crates/iceberg/src/spec/manifest/entry.rs | 38 ++
crates/iceberg/src/spec/manifest/mod.rs | 3 +-
crates/iceberg/src/spec/manifest/writer.rs | 76 ++-
crates/iceberg/src/spec/manifest_list.rs | 671 ++++++++++++++++++++-
crates/iceberg/src/spec/snapshot.rs | 138 ++++-
crates/iceberg/src/spec/snapshot_summary.rs | 2 +
crates/iceberg/src/spec/table_metadata.rs | 591 +++++++++++++++++-
crates/iceberg/src/spec/table_metadata_builder.rs | 453 +++++++++++++-
crates/iceberg/src/spec/values.rs | 303 +++++++++-
crates/iceberg/src/table.rs | 4 +-
crates/iceberg/src/transaction/mod.rs | 122 +++-
crates/iceberg/src/transaction/snapshot.rs | 36 +-
.../src/writer/file_writer/location_generator.rs | 2 +
crates/iceberg/src/writer/partitioning/mod.rs | 1 +
.../writer/partitioning/unpartitioned_writer.rs | 198 ++++++
...nimal.json => TableMetadataV3ValidMinimal.json} | 7 +-
crates/integrations/datafusion/src/lib.rs | 2 +
crates/integrations/datafusion/src/task_writer.rs | 534 ++++++++++++++++
29 files changed, 3408 insertions(+), 145 deletions(-)
create mode 100644
crates/iceberg/src/writer/partitioning/unpartitioned_writer.rs
copy crates/iceberg/testdata/table_metadata/{TableMetadataV2ValidMinimal.json
=> TableMetadataV3ValidMinimal.json} (91%)
create mode 100644 crates/integrations/datafusion/src/task_writer.rs