mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-22 23:14:07 +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
|
@ -1326,6 +1326,7 @@ fn parse_copy_to() {
|
|||
for_clause: None,
|
||||
settings: None,
|
||||
format_clause: None,
|
||||
pipe_operators: vec![],
|
||||
})),
|
||||
to: true,
|
||||
target: CopyTarget::File {
|
||||
|
@ -2994,6 +2995,7 @@ fn parse_array_subquery_expr() {
|
|||
for_clause: None,
|
||||
settings: None,
|
||||
format_clause: None,
|
||||
pipe_operators: vec![],
|
||||
})),
|
||||
filter: None,
|
||||
null_treatment: None,
|
||||
|
@ -4785,6 +4787,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
for_clause: None,
|
||||
settings: None,
|
||||
format_clause: None,
|
||||
pipe_operators: vec![],
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
|
@ -4856,6 +4859,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
for_clause: None,
|
||||
settings: None,
|
||||
format_clause: None,
|
||||
pipe_operators: vec![],
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
|
@ -4925,6 +4929,7 @@ fn test_simple_insert_with_quoted_alias() {
|
|||
for_clause: None,
|
||||
settings: None,
|
||||
format_clause: None,
|
||||
pipe_operators: vec![],
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue