This is an automated email from the ASF dual-hosted git repository. airborne pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 5a6517ba45c [test](inverted index) fix test case for no need read data #41564 (#41583) 5a6517ba45c is described below commit 5a6517ba45ca1620263b143c7acd84b3d910fc8d Author: airborne12 <airborn...@gmail.com> AuthorDate: Wed Oct 9 14:03:02 2024 +0800 [test](inverted index) fix test case for no need read data #41564 (#41583) cherry pick from #41564 --- regression-test/suites/inverted_index_p0/test_need_read_data.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/inverted_index_p0/test_need_read_data.groovy b/regression-test/suites/inverted_index_p0/test_need_read_data.groovy index 133888b47dc..9c80019e46a 100644 --- a/regression-test/suites/inverted_index_p0/test_need_read_data.groovy +++ b/regression-test/suites/inverted_index_p0/test_need_read_data.groovy @@ -136,8 +136,8 @@ suite("test_need_read_data", "p0"){ logger.info("show variales result: " + var_result ) sql "INSERT INTO ${indexTblName3} VALUES (1, 1),(1, -2),(1, -1);" - qt_sql "SELECT /*+SET_VAR(enable_common_expr_pushdown=false) */ id FROM ${indexTblName3} WHERE value<0 and abs(value)>1;" - qt_sql "SELECT /*+SET_VAR(enable_common_expr_pushdown=true) */ id FROM ${indexTblName3} WHERE value<0 and abs(value)>1;" + qt_sql "SELECT /*+SET_VAR(enable_common_expr_pushdown=false,inverted_index_skip_threshold=100) */ id FROM ${indexTblName3} WHERE value<0 and abs(value)>1;" + qt_sql "SELECT /*+SET_VAR(enable_common_expr_pushdown=true,inverted_index_skip_threshold=100) */ id FROM ${indexTblName3} WHERE value<0 and abs(value)>1;" sql "DROP TABLE IF EXISTS tt" sql """ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org