mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-03 22:08:16 +00:00
Distinguish between tables and nullary functions in FROM (#506)
This commit is contained in:
parent
cd66034a4a
commit
901f5b974f
9 changed files with 39 additions and 29 deletions
|
@ -626,7 +626,7 @@ fn parse_update_with_joins() {
|
|||
name: Ident::new("o"),
|
||||
columns: vec![]
|
||||
}),
|
||||
args: vec![],
|
||||
args: None,
|
||||
with_hints: vec![],
|
||||
},
|
||||
joins: vec![Join {
|
||||
|
@ -636,7 +636,7 @@ fn parse_update_with_joins() {
|
|||
name: Ident::new("c"),
|
||||
columns: vec![]
|
||||
}),
|
||||
args: vec![],
|
||||
args: None,
|
||||
with_hints: vec![],
|
||||
},
|
||||
join_operator: JoinOperator::Inner(JoinConstraint::On(Expr::BinaryOp {
|
||||
|
@ -743,7 +743,7 @@ fn parse_substring_in_select() {
|
|||
quote_style: None
|
||||
}]),
|
||||
alias: None,
|
||||
args: vec![],
|
||||
args: None,
|
||||
with_hints: vec![]
|
||||
},
|
||||
joins: vec![]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue