Added alter external table rename to support for snowflake

This commit is contained in:
Andriy Romanov 2025-12-03 11:45:39 -08:00
parent 0f4a063e2d
commit da84b910cb
2 changed files with 12 additions and 3 deletions

View file

@ -4640,4 +4640,5 @@ fn test_alter_dynamic_table() {
fn test_alter_external_table() {
snowflake().verified_stmt("ALTER EXTERNAL TABLE some_table REFRESH");
snowflake().verified_stmt("ALTER EXTERNAL TABLE my_database.my_schema.my_external_table REFRESH");
snowflake().verified_stmt("ALTER EXTERNAL TABLE some_table RENAME TO new_table_name");
}