You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by da...@apache.org on 2022/10/09 11:32:36 UTC

[doris] branch master updated: [enhancement](regression-test) add sync for unique table debug test (#13210)

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 3302e0b57e [enhancement](regression-test) add sync for unique table debug test (#13210)
3302e0b57e is described below

commit 3302e0b57e91339591f230d533ae122e2baa7c41
Author: Xin Liao <li...@126.com>
AuthorDate: Sun Oct 9 19:32:28 2022 +0800

    [enhancement](regression-test) add sync for unique table debug test (#13210)
---
 .../suites/data_model_p0/unique/test_unique_table_debug_data.groovy    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/regression-test/suites/data_model_p0/unique/test_unique_table_debug_data.groovy b/regression-test/suites/data_model_p0/unique/test_unique_table_debug_data.groovy
index 4be1174692..db0c4e4ac7 100644
--- a/regression-test/suites/data_model_p0/unique/test_unique_table_debug_data.groovy
+++ b/regression-test/suites/data_model_p0/unique/test_unique_table_debug_data.groovy
@@ -46,6 +46,7 @@ suite("test_unique_table_debug_data") {
     sql "insert into ${tbName} values(1,1),(2,1);"
     sql "insert into ${tbName} values(1,11),(2,11);"
     sql "insert into ${tbName} values(3,1);"
+    sql "sync"
 
     qt_select_init "select * from ${tbName} order by a, b"
 
@@ -70,10 +71,12 @@ suite("test_unique_table_debug_data") {
 
         time 10000 // limit inflight 10s
     }
+    sql "sync"
     qt_select_batch_delete "select * from ${tbName} order by a, b"
 
     // delete rows with a = 2:
     sql "delete from ${tbName} where a = 2;"
+    sql "sync"
     qt_select_sql_delete "select * from ${tbName} order by a, b"
 
     // enable skip_delete_predicate, rows deleted with delete statement is returned:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org