This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/arrow-ord-eq-54.0.0
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
discard dac6e41 build(deps): update arrow-ord requirement from = 53.3.0 to =
54.0.0
add f02cabf feat: add `TimelineSelector` to support timeline loading
(#233)
add 11c2430 refactor: improve `TimelineSelector` API (#234)
add 64b1dc1 feat: add `hoodie.read.listing.parallelism` config (#235)
add d04b9ab feat: support row filters for `FileGroupReader` (#237)
add a396f6c feat: implement incremental query for COW tables (#236)
add 1779e77 refactor: improve `BaseFile` APIs (#239)
add dbd7d87 build(deps): clean up dependencies (#240)
add c56b213 build(deps): update arrow-ord requirement from = 53.3.0 to =
54.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 (dac6e41)
\
N -- N -- N refs/heads/dependabot/cargo/arrow-ord-eq-54.0.0
(c56b213)
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.toml | 19 +-
crates/core/Cargo.toml | 3 +-
crates/core/src/config/read.rs | 27 +-
crates/core/src/config/table.rs | 69 ++++
crates/core/src/error.rs | 7 +-
crates/core/src/expr/filter.rs | 152 ++++++-
crates/core/src/file_group/base_file.rs | 134 +++++++
crates/core/src/file_group/builder.rs | 443 +++++++++++++++++++++
crates/core/src/file_group/mod.rs | 191 +++------
crates/core/src/file_group/reader.rs | 171 +++++++-
crates/core/src/lib.rs | 1 +
.../src/storage/{file_info.rs => file_metadata.rs} | 28 +-
crates/core/src/storage/file_stats.rs | 25 --
crates/core/src/storage/mod.rs | 137 +++----
crates/core/src/storage/util.rs | 20 -
crates/core/src/table/builder.rs | 5 +-
crates/core/src/table/fs_view.rs | 68 ++--
crates/core/src/table/mod.rs | 288 +++++++++++---
crates/core/src/table/partition.rs | 14 +-
crates/core/src/timeline/instant.rs | 367 +++++++++++++++++
.../src/{table/timeline.rs => timeline/mod.rs} | 263 +++++-------
crates/core/src/timeline/selector.rs | 362 +++++++++++++++++
.../table_props_valid/.hoodie/hoodie.properties | 1 +
crates/datafusion/Cargo.toml | 7 +
crates/datafusion/src/lib.rs | 28 +-
crates/tests/Cargo.toml | 13 +-
python/Cargo.toml | 3 +-
python/hudi/_internal.pyi | 17 +-
python/src/internal.rs | 39 +-
.../tests/test_table_incremental_read.py | 48 +--
python/tests/test_table_read.py | 4 +-
31 files changed, 2323 insertions(+), 631 deletions(-)
create mode 100644 crates/core/src/file_group/base_file.rs
create mode 100644 crates/core/src/file_group/builder.rs
rename crates/core/src/storage/{file_info.rs => file_metadata.rs} (62%)
delete mode 100644 crates/core/src/storage/file_stats.rs
create mode 100644 crates/core/src/timeline/instant.rs
rename crates/core/src/{table/timeline.rs => timeline/mod.rs} (54%)
create mode 100644 crates/core/src/timeline/selector.rs
copy demo/app/python/src/main.py =>
python/tests/test_table_incremental_read.py (52%)