Skip to content

Commit 7bc64bb

Browse files
author
ZENOTME
committed
add partition splitter
1 parent eb307d6 commit 7bc64bb

File tree

5 files changed

+426
-0
lines changed

5 files changed

+426
-0
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ arrow-ord = { version = "54.1.0" }
4949
arrow-schema = { version = "54.1.0" }
5050
arrow-select = { version = "54.1.0" }
5151
arrow-string = { version = "54.1.0" }
52+
arrow-row = { version = "54.1.0" }
5253
async-stream = "0.3.5"
5354
async-trait = "0.1.86"
5455
async-std = "1.12"

crates/iceberg/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ arrow-array = { workspace = true }
4949
arrow-buffer = { workspace = true }
5050
arrow-cast = { workspace = true }
5151
arrow-ord = { workspace = true }
52+
arrow-row = { workspace = true }
5253
arrow-schema = { workspace = true }
5354
arrow-select = { workspace = true }
5455
arrow-string = { workspace = true }

crates/iceberg/src/arrow/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ pub(crate) mod record_batch_transformer;
2525
mod value;
2626
pub use reader::*;
2727
pub use value::*;
28+
pub(crate) mod record_batch_partition_splitter;

0 commit comments

Comments
 (0)