mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 14:28:22 +00:00
PartiQL queries in Redshift (#1534)
This commit is contained in:
parent
10519003ed
commit
62fa8604af
17 changed files with 254 additions and 10 deletions
|
@ -229,6 +229,7 @@ fn parse_delete_statement() {
|
|||
version: None,
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
json_path: None,
|
||||
},
|
||||
from[0].relation
|
||||
);
|
||||
|
@ -1373,6 +1374,7 @@ fn parse_table_identifiers() {
|
|||
version: None,
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
json_path: None,
|
||||
},
|
||||
joins: vec![]
|
||||
},]
|
||||
|
@ -1546,6 +1548,7 @@ fn parse_table_time_travel() {
|
|||
))),
|
||||
partitions: vec![],
|
||||
with_ordinality: false,
|
||||
json_path: None,
|
||||
},
|
||||
joins: vec![]
|
||||
},]
|
||||
|
@ -1644,6 +1647,7 @@ fn parse_merge() {
|
|||
version: Default::default(),
|
||||
partitions: Default::default(),
|
||||
with_ordinality: false,
|
||||
json_path: None,
|
||||
},
|
||||
table
|
||||
);
|
||||
|
@ -1659,6 +1663,7 @@ fn parse_merge() {
|
|||
version: Default::default(),
|
||||
partitions: Default::default(),
|
||||
with_ordinality: false,
|
||||
json_path: None,
|
||||
},
|
||||
source
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue