mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-13 07:22:02 +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
|
@ -403,7 +403,7 @@ pub fn join(relation: TableFactor) -> Join {
|
|||
Join {
|
||||
relation,
|
||||
global: false,
|
||||
join_operator: JoinOperator::Inner(JoinConstraint::Natural),
|
||||
join_operator: JoinOperator::Join(JoinConstraint::Natural),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue