Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 08791ad

Browse files
committed
remove redundant cross join handling
Signed-off-by: AveryQi115 <[email protected]>
1 parent bff4248 commit 08791ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optd-datafusion-bridge/src/from_optd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ impl OptdPlanContext<'_> {
345345
}
346346

347347
let join_type = match node.join_type() {
348-
JoinType::Inner | JoinType::Cross => datafusion::logical_expr::JoinType::Inner,
348+
JoinType::Inner => datafusion::logical_expr::JoinType::Inner,
349349
JoinType::LeftOuter => datafusion::logical_expr::JoinType::Left,
350350
_ => unimplemented!(),
351351
};

0 commit comments

Comments
 (0)