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 @@ -54,9 +54,7 @@ excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line
"cloud_p0/cache," +
"workload_manager_p1," +
"nereids_rules_p0/subquery," +
"unique_with_mow_p0/cluster_key," +
"unique_with_mow_p0/ssb_unique_sql_zstd_cluster," +
"unique_with_mow_p0/ssb_unique_load_zstd_c," +
"unique_with_mow_c_p0," +
"backup_restore," + // not a case for cloud mode, no need to run
"cold_heat_separation," +
"storage_medium_p0," +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.codehaus.groovy.runtime.IOGroovyMethods

suite("test_primary_key_simple_case") {
def tableName = "cluster_key_test_primary_key_simple_case"
def tableName = "primary_key_simple_case"
onFinish {
// try_sql("DROP TABLE IF EXISTS ${tableName}")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import java.util.Map;
import java.util.UUID;
import java.time.format.DateTimeFormatter;

suite("test_pk_uk_case_cluster") {
def tableNamePk = "primary_key_pk_uk_cluster"
def tableNameUk = "unique_key_pk_uk_cluster"
suite("test_pk_uk_case") {
def tableNamePk = "primary_key_pk_uk"
def tableNameUk = "unique_key_pk_uk"

onFinish {
try_sql("DROP TABLE IF EXISTS ${tableNamePk}")
Expand Down