Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[regression-test](fix) fix case bug in alter table #46435

Merged
merged 4 commits into from
Jan 7, 2025
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