File tree Expand file tree Collapse file tree
crates/integrations/datafusion/src/physical_plan Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -491,25 +491,4 @@ mod tests {
491491 Partitioning :: UnknownPartitioning ( 2 )
492492 ) ) ;
493493 }
494-
495- #[ tokio:: test]
496- async fn test_no_projection_keeps_full_schema ( ) {
497- let schema = create_test_arrow_schema ( ) ;
498- let scan = IcebergTableScan :: new_with_tasks_from_predicate (
499- get_test_table_from_metadata_file ( ) . await ,
500- None ,
501- schema. clone ( ) ,
502- None ,
503- None ,
504- None ,
505- vec ! [ vec![ ] ] ,
506- Partitioning :: UnknownPartitioning ( 1 ) ,
507- ) ;
508-
509- assert_eq ! ( scan. projection_indices( ) , None ) ;
510- assert_eq ! ( scan. projection( ) , None ) ;
511- assert_eq ! ( scan. predicates( ) , None ) ;
512- assert_eq ! ( scan. schema( ) . fields( ) , scan. table_schema( ) . fields( ) ) ;
513- assert_eq ! ( scan. table_schema( ) . fields( ) , schema. fields( ) ) ;
514- }
515494}
You can’t perform that action at this time.
0 commit comments