diff --git a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy index 30649c4e0ee193..fabf9f2e490797 100644 --- a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy +++ b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy @@ -33,7 +33,6 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as th "test_refresh_mtmv," + // not supported yet "test_report_version_missing," + "test_set_partition_version," + - "test_show_transaction," + // not supported yet "test_spark_load," + "test_index_lowercase_fault_injection," + "test_index_compaction_failure_injection," + diff --git a/regression-test/suites/query_p0/show/test_show_transaction.groovy b/regression-test/suites/query_p0/show/test_show_transaction.groovy index fa7f0ddbdc97a2..8ef4ff52b316b8 100644 --- a/regression-test/suites/query_p0/show/test_show_transaction.groovy +++ b/regression-test/suites/query_p0/show/test_show_transaction.groovy @@ -37,6 +37,9 @@ suite("test_show_transaction", "p0") { sql """ INSERT INTO ${testTable} WITH LABEL label_test_show_transaction_${uuid} VALUES(100, 'doris') """ def res = sql_return_maparray """ show transaction where label = 'label_test_show_transaction_${uuid}' """ print("show transaction result : " + res) - def reslike = sql_return_maparray """ show transaction where label like 'label_test_show_transaction_${uuid}%' """ - assertTrue(res.equals(reslike)) + if (!isCloudMode()) { + def reslike = sql_return_maparray """ show transaction where label like 'label_test_show_transaction_${uuid}%' """ + assertTrue(res.equals(reslike)) + } + }