Skip to content
Open
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 @@ -161,11 +161,21 @@ suite("test_single_column_multi_index1", "p0") {
runMatchQueries()

sql """ DROP INDEX request_text_idx ON ${tableName}; """
wait_for_latest_op_on_table_finish(tableName, timeout)
if (isCloudMode()) {
// Cloud uses a schema change job here; Local uses an asynchronous index change job.
wait_for_latest_op_on_table_finish(tableName, timeout)
} else {
wait_for_build_index_on_partition_finish(tableName, timeout)
}
sql """ DROP INDEX request_keyword_idx ON ${tableName}; """
wait_for_latest_op_on_table_finish(tableName, timeout)
if (isCloudMode()) {
// Cloud uses a schema change job here; Local uses an asynchronous index change job.
wait_for_latest_op_on_table_finish(tableName, timeout)
} else {
wait_for_build_index_on_partition_finish(tableName, timeout)
}

runMatchQueries()
} finally {
}
}
}
Loading