This is an automated email from the ASF dual-hosted git repository. airborne 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 17422ff540b [test](inverted index) fix test case for no need read data (#41564) 17422ff540b is described below commit 17422ff540b374e1bd273148d954475101e0a176 Author: airborne12 <airborn...@gmail.com> AuthorDate: Wed Oct 9 09:36:31 2024 +0800 [test](inverted index) fix test case for no need read data (#41564) ## Proposed changes fix regression case for no need read data opt. --- 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 e1251d207f8..3bff37e261d 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,6 +136,6 @@ 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;" } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org