This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 779b675e9d [test](fix) Case bug (#21518)
779b675e9d is described below
commit 779b675e9dd26f8c88927cd06088d922091c2f51
Author: shuke <[email protected]>
AuthorDate: Sun Jul 9 16:52:40 2023 +0800
[test](fix) Case bug (#21518)
* add sync after streamLoad
---
.../suites/correctness/test_dup_table_without_keys_load.groovy | 1 +
.../aggregate_functions/test_aggregate_all_functions.groovy | 1 +
regression-test/suites/query_p0/aggregate/push_filter_through_agg.groovy | 1 +
3 files changed, 3 insertions(+)
diff --git
a/regression-test/suites/correctness/test_dup_table_without_keys_load.groovy
b/regression-test/suites/correctness/test_dup_table_without_keys_load.groovy
index d4515f8acd..f39f8c84a6 100644
--- a/regression-test/suites/correctness/test_dup_table_without_keys_load.groovy
+++ b/regression-test/suites/correctness/test_dup_table_without_keys_load.groovy
@@ -102,6 +102,7 @@ suite("test_dup_table_without_keys_load") {
// stream load action will check result, include Success status, and
NumberTotalRows == NumberLoadedRows
}
+ sql """sync"""
test {
sql """
SELECT * FROM test_dup_table_without_keys_load;
diff --git
a/regression-test/suites/nereids_p0/sql_functions/aggregate_functions/test_aggregate_all_functions.groovy
b/regression-test/suites/nereids_p0/sql_functions/aggregate_functions/test_aggregate_all_functions.groovy
index e5ce8db863..2c1553adef 100644
---
a/regression-test/suites/nereids_p0/sql_functions/aggregate_functions/test_aggregate_all_functions.groovy
+++
b/regression-test/suites/nereids_p0/sql_functions/aggregate_functions/test_aggregate_all_functions.groovy
@@ -532,6 +532,7 @@ suite("test_aggregate_all_functions") {
inputIterator rows.iterator()
}
+ sql """sync"""
qt_select48 """select dt, id, quantile_percent(quantile_union(price), 0)
from ${tableName_21} group by dt, id order by dt, id"""
qt_select49 """select dt, id, quantile_percent(quantile_union(price), 0.5)
from ${tableName_21} group by dt, id order by dt, id"""
diff --git
a/regression-test/suites/query_p0/aggregate/push_filter_through_agg.groovy
b/regression-test/suites/query_p0/aggregate/push_filter_through_agg.groovy
index 7987c98c2a..e3425dea1b 100644
--- a/regression-test/suites/query_p0/aggregate/push_filter_through_agg.groovy
+++ b/regression-test/suites/query_p0/aggregate/push_filter_through_agg.groovy
@@ -17,6 +17,7 @@
suite("push_filter_through_agg") {
sql """DROP TABLE IF EXISTS t_push_filter_through_agg"""
+ sql """DROP VIEW IF EXISTS view_i"""
sql """
CREATE TABLE t_push_filter_through_agg (col1 varchar(11451) not null,
col2 int not null, col3 int not null)
UNIQUE KEY(col1)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]