Skip to content

Commit 5d9ee2e

Browse files
committed
Add PartitionSpec to FileScanTask and handling in RecordBatchTransformer. This resolves ~50 tests in the spark-extensions Iceberg Java suite.
1 parent 05ba2d3 commit 5d9ee2e

File tree

6 files changed

+1019
-664
lines changed

6 files changed

+1019
-664
lines changed

crates/iceberg/src/arrow/delete_filter.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,9 @@ pub(crate) mod tests {
339339
project_field_ids: vec![],
340340
predicate: None,
341341
deletes: vec![pos_del_1, pos_del_2.clone()],
342+
partition: None,
343+
partition_spec_id: None,
344+
partition_spec: None,
342345
},
343346
FileScanTask {
344347
start: 0,
@@ -350,6 +353,9 @@ pub(crate) mod tests {
350353
project_field_ids: vec![],
351354
predicate: None,
352355
deletes: vec![pos_del_3],
356+
partition: None,
357+
partition_spec_id: None,
358+
partition_spec: None,
353359
},
354360
];
355361

0 commit comments

Comments
 (0)