yjp hace 1 año
padre
commit
ca8aa74d0e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      framework/core/infrastructure/database/database.go

+ 1 - 1
framework/core/infrastructure/database/database.go

@@ -393,7 +393,7 @@ func InsertBatch(executor Executor, executeParams *sql.InsertBatchExecuteParams)
 		values = append(values, tableRow.Values())
 	}
 
-	_, err = executor.ExecuteRawSql(sql.InsertTpl, executeParamsMap, values)
+	_, err = executor.ExecuteRawSqlTemplate(sql.InsertTpl, executeParamsMap, values)
 	if err != nil {
 		return err
 	}