Support some of pipe operators (#1759)

This commit is contained in:
Simon Vandel Sillesen 2025-05-02 05:13:47 +02:00 committed by GitHub
parent a5b9821d1d
commit e5d2215267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 427 additions and 21 deletions

View file

@ -114,6 +114,7 @@ fn parse_create_procedure() {
order_by: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
body: Box::new(SetExpr::Select(Box::new(Select {
select_token: AttachedToken::empty(),
distinct: None,
@ -1252,6 +1253,7 @@ fn parse_substring_in_select() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}),
query
);
@ -1354,6 +1356,8 @@ fn parse_mssql_declare() {
order_by: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
body: Box::new(SetExpr::Select(Box::new(Select {
select_token: AttachedToken::empty(),
distinct: None,