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 2323fa4024e [fix](case) fix insert_group_commit_into (#56501)
2323fa4024e is described below

commit 2323fa4024ed5df05661bcbc86c0e6b72d8af143
Author: meiyi <[email protected]>
AuthorDate: Sat Sep 27 22:04:24 2025 +0800

    [fix](case) fix insert_group_commit_into (#56501)
---
 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]

Reply via email to