Skip to content

Commit 7cc6f90

Browse files
authored
refactor test
1 parent 4815b8f commit 7cc6f90

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

datafusion/proto/tests/cases/roundtrip_physical_plan.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3694,7 +3694,7 @@ fn roundtrip_filter_with_none_projection() -> Result<()> {
36943694
Operator::Gt,
36953695
lit(ScalarValue::Int32(Some(0))),
36963696
));
3697-
let input = Arc::new(EmptyExec::new(Arc::clone(&schema)));
3697+
let input: Arc<dyn ExecutionPlan> = Arc::new(EmptyExec::new(Arc::clone(&schema)));
36983698

36993699
// Case 1: None projection (return all columns)
37003700
roundtrip_test(Arc::new(FilterExec::try_new(
@@ -3718,3 +3718,4 @@ fn roundtrip_filter_with_none_projection() -> Result<()> {
37183718

37193719
Ok(())
37203720
}
3721+

0 commit comments

Comments
 (0)