Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; """
Expand Down
Loading