mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-16 16:59:02 +00:00
Add ICEBERG keyword support to ALTER TABLE statement (#1869)
This commit is contained in:
parent
394a534486
commit
5327f0ce13
7 changed files with 64 additions and 38 deletions
|
@ -345,10 +345,12 @@ pub fn alter_table_op_with_name(stmt: Statement, expected_name: &str) -> AlterTa
|
|||
operations,
|
||||
on_cluster: _,
|
||||
location: _,
|
||||
iceberg,
|
||||
} => {
|
||||
assert_eq!(name.to_string(), expected_name);
|
||||
assert!(!if_exists);
|
||||
assert!(!is_only);
|
||||
assert!(!iceberg);
|
||||
only(operations)
|
||||
}
|
||||
_ => panic!("Expected ALTER TABLE statement"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue