mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-08 01:15:00 +00:00
Add support for MySQL's INSERT INTO ... SET syntax (#1641)
This commit is contained in:
parent
4c6af0ae4f
commit
8cfc46277f
7 changed files with 43 additions and 20 deletions
|
@ -4423,6 +4423,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
settings: None,
|
||||
format_clause: None,
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
after_columns: vec![],
|
||||
table: false,
|
||||
|
@ -4493,6 +4494,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
settings: None,
|
||||
format_clause: None,
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
after_columns: vec![],
|
||||
table: false,
|
||||
|
@ -4559,6 +4561,7 @@ fn test_simple_insert_with_quoted_alias() {
|
|||
settings: None,
|
||||
format_clause: None,
|
||||
})),
|
||||
assignments: vec![],
|
||||
partitioned: None,
|
||||
after_columns: vec![],
|
||||
table: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue