mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-14 07:52:02 +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
|
@ -309,6 +309,7 @@ pub fn table(name: impl Into<String>) -> TableFactor {
|
|||
with_hints: vec![],
|
||||
version: None,
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -323,6 +324,7 @@ pub fn table_with_alias(name: impl Into<String>, alias: impl Into<String>) -> Ta
|
|||
with_hints: vec![],
|
||||
version: None,
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue