This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/arrow-56.2.0
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
discard 19e7246 Update arrow requirement from 55.1.0 to 56.2.0
add 1dd1d2b [chore] Introduce IT infra and add IT for database operations
in admin (#28)
add 1e1c3c3 [chore] Supports PyO3 in m1 arm 64 (#33)
add 8a9a0b2 [feat] Create Python bindings for table writing and reading
(#9)
add 33a7a15 Update arrow requirement from 55.1.0 to 56.2.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 (19e7246)
\
N -- N -- N refs/heads/dependabot/cargo/arrow-56.2.0 (33a7a15)
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:
.../python/fluss/__init__.py => .cargo/config.toml | 8 +-
.github/workflows/ci.yml | 6 +-
Cargo.toml | 6 +-
bindings/python/Cargo.toml | 3 +-
bindings/python/fluss/__init__.py | 2 +-
bindings/python/pyproject.toml | 2 +-
bindings/python/src/admin.rs | 26 +-
bindings/python/src/config.rs | 33 +-
bindings/python/src/connection.rs | 45 ++-
bindings/python/src/error.rs | 8 +-
bindings/python/src/lib.rs | 23 +-
bindings/python/src/metadata.rs | 119 +++---
bindings/python/src/table.rs | 412 +++++++++++++++++++++
bindings/python/src/utils.rs | 105 +++---
crates/fluss/Cargo.toml | 11 +-
crates/fluss/src/client/admin.rs | 5 +-
crates/fluss/src/client/table/mod.rs | 20 +-
crates/fluss/src/client/table/scanner.rs | 103 +++++-
crates/fluss/src/metadata/database.rs | 19 +-
crates/fluss/src/metadata/table.rs | 4 +-
crates/fluss/src/proto/fluss_api.proto | 20 +
crates/fluss/src/record/mod.rs | 5 +
crates/fluss/src/row/column.rs | 9 +
crates/fluss/src/rpc/api_key.rs | 3 +
crates/fluss/src/rpc/message/list_offsets.rs | 124 +++++++
crates/fluss/src/rpc/message/mod.rs | 2 +
crates/fluss/tests/integration/admin.rs | 131 +++++++
crates/fluss/tests/integration/client/mod.rs | 21 --
crates/fluss/tests/integration/fluss_cluster.rs | 192 ++++++++++
crates/fluss/tests/test_fluss.rs | 4 +-
30 files changed, 1261 insertions(+), 210 deletions(-)
copy bindings/python/fluss/__init__.py => .cargo/config.toml (87%)
create mode 100644 bindings/python/src/table.rs
create mode 100644 crates/fluss/src/rpc/message/list_offsets.rs
create mode 100644 crates/fluss/tests/integration/admin.rs
delete mode 100644 crates/fluss/tests/integration/client/mod.rs
create mode 100644 crates/fluss/tests/integration/fluss_cluster.rs