Skip to content

Commit 98cd34d

Browse files
committed
support fanout partition writer
1 parent 84e6fa0 commit 98cd34d

File tree

9 files changed

+602
-18
lines changed

9 files changed

+602
-18
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ arrow-ord = { version = "53" }
4747
arrow-schema = { version = "53" }
4848
arrow-select = { version = "53" }
4949
arrow-string = { version = "53" }
50+
arrow-row = { version = "53" }
5051
async-stream = "0.3.5"
5152
async-trait = "0.1"
5253
async-std = "1.12"

crates/iceberg/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ arrow-arith = { workspace = true }
4848
arrow-array = { workspace = true }
4949
arrow-cast = { workspace = true }
5050
arrow-ord = { workspace = true }
51+
arrow-row = { workspace = true }
5152
arrow-schema = { workspace = true }
5253
arrow-select = { workspace = true }
5354
arrow-string = { workspace = true }

crates/iceberg/src/arrow/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ pub(crate) mod record_batch_transformer;
2525
mod value;
2626
pub use reader::*;
2727
pub use value::*;
28+
mod record_batch_partition_spliter;
29+
pub(crate) use record_batch_partition_spliter::*;

0 commit comments

Comments
 (0)