Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ suite("test_schema_change_statistics") {
result = sql """show column cached stats change"""
assertEquals(8, result.size())

sql """ALTER TABLE change DROP COLUMN mv_value1 from mv1;"""
wait_schema_change_finished()
stats_dropped("change")

sql """analyze table change with sync;"""
result = sql """show column stats change"""
assertEquals(7, result.size())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ suite("test_schema_change_ck") {
/****** drop key column ******/
test {
sql """ alter table ${tableName} drop column k2; """
exception "Can not drop key column in Unique data model table"
exception "Can not drop key column k2 in unique data model table"
}

/****** TODO does not support drop cluster key ******/
Expand Down
Loading