Skip to content
Merged
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 @@ -23,6 +23,20 @@ suite ("test_alter_colocate_table") {
"""
}

// wait group clean
def existsGroup = false;
for (def i = 0; i < 60; i++) {
def dbName = sql("SELECT DATABASE()")[0][0]
def result = sql_return_maparray "show proc '/colocation_group'"
existsGroup = result.any { it.GroupName.indexOf(dbName + ".x_group_") >= 0 }
if (existsGroup) {
sleep(1000)
} else {
break
}
}
assertFalse(existsGroup)

sql """
CREATE TABLE IF NOT EXISTS col_tbl1
(
Expand Down