Skip to content

Commit

Permalink
[test](inverted index) fix test case for need read data
Browse files Browse the repository at this point in the history
  • Loading branch information
airborne12 committed Oct 8, 2024
1 parent 8e3db00 commit 191f6b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
2024-06-17T15:16:49 tengxun2

-- !sql --
1

-- !sql --
1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;"
}

0 comments on commit 191f6b1

Please sign in to comment.