diff --git a/regression-test/suites/correctness_p0/create.sql b/regression-test/data/correctness_p0/create.sql similarity index 100% rename from regression-test/suites/correctness_p0/create.sql rename to regression-test/data/correctness_p0/create.sql diff --git a/regression-test/suites/correctness_p0/test_string_pad_function.groovy b/regression-test/suites/correctness_p0/test_string_pad_function.groovy index af6ab65c898699..1998961e72c326 100644 --- a/regression-test/suites/correctness_p0/test_string_pad_function.groovy +++ b/regression-test/suites/correctness_p0/test_string_pad_function.groovy @@ -57,7 +57,7 @@ suite("test_string_pad_function") { sql """ set enable_decimal256 = true;""" sql """ set parallel_pipeline_task_num = 1;""" - sql new File("""${context.file.parent}/create.sql""").text + sql new File("""${context.file.parent}/../../data/correctness_p0/create.sql""").text sql """sync""" qt_select_rpad2 """ select pk,col_char_10__undef_signed_not_null_index_inverted as ori_col, rpad(col_char_10__undef_signed_not_null_index_inverted, 10, 'x') as col_rpad from table_1000_undef_partitions2_keys3_properties4_distributed_by56 order by 1; """ }