This is an automated email from the ASF dual-hosted git repository.
fresh-borzoni pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
from 9f69ae46 [tests] replace fixed tokio::time::sleep workarounds with
wait_for_table_ready helper. (#564)
new 1aa24acb [client] Implement BatchScanner with limit-based scan
new 426bb1a2 [client] Fix KV limit-scan decode + enforce limit, support
schema evolution
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
crates/fluss/src/client/table/batch_scanner.rs | 767 +++++++++++++++++++++
crates/fluss/src/client/table/mod.rs | 2 +
crates/fluss/src/client/table/scanner.rs | 97 ++-
crates/fluss/src/record/kv/mod.rs | 2 +
crates/fluss/src/record/kv/value_record_batch.rs | 188 +++++
crates/fluss/tests/integration/batch_scanner.rs | 338 +++++++++
crates/fluss/tests/integration/log_table.rs | 2 -
.../tests/integration/record_batch_log_reader.rs | 7 +-
crates/fluss/tests/test_fluss.rs | 1 +
website/docs/user-guide/rust/api-reference.md | 15 +
website/docs/user-guide/rust/example/log-tables.md | 17 +
.../user-guide/rust/example/primary-key-tables.md | 15 +
12 files changed, 1442 insertions(+), 9 deletions(-)
create mode 100644 crates/fluss/src/client/table/batch_scanner.rs
create mode 100644 crates/fluss/src/record/kv/value_record_batch.rs
create mode 100644 crates/fluss/tests/integration/batch_scanner.rs