|
|
@@ -390,7 +390,7 @@ func InsertBatch(executor Executor, executeParams *sql.InsertBatchExecuteParams)
|
|
|
|
|
|
values := make([]any, 0)
|
|
|
for _, tableRow := range executeParams.TableRowBatch {
|
|
|
- values = append(values, tableRow.Values())
|
|
|
+ values = append(values, tableRow.Values()...)
|
|
|
}
|
|
|
|
|
|
_, err = executor.ExecuteRawSqlTemplate(sql.InsertTpl, executeParamsMap, values...)
|