mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 14:28:22 +00:00
Add support of table function WITH ORDINALITY modifier for Postgre Parser (#1337)
This commit is contained in:
parent
285f492589
commit
9108bffc9a
16 changed files with 129 additions and 4 deletions
|
@ -59,6 +59,7 @@ fn parse_map_access_expr() {
|
|||
with_hints: vec![],
|
||||
version: None,
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
},
|
||||
joins: vec![],
|
||||
}],
|
||||
|
@ -162,6 +163,7 @@ fn parse_delimited_identifiers() {
|
|||
args,
|
||||
with_hints,
|
||||
version,
|
||||
with_ordinality: _,
|
||||
partitions: _,
|
||||
} => {
|
||||
assert_eq!(vec![Ident::with_quote('"', "a table")], name.0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue