mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-22 15:04:04 +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
|
@ -2055,7 +2055,7 @@ fn parse_update_with_joins() {
|
|||
index_hints: vec![],
|
||||
},
|
||||
global: false,
|
||||
join_operator: JoinOperator::Inner(JoinConstraint::On(Expr::BinaryOp {
|
||||
join_operator: JoinOperator::Join(JoinConstraint::On(Expr::BinaryOp {
|
||||
left: Box::new(Expr::CompoundIdentifier(vec![
|
||||
Ident::new("o"),
|
||||
Ident::new("customer_id")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue