Allow plain JOIN without turning it into INNER (#1692)

This commit is contained in:
Michael Victor Zink 2025-01-29 22:15:57 -08:00 committed by GitHub
parent 784605c913
commit 252fdbab82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 42 additions and 16 deletions

View file

@ -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),
}
}