This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/tokio-1.52.3
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
omit 11ea6461 chore: bump tokio from 1.51.0 to 1.52.3
add 4e64847c [elixir] feat: Add get_database_info admin call (#586)
add fa80f693 [elixir] Optimize CI/CD with proper actions, reusing compiled
deps (#598)
add 6242b99d docs: comprehensive README update (#600)
add 0d24bddf [python] map and row complex types support (#601)
add 63638ecc [c++] add prefix lookup (#606)
add 87303ea7 [metrics] Add writer pipeline metrics (#609)
add 470c3c6d [python] Split examples in Python and enforce executability
in CI for python examples (#610)
add c6d04a32 [elixir] feat: Allow comment and custom_properties on
create_database (#597)
add 9cfeda78 [python] Add stub test to catch pyi drift in CI (#616)
add d071c906 [python] Limit scan (#613)
add c6ee4437 chore: bump rustler from 0.37.3 to 0.38.0 (#594)
add 22ebcd41 chore: bump tokio from 1.51.0 to 1.52.3
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 (11ea6461)
\
N -- N -- N refs/heads/dependabot/cargo/tokio-1.52.3 (22ebcd41)
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_elixir.yml | 5 +-
.github/workflows/build_and_test_python.yml | 37 +
Cargo.lock | 25 +-
Cargo.toml | 2 +-
README.md | 373 ++++++--
bindings/cpp/include/fluss.hpp | 157 ++++
bindings/cpp/src/lib.rs | 410 +++++++++
bindings/cpp/src/table.cpp | 216 +++++
bindings/cpp/test/test_kv_table.cpp | 249 ++++++
bindings/elixir/lib/fluss/admin.ex | 29 +-
bindings/elixir/lib/fluss/database_descriptor.ex | 67 ++
.../lib/fluss/{server_node.ex => database_info.ex} | 26 +-
bindings/elixir/lib/fluss/native.ex | 10 +-
bindings/elixir/native/fluss_nif/Cargo.toml | 2 +-
bindings/elixir/native/fluss_nif/src/admin.rs | 65 +-
bindings/elixir/test/database_descriptor_test.exs | 169 ++++
bindings/elixir/test/integration/admin_test.exs | 107 ++-
.../elixir/test/integration/log_table_test.exs | 2 +-
bindings/python/DEVELOPMENT.md | 46 +-
bindings/python/example/complex_types.py | 238 +++++
bindings/python/example/example.py | 971 ---------------------
bindings/python/example/log_table.py | 430 +++++++++
bindings/python/example/partitioned_kv_table.py | 138 +++
bindings/python/example/partitioned_table.py | 176 ++++
bindings/python/example/pk_table.py | 240 +++++
bindings/python/fluss/__init__.pyi | 196 ++++-
bindings/python/src/lib.rs | 1 +
bindings/python/src/table.rs | 572 +++++++++---
bindings/python/src/utils.rs | 78 +-
.../python/stubtest-allowlist.txt | 26 +-
bindings/python/test/conftest.py | 333 ++++++-
bindings/python/test/test_batch_scanner.py | 221 +++++
bindings/python/test/test_examples.py | 66 ++
bindings/python/test/test_kv_table.py | 375 +++++---
bindings/python/test/test_log_table.py | 291 ++++--
bindings/python/test/test_schema.py | 61 +-
crates/fluss/src/client/table/batch_scanner.rs | 151 ++--
crates/fluss/src/client/write/accumulator.rs | 30 +
crates/fluss/src/client/write/batch.rs | 127 +++
crates/fluss/src/client/write/sender.rs | 424 ++++++++-
crates/fluss/src/client/write/writer_client.rs | 6 +
crates/fluss/src/metrics.rs | 221 +++++
crates/fluss/src/record/arrow.rs | 75 +-
.../fluss/src/record/kv/kv_record_batch_builder.rs | 5 +
crates/fluss/src/row/binary_array.rs | 25 +-
crates/fluss/src/row/binary_map.rs | 24 +
crates/fluss/src/row/column_writer.rs | 12 +-
crates/fluss/src/test_utils.rs | 42 +-
crates/fluss/tests/integration/batch_scanner.rs | 87 +-
website/docs/user-guide/cpp/api-reference.md | 19 +
.../docs/user-guide/cpp/example/prefix-lookup.md | 107 +++
website/docs/user-guide/python/api-reference.md | 14 +
website/docs/user-guide/python/data-types.md | 86 ++
.../docs/user-guide/python/example/log-tables.md | 14 +
.../python/example/primary-key-tables.md | 12 +
website/docs/user-guide/rust/api-reference.md | 7 +
56 files changed, 6280 insertions(+), 1618 deletions(-)
create mode 100644 bindings/elixir/lib/fluss/database_descriptor.ex
copy bindings/elixir/lib/fluss/{server_node.ex => database_info.ex} (57%)
create mode 100644 bindings/elixir/test/database_descriptor_test.exs
create mode 100644 bindings/python/example/complex_types.py
delete mode 100644 bindings/python/example/example.py
create mode 100644 bindings/python/example/log_table.py
create mode 100644 bindings/python/example/partitioned_kv_table.py
create mode 100644 bindings/python/example/partitioned_table.py
create mode 100644 bindings/python/example/pk_table.py
copy .licenserc.yaml => bindings/python/stubtest-allowlist.txt (56%)
create mode 100644 bindings/python/test/test_batch_scanner.py
create mode 100644 bindings/python/test/test_examples.py
create mode 100644 website/docs/user-guide/cpp/example/prefix-lookup.md