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

englefly pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new eec6f33ee54 [fix](nereids) fix unstable case 
topNLazyMaterializationUsingIndex (#61865)
eec6f33ee54 is described below

commit eec6f33ee5402ab6e99bc24d9091a99af3090eb5
Author: minghong <[email protected]>
AuthorDate: Wed Apr 1 18:13:29 2026 +0800

    [fix](nereids) fix unstable case topNLazyMaterializationUsingIndex (#61865)
    
    ### What problem does this PR solve?
    turn off runtime filter in this case
---
 .../topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.out        | 4 ++--
 .../topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.groovy     | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git 
a/regression-test/data/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.out
 
b/regression-test/data/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.out
index d966e52f11e..10720c0b9f0 100644
--- 
a/regression-test/data/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.out
+++ 
b/regression-test/data/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.out
@@ -21,9 +21,9 @@ PhysicalResultSink
 --------PhysicalDistribute[DistributionSpecGather]
 ----------PhysicalTopN[LOCAL_SORT]
 
------------PhysicalProject[regression_test_query_p0_topn_lazy_usingIndex.__DORIS_GLOBAL_ROWID_COL__t2,
 t2.username]
---------------hashJoin[INNER_JOIN broadcast] hashCondition=((t1.username = 
t2.username)) otherCondition=() build RFs:RF0 username->[username];RF1 
username->[username]
+--------------hashJoin[INNER_JOIN broadcast] hashCondition=((t1.username = 
t2.username)) otherCondition=()
 ----------------PhysicalProject[t1.username]
-------------------PhysicalOlapScan[t1] apply RFs: RF0 RF1
+------------------PhysicalOlapScan[t1]
 
----------------PhysicalProject[regression_test_query_p0_topn_lazy_usingIndex.__DORIS_GLOBAL_ROWID_COL__t2,
 t2.username]
 ------------------filter((t2.user_id > 0))
 --------------------PhysicalLazyMaterializeOlapScan[t2 
lazySlots:(t2.age,t2.addr)]
diff --git 
a/regression-test/suites/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.groovy
 
b/regression-test/suites/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.groovy
index 8b839adfac7..9f51a025981 100644
--- 
a/regression-test/suites/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.groovy
+++ 
b/regression-test/suites/query_p0/topn_lazy/usingIndex/topNLazyMaterializationUsingIndex.groovy
@@ -15,8 +15,10 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("topNLazyMaterializationUsingIndex.groovy") {
+suite("topNLazyMaterializationUsingIndex") {
     sql """
+        set runtime_filter_mode = 'OFF';
+        set disable_join_reorder = true;
         drop table if exists t1;
         CREATE TABLE t1
         (


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to