From 05c7b92ccb32ad91f7a2040d5ee219f36249b9a2 Mon Sep 17 00:00:00 2001 From: Sky Fan <3374614481@qq.com> Date: Sun, 1 Sep 2024 09:28:18 +0800 Subject: [PATCH] chore: separate test run for temp_table suite (#16358) --- scripts/ci/ci-run-sqllogic-tests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/ci/ci-run-sqllogic-tests.sh b/scripts/ci/ci-run-sqllogic-tests.sh index fe0500889e51..107dc4358b99 100755 --- a/scripts/ci/ci-run-sqllogic-tests.sh +++ b/scripts/ci/ci-run-sqllogic-tests.sh @@ -19,5 +19,7 @@ fi echo "Run suites using argument: $RUN_DIR" echo "Starting databend-sqllogic tests" -target/${BUILD_PROFILE}/databend-sqllogictests --handlers "mysql" --run_dir temp_table --enable_sandbox --parallel 8 +if [ -z "$RUN_DIR" ]; then + target/${BUILD_PROFILE}/databend-sqllogictests --handlers "mysql" --run_dir temp_table --enable_sandbox --parallel 8 +fi target/${BUILD_PROFILE}/databend-sqllogictests --handlers ${TEST_HANDLERS} ${RUN_DIR} --skip_dir management,explain_native,ee,temp_table --enable_sandbox --parallel 8