This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a change to tag v0.1.0
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
*** WARNING: tag v0.1.0 was modified! ***
from 43d38a9 (commit)
to f1e1ea6 (commit)
discard 43d38a9 ci: fix release rust issue
add de1644d Bump version to 0.2.0
add f0e17a4 feat: Add array data type support (#433)
add 51bd65a [BUG] Fix possible TOCTOU race between leader discovery and
server lookup in Lookuper (#451)
add e05a3f0 [TASK-470] Optimize null append in Arrow builder (#471)
add 0d4956c chore: fix annoying python CI/CD errors due to unsuported
action (#473)
add 1fc28c0 feat: [TASK-315] Proto + RPC for LimitScan (#472)
add 308560c ci: fix release rust issue
add f1e1ea6 ci: pin pypi publish action to ASF-approved SHA
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
tag 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 (43d38a9)
\
N -- N -- N refs/tags/v0.1.0 (f1e1ea6)
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/build_and_test_python.yml | 2 +-
.github/workflows/release_python.yml | 31 +-
Cargo.toml | 4 +-
bindings/cpp/src/types.rs | 6 +
crates/fluss/src/client/table/lookup.rs | 11 +-
crates/fluss/src/proto/fluss_api.proto | 17 +
crates/fluss/src/record/arrow.rs | 65 ++
crates/fluss/src/row/binary/binary_writer.rs | 10 +-
crates/fluss/src/row/binary_array.rs | 848 +++++++++++++++++++++
crates/fluss/src/row/column.rs | 463 ++++++++++-
.../src/row/compacted/compacted_key_writer.rs | 11 +
crates/fluss/src/row/compacted/compacted_row.rs | 202 ++++-
.../src/row/compacted/compacted_row_reader.rs | 204 +++--
.../src/row/compacted/compacted_row_writer.rs | 4 +
crates/fluss/src/row/datum.rs | 204 ++++-
.../fluss/src/row/encode/compacted_key_encoder.rs | 160 +++-
crates/fluss/src/row/field_getter.rs | 55 +-
crates/fluss/src/row/mod.rs | 14 +
crates/fluss/src/rpc/api_key.rs | 4 +
.../src/rpc/message/{lookup.rs => limit_scan.rs} | 35 +-
crates/fluss/src/rpc/message/mod.rs | 2 +
website/docs/user-guide/rust/api-reference.md | 13 +
website/docs/user-guide/rust/data-types.md | 24 +
23 files changed, 2176 insertions(+), 213 deletions(-)
create mode 100644 crates/fluss/src/row/binary_array.rs
copy crates/fluss/src/rpc/message/{lookup.rs => limit_scan.rs} (67%)