diff --git a/regression-test/suites/variant_github_events_nonConcurrent_p2/load.groovy b/regression-test/suites/variant_github_events_nonConcurrent_p2/load.groovy index 4febb29d977c0a..09cb8b8a43e463 100644 --- a/regression-test/suites/variant_github_events_nonConcurrent_p2/load.groovy +++ b/regression-test/suites/variant_github_events_nonConcurrent_p2/load.groovy @@ -105,10 +105,13 @@ suite("regression_test_variant_github_events_p2", "nonConcurrent,p2"){ load_json_data.call(table_name, """${getS3Url() + '/regression/gharchive.m/2022-11-07-23.json'}""") // BUILD INDEX - test { + if (!isCloudMode()) { + test { sql """ BUILD INDEX idx_var ON github_events""" - exception "The idx_var index can not be built on the v column, because it is a variant type column" + exception "The idx_var index can not be built on the v column, because it is a variant type column" + } } + // // add bloom filter at the end of loading data