Skip to content

Commit c50db37

Browse files
committed
Fix JOIN being parsed as JoinOperator::Join instead of JoinOperator::Inner.
1 parent ea9b852 commit c50db37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqlparser_postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4373,7 +4373,7 @@ fn parse_join_constraint_unnest_alias() {
43734373
with_ordinality: false,
43744374
},
43754375
global: false,
4376-
join_operator: JoinOperator::Inner(JoinConstraint::On(Expr::BinaryOp {
4376+
join_operator: JoinOperator::Join(JoinConstraint::On(Expr::BinaryOp {
43774377
left: Box::new(Expr::Identifier("c1".into())),
43784378
op: BinaryOperator::Eq,
43794379
right: Box::new(Expr::Identifier("c2".into())),

0 commit comments

Comments
 (0)