mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 14:28:22 +00:00
Allow plain JOIN without turning it into INNER (#1692)
This commit is contained in:
parent
784605c913
commit
252fdbab82
8 changed files with 42 additions and 16 deletions
|
@ -1602,7 +1602,7 @@ fn parse_join_constraint_unnest_alias() {
|
|||
with_ordinality: false,
|
||||
},
|
||||
global: false,
|
||||
join_operator: JoinOperator::Inner(JoinConstraint::On(Expr::BinaryOp {
|
||||
join_operator: JoinOperator::Join(JoinConstraint::On(Expr::BinaryOp {
|
||||
left: Box::new(Expr::Identifier("c1".into())),
|
||||
op: BinaryOperator::Eq,
|
||||
right: Box::new(Expr::Identifier("c2".into())),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue