Add support for Redshift SELECT * EXCLUDE (#1936)
Some checks are pending
license / Release Audit Tool (RAT) (push) Waiting to run
Rust / benchmark-lint (push) Waiting to run
Rust / compile (push) Waiting to run
Rust / docs (push) Waiting to run
Rust / compile-no-std (push) Waiting to run
Rust / test (beta) (push) Waiting to run
Rust / test (nightly) (push) Waiting to run
Rust / test (stable) (push) Waiting to run
Rust / codestyle (push) Waiting to run
Rust / lint (push) Waiting to run

This commit is contained in:
Yoav Cohen 2025-07-11 11:39:29 +02:00 committed by GitHub
parent 15f35e1476
commit ee31b64f9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 192 additions and 3 deletions

View file

@ -1305,6 +1305,7 @@ fn parse_copy_to() {
},
}
],
exclude: None,
into: None,
from: vec![],
lateral_views: vec![],
@ -2948,6 +2949,7 @@ fn parse_array_subquery_expr() {
projection: vec![SelectItem::UnnamedExpr(Expr::Value(
(number("1")).with_empty_span()
))],
exclude: None,
into: None,
from: vec![],
lateral_views: vec![],
@ -2973,6 +2975,7 @@ fn parse_array_subquery_expr() {
projection: vec![SelectItem::UnnamedExpr(Expr::Value(
(number("2")).with_empty_span()
))],
exclude: None,
into: None,
from: vec![],
lateral_views: vec![],