mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Support some of pipe operators (#1759)
This commit is contained in:
parent
a5b9821d1d
commit
e5d2215267
12 changed files with 427 additions and 21 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue