Skip to content

Commit a53d872

Browse files
committed
removed allow dead code for partition splitter
1 parent 116aae8 commit a53d872

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

crates/iceberg/src/arrow/record_batch_partition_splitter.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,13 @@ pub const PROJECTED_PARTITION_VALUE_COLUMN: &str = "_partition";
3838
/// The splitter supports two modes for obtaining partition values:
3939
/// - **Computed mode** (`calculator` is `Some`): Computes partition values from source columns using transforms
4040
/// - **Pre-computed mode** (`calculator` is `None`): Expects a `_partition` column in the input batch
41-
// # TODO
42-
// Remove this after partition writer supported.
43-
#[allow(dead_code)]
4441
pub struct RecordBatchPartitionSplitter {
4542
schema: SchemaRef,
4643
partition_spec: PartitionSpecRef,
4744
calculator: Option<PartitionValueCalculator>,
4845
partition_type: StructType,
4946
}
5047

51-
// # TODO
52-
// Remove this after partition writer supported.
53-
#[allow(dead_code)]
5448
impl RecordBatchPartitionSplitter {
5549
/// Create a new RecordBatchPartitionSplitter.
5650
///

0 commit comments

Comments
 (0)