From a4d7e7aaac28fa4b3a1383ceab50b07a288a6ae3 Mon Sep 17 00:00:00 2001 From: LiBinfeng <1204975323@qq.com> Date: Thu, 28 Mar 2024 22:26:56 +0800 Subject: [PATCH] [Fix](test) add sync to ensure data synchronization in test_set_operater --- .../suites/query_p0/operator/test_set_operator.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/query_p0/operator/test_set_operator.groovy b/regression-test/suites/query_p0/operator/test_set_operator.groovy index ac091a9d8bb9bc..1bc9cc29e4c535 100644 --- a/regression-test/suites/query_p0/operator/test_set_operator.groovy +++ b/regression-test/suites/query_p0/operator/test_set_operator.groovy @@ -74,6 +74,7 @@ suite("test_set_operators", "query,p0,arrow_flight_sql") { sql """insert into t2 values('6',5,3,4);""" sql """insert into t2 values('9',8,0,7);""" + sql 'sync' order_qt_select """ select col1 @@ -88,4 +89,4 @@ suite("test_set_operators", "query,p0,arrow_flight_sql") { t3 on t2.col1=t3.col1; """ -} \ No newline at end of file +}