Implement FROM-first selects (#1713)

This commit is contained in:
Armin Ronacher 2025-02-09 06:10:58 +01:00 committed by GitHub
parent cad49232c1
commit 46cfcfe8f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 184 additions and 9 deletions

View file

@ -1315,6 +1315,7 @@ fn parse_copy_to() {
qualify: None,
value_table_mode: None,
connect_by: None,
flavor: SelectFlavor::Standard,
}))),
order_by: None,
limit: None,
@ -2666,6 +2667,7 @@ fn parse_array_subquery_expr() {
window_before_qualify: false,
value_table_mode: None,
connect_by: None,
flavor: SelectFlavor::Standard,
}))),
right: Box::new(SetExpr::Select(Box::new(Select {
select_token: AttachedToken::empty(),
@ -2688,6 +2690,7 @@ fn parse_array_subquery_expr() {
window_before_qualify: false,
value_table_mode: None,
connect_by: None,
flavor: SelectFlavor::Standard,
}))),
}),
order_by: None,