Skip to content

Commit e91af9e

Browse files
committed
add partition splitter
1 parent 17e4351 commit e91af9e

File tree

5 files changed

+425
-0
lines changed

5 files changed

+425
-0
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ arrow-ord = { version = "55" }
5050
arrow-schema = { version = "55" }
5151
arrow-select = { version = "55" }
5252
arrow-string = { version = "55" }
53+
arrow-row = { version = "55" }
5354
as-any = "0.3.2"
5455
async-std = "1.12"
5556
async-trait = "0.1.88"

crates/iceberg/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ arrow-array = { workspace = true }
5151
arrow-buffer = { workspace = true }
5252
arrow-cast = { workspace = true }
5353
arrow-ord = { workspace = true }
54+
arrow-row = { workspace = true }
5455
arrow-schema = { workspace = true }
5556
arrow-select = { workspace = true }
5657
arrow-string = { workspace = true }

crates/iceberg/src/arrow/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ mod value;
3434

3535
pub use reader::*;
3636
pub use value::*;
37+
pub(crate) mod record_batch_partition_splitter;

0 commit comments

Comments
 (0)