We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4815b8f commit 7cc6f90Copy full SHA for 7cc6f90
1 file changed
datafusion/proto/tests/cases/roundtrip_physical_plan.rs
@@ -3694,7 +3694,7 @@ fn roundtrip_filter_with_none_projection() -> Result<()> {
3694
Operator::Gt,
3695
lit(ScalarValue::Int32(Some(0))),
3696
));
3697
- let input = Arc::new(EmptyExec::new(Arc::clone(&schema)));
+ let input: Arc<dyn ExecutionPlan> = Arc::new(EmptyExec::new(Arc::clone(&schema)));
3698
3699
// Case 1: None projection (return all columns)
3700
roundtrip_test(Arc::new(FilterExec::try_new(
@@ -3718,3 +3718,4 @@ fn roundtrip_filter_with_none_projection() -> Result<()> {
3718
3719
Ok(())
3720
}
3721
+
0 commit comments