This is an automated email from the ASF dual-hosted git repository.

kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new c7ab41a76fa [fix](hint) fix hint tests with different be instances 
#35188 (#35659)
c7ab41a76fa is described below

commit c7ab41a76fa45bf0319610baf970af4cd80b1248
Author: LiBinfeng <46676950+libinfeng...@users.noreply.github.com>
AuthorDate: Thu May 30 23:58:26 2024 +0800

    [fix](hint) fix hint tests with different be instances #35188 (#35659)
    
    Problem:
    When using multiple be to test hint with distribute hint, the result
    would be unstable Solved:
    Add ordered hint to every distribute hint and move some leading hint
    cases to check containing of hint infomation
---
 regression-test/suites/nereids_p0/hint/fix_leading.groovy  | 3 +++
 regression-test/suites/nereids_p0/hint/test_leading.groovy | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/regression-test/suites/nereids_p0/hint/fix_leading.groovy 
b/regression-test/suites/nereids_p0/hint/fix_leading.groovy
index 80d8fb72220..b2e57a40dbe 100644
--- a/regression-test/suites/nereids_p0/hint/fix_leading.groovy
+++ b/regression-test/suites/nereids_p0/hint/fix_leading.groovy
@@ -24,6 +24,9 @@ suite("fix_leading") {
     sql 'use fix_leading'
 
     // setting planner to nereids
+    sql 'set exec_mem_limit=21G'
+    sql 'set be_number_for_test=1'
+    sql "set disable_nereids_rules=PRUNE_EMPTY_PARTITION"
     sql 'set enable_nereids_planner=true'
     sql 'set enable_fallback_to_original_planner=false'
     sql 'set runtime_filter_mode=OFF'
diff --git a/regression-test/suites/nereids_p0/hint/test_leading.groovy 
b/regression-test/suites/nereids_p0/hint/test_leading.groovy
index 8f0ecbc014b..882a0cae67a 100644
--- a/regression-test/suites/nereids_p0/hint/test_leading.groovy
+++ b/regression-test/suites/nereids_p0/hint/test_leading.groovy
@@ -24,6 +24,9 @@ suite("test_leading") {
     sql 'use test_leading'
 
     // setting planner to nereids
+    sql 'set exec_mem_limit=21G'
+    sql 'set be_number_for_test=1'
+    sql "set disable_nereids_rules=PRUNE_EMPTY_PARTITION"
     sql 'set enable_nereids_planner=true'
     sql "set ignore_shape_nodes='PhysicalProject'"
     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

Reply via email to