This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch 2.1-tmp in repository https://gitbox.apache.org/repos/asf/doris.git
commit febdfb1c63fb4cf9d65ec909b30a0b005358c955 Author: zzzxl <33418555+zzzxl1...@users.noreply.github.com> AuthorDate: Thu Apr 4 20:37:44 2024 +0800 [fix](inverted index) fix incorrect case test_index_delete (#33246) --- regression-test/suites/inverted_index_p0/test_index_delete.groovy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/regression-test/suites/inverted_index_p0/test_index_delete.groovy b/regression-test/suites/inverted_index_p0/test_index_delete.groovy index a189884508b..51d9dd44303 100644 --- a/regression-test/suites/inverted_index_p0/test_index_delete.groovy +++ b/regression-test/suites/inverted_index_p0/test_index_delete.groovy @@ -51,11 +51,15 @@ suite("test_index_delete", "p0") { sql "sync" sql """ delete from ${indexTbName1} where a >= 9; """ + sql "sync" + qt_sql """ select count() from ${indexTbName1} where a >= 1 and a <= 10; """ qt_sql """ select count() from ${indexTbName1} where a >= 1; """ qt_sql """ select count() from ${indexTbName1} where a <= 10; """ sql """ delete from ${indexTbName1} where b = '3'; """ + sql "sync" + qt_sql """ select count() from ${indexTbName1} where a >= 1; """ qt_sql """ select count() from ${indexTbName1} where b match '3'; """ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org