Skip to content

Commit

Permalink
Implement some more substrait pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandandan committed Oct 18, 2024
1 parent 9fc36e1 commit 7f21607
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion datafusion/substrait/src/logical_plan/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,17 @@ pub async fn from_substrait_rel(
)?
.build()
}
None => plan_err!("JoinRel without join condition is not allowed"),
None => {
let on: Vec<String> = vec![];
left.join_detailed(
right.build()?,
join_type,
(on.clone(), on),
None,
false,
)?
.build()
}
}
}
Some(RelType::Cross(cross)) => {
Expand Down

0 comments on commit 7f21607

Please sign in to comment.