We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396788c commit 38fc164Copy full SHA for 38fc164
1 file changed
datafusion/src/logical_plan/plan.rs
@@ -62,7 +62,7 @@ impl FromStr for JoinType {
62
"right" => Ok(JoinType::Right),
63
"full" => Ok(JoinType::Full),
64
"semi" => Ok(JoinType::Semi),
65
- "anti" => Ok(JoinType::Semi),
+ "anti" => Ok(JoinType::Anti),
66
how => {
67
return Err(DataFusionError::Internal(format!(
68
"The join type {} does not exist or is not implemented",
0 commit comments