mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Support INSERT OVERWRITE INTO syntax (#1584)
This commit is contained in:
parent
d0fcc06652
commit
00abaf2187
2 changed files with 8 additions and 3 deletions
|
@ -2952,3 +2952,9 @@ fn test_sf_double_dot_notation() {
|
|||
|
||||
#[test]
|
||||
fn test_parse_double_dot_notation_wrong_position() {}
|
||||
|
||||
#[test]
|
||||
fn parse_insert_overwrite() {
|
||||
let insert_overwrite_into = r#"INSERT OVERWRITE INTO schema.table SELECT a FROM b"#;
|
||||
snowflake().verified_stmt(insert_overwrite_into);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue