This is an automated email from the ASF dual-hosted git repository.
lihaopeng 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 827ef6af2fb [Chore](case) adjust test_insert_limit (#51380)
827ef6af2fb is described below
commit 827ef6af2fb5b3c67e687726e6f3f6f0cb507411
Author: Pxl <[email protected]>
AuthorDate: Mon Jun 2 23:33:42 2025 +0800
[Chore](case) adjust test_insert_limit (#51380)
adjust test_insert_limit
related with https://github.com/apache/doris/pull/51121
---
regression-test/data/query_p1/test_insert_limit.out | Bin 120 -> 1146 bytes
.../suites/query_p1/test_insert_limit.groovy | 10 ++++++++++
2 files changed, 10 insertions(+)
diff --git a/regression-test/data/query_p1/test_insert_limit.out
b/regression-test/data/query_p1/test_insert_limit.out
index b3620441e4f..dad7da6ec09 100644
Binary files a/regression-test/data/query_p1/test_insert_limit.out and
b/regression-test/data/query_p1/test_insert_limit.out differ
diff --git a/regression-test/suites/query_p1/test_insert_limit.groovy
b/regression-test/suites/query_p1/test_insert_limit.groovy
index d2d11b1a28d..15e1b52896a 100644
--- a/regression-test/suites/query_p1/test_insert_limit.groovy
+++ b/regression-test/suites/query_p1/test_insert_limit.groovy
@@ -43,6 +43,13 @@ suite("test_insert_limit") {
}
}
+ qt_select """
+ select k1, length(group_concat_merge(k2)) from `tbl_test_insert_limit`
group by k1;
+ """
+ qt_select """
+ select k1, length(k2) from `tbl_test_insert_limit`;
+ """
+
if (error != "") {
break
}
@@ -50,6 +57,9 @@ suite("test_insert_limit") {
assertTrue(error != "")
+ qt_select """
+ select k1, length(group_concat_merge(k2)) from `tbl_test_insert_limit`
group by k1;
+ """
qt_select """
select k1, length(k2) from `tbl_test_insert_limit`;
"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]