Skip to content

Commit 38fc164

Browse files
committed
Fix mapping
1 parent 396788c commit 38fc164

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/src/logical_plan/plan.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl FromStr for JoinType {
6262
"right" => Ok(JoinType::Right),
6363
"full" => Ok(JoinType::Full),
6464
"semi" => Ok(JoinType::Semi),
65-
"anti" => Ok(JoinType::Semi),
65+
"anti" => Ok(JoinType::Anti),
6666
how => {
6767
return Err(DataFusionError::Internal(format!(
6868
"The join type {} does not exist or is not implemented",

0 commit comments

Comments
 (0)