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

dataroaring 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 f71dd71bda1 [fix](inverted index) fix incorrect case test_index_delete 
(#33246)
f71dd71bda1 is described below

commit f71dd71bda1011fe92b3af00247905924f9a6368
Author: zzzxl <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to