This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/pip/python/ruff-0.14.10
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
omit 5045f04 build(deps-dev): bump ruff from 0.14.1 to 0.14.10 in /python
add 24dc861 feat: implement table v8 file slicing for read path (#501)
add 3e3a2cf refactor: add targeted MDT lookup APIs for partition pruning
(#502)
add c250a00 build(deps): bump actions/cache from 4 to 5 (#494)
add 0025664 build(deps-dev): bump mypy from 1.18.2 to 1.19.1 in /python
(#497)
add dca759c build(deps-dev): bump ruff from 0.14.1 to 0.14.10 in /python
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 (5045f04)
\
N -- N -- N refs/heads/dependabot/pip/python/ruff-0.14.10
(dca759c)
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:
.github/workflows/ci.yml | 2 +-
crates/core/src/file_group/base_file.rs | 26 +
crates/core/src/file_group/builder.rs | 886 ++++++++++++++++++++-
crates/core/src/file_group/log_file/content.rs | 2 +-
crates/core/src/file_group/log_file/mod.rs | 214 ++++-
crates/core/src/file_group/log_file/scanner.rs | 6 +-
crates/core/src/file_group/mod.rs | 475 ++++++++++-
crates/core/src/file_group/reader.rs | 324 +++-----
crates/core/src/hfile/reader.rs | 16 +-
crates/core/src/hfile/record.rs | 10 +-
crates/core/src/metadata/merger.rs | 102 ++-
crates/core/src/metadata/mod.rs | 5 +-
crates/core/src/metadata/table/mod.rs | 441 ++++++++++
.../metadata/{table_record.rs => table/records.rs} | 74 +-
crates/core/src/table/fs_view.rs | 179 ++++-
crates/core/src/table/listing.rs | 52 +-
crates/core/src/table/mod.rs | 252 +-----
crates/core/src/timeline/completion_time.rs | 57 ++
crates/core/src/timeline/instant.rs | 24 +-
crates/core/src/timeline/mod.rs | 64 +-
crates/core/src/timeline/selector.rs | 8 +-
crates/core/src/timeline/view.rs | 312 ++++++++
python/pyproject.toml | 4 +-
23 files changed, 2902 insertions(+), 633 deletions(-)
create mode 100644 crates/core/src/metadata/table/mod.rs
rename crates/core/src/metadata/{table_record.rs => table/records.rs} (92%)
create mode 100644 crates/core/src/timeline/completion_time.rs
create mode 100644 crates/core/src/timeline/view.rs