This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new a92c78b3b22 branch-3.0: [log](regression)Add log to investigate SLEEP command error. #48385 (#48417) a92c78b3b22 is described below commit a92c78b3b22af308c46762af4cddb3482fe0a05c Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Fri Feb 28 17:25:03 2025 +0800 branch-3.0: [log](regression)Add log to investigate SLEEP command error. #48385 (#48417) Cherry-picked from #48385 Co-authored-by: James <lijib...@selectdb.com> --- .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy | 2 ++ .../insert_p2/test_group_commit_insert_into_lineitem_normal.groovy | 1 + 2 files changed, 3 insertions(+) diff --git a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy index d694a0507cf..076b30db75b 100644 --- a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy +++ b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy @@ -443,8 +443,10 @@ class Suite implements GroovyInterceptable { List<List<Object>> insert_into_sql(String sqlStr, int num) { if (context.useArrowFlightSql()) { + logger.info("Use arrow flight sql") return arrow_flight_insert_into_sql(sqlStr, num) } else { + logger.info("Use jdbc insert into") return jdbc_insert_into_sql(sqlStr, num) } } diff --git a/regression-test/suites/insert_p2/test_group_commit_insert_into_lineitem_normal.groovy b/regression-test/suites/insert_p2/test_group_commit_insert_into_lineitem_normal.groovy index c0f39c5bec8..da4474c7b21 100644 --- a/regression-test/suites/insert_p2/test_group_commit_insert_into_lineitem_normal.groovy +++ b/regression-test/suites/insert_p2/test_group_commit_insert_into_lineitem_normal.groovy @@ -109,6 +109,7 @@ PROPERTIES ( break } catch (Exception e) { logger.info("got exception:" + e) + logger.info("sql: " + exp_str) Thread.sleep(5000) context.reconnectFe() sql """ set group_commit = async_mode; """ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org