This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 abb4764b239 [fix](case) fix insert_group_commit_into (#47865)
abb4764b239 is described below
commit abb4764b2391e09408d41c612602e47c2ac123be
Author: meiyi <[email protected]>
AuthorDate: Fri Feb 14 20:43:05 2025 +0800
[fix](case) fix insert_group_commit_into (#47865)
---
regression-test/suites/insert_p0/insert_group_commit_into.groovy | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
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 ae6262c3597..f84f352702b 100644
--- a/regression-test/suites/insert_p0/insert_group_commit_into.groovy
+++ b/regression-test/suites/insert_p0/insert_group_commit_into.groovy
@@ -25,7 +25,7 @@ suite("insert_group_commit_into") {
def table = dbName + "." + tableName
def getRowCount = { expectedRowCount ->
- Awaitility.await().atMost(30, SECONDS).pollInterval(1, SECONDS).until(
+ Awaitility.await().atMost(90, SECONDS).pollInterval(1, SECONDS).until(
{
def result = sql "select count(*) from ${table}"
logger.info("table: ${table}, rowCount: ${result}")
@@ -98,6 +98,11 @@ suite("insert_group_commit_into") {
assertTrue(!serverInfo.contains("'label':'group_commit_"))
}
+ sql "ADMIN SET FRONTEND CONFIG ('commit_timeout_second' = '100')"
+ onFinish {
+ sql "ADMIN SET FRONTEND CONFIG ('commit_timeout_second' = '30')"
+ }
+
try {
// create table
sql """ drop table if exists ${table}; """
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]