This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 7e32ef5ddda branch-3.0: [fix](cloud) Skip `select_with_tablets` case run in cloud #47223 (#47597) 7e32ef5ddda is described below commit 7e32ef5dddac31d100e980f5d802b182e0fbdc35 Author: deardeng <deng...@selectdb.com> AuthorDate: Mon Feb 10 10:52:31 2025 +0800 branch-3.0: [fix](cloud) Skip `select_with_tablets` case run in cloud #47223 (#47597) cherry pick from #47223 --- .../suites/nereids_p0/select_tablets/select_with_tablets.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/regression-test/suites/nereids_p0/select_tablets/select_with_tablets.groovy b/regression-test/suites/nereids_p0/select_tablets/select_with_tablets.groovy index 6cb6b2436e2..a76750712a1 100644 --- a/regression-test/suites/nereids_p0/select_tablets/select_with_tablets.groovy +++ b/regression-test/suites/nereids_p0/select_tablets/select_with_tablets.groovy @@ -16,6 +16,9 @@ // under the License. suite("select_with_tablets") { + if (isCloudMode()) { + return + } sql 'set enable_nereids_planner=true;' sql 'set enable_fallback_to_original_planner=false;' --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org