This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new f2eb3b2be Minor: Fix logical conflict (#4565)
f2eb3b2be is described below
commit f2eb3b2bebffe75df06f3e55f2413728e7e19f2c
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Dec 9 07:23:32 2022 -0500
Minor: Fix logical conflict (#4565)
---
datafusion/proto/src/physical_plan/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/proto/src/physical_plan/mod.rs
b/datafusion/proto/src/physical_plan/mod.rs
index ee42c304e..f890c3ece 100644
--- a/datafusion/proto/src/physical_plan/mod.rs
+++ b/datafusion/proto/src/physical_plan/mod.rs
@@ -557,7 +557,7 @@ impl AsExecutionPlan for PhysicalPlanNode {
runtime,
extension_codec
)?;
- Ok(Arc::new(CrossJoinExec::try_new(left, right)?))
+ Ok(Arc::new(CrossJoinExec::new(left, right)))
}
PhysicalPlanType::Empty(empty) => {
let schema = Arc::new(convert_required!(empty.schema)?);