This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new e23179f6abb branch-4.0: [fix](case) fix insert_group_commit_into
#56501 (#56527)
e23179f6abb is described below
commit e23179f6abb82f5a72fc7d7fe52a1e4ac1d135eb
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Sep 28 08:55:02 2025 +0800
branch-4.0: [fix](case) fix insert_group_commit_into #56501 (#56527)
Cherry-picked from #56501
Co-authored-by: meiyi <[email protected]>
---
regression-test/suites/insert_p0/insert_group_commit_into.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/regression-test/suites/insert_p0/insert_group_commit_into.groovy
b/regression-test/suites/insert_p0/insert_group_commit_into.groovy
index 8335368028f..5e428a1f88a 100644
--- a/regression-test/suites/insert_p0/insert_group_commit_into.groovy
+++ b/regression-test/suites/insert_p0/insert_group_commit_into.groovy
@@ -404,8 +404,10 @@ suite("insert_group_commit_into") {
int count = 0;
while (count < 30) {
try {
+ sql "set enable_insert_strict = false"
group_commit_insert """
insert into ${table} values('cib2205045_1_1s','2023/6/10
3:55:33','{"DB1":168939,"DNT":"2023-06-10 03:55:33"}');""", 1
+ sql "set enable_insert_strict = true"
break
} catch (Exception e) {
logger.info("got exception:" + e)
@@ -415,9 +417,11 @@ suite("insert_group_commit_into") {
count++
}
}
+ sql "set enable_insert_strict = false"
group_commit_insert """insert into ${table}
values('cib2205045_1_1s','2023/6/10 3:56:33','{"DB1":168939,"DNT":"2023-06-10
03:56:33"}');""", 1
group_commit_insert """insert into ${table}
values('cib2205045_1_1s','2023/6/10 3:57:33','{"DB1":168939,"DNT":"2023-06-10
03:57:33"}');""", 1
group_commit_insert """insert into ${table}
values('cib2205045_1_1s','2023/6/10 3:58:33','{"DB1":168939,"DNT":"2023-06-10
03:58:33"}');""", 1
+ sql "set enable_insert_strict = true"
getRowCount(4)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]