ygerzhedovich commented on code in PR #1866:
URL: https://github.com/apache/ignite-3/pull/1866#discussion_r1154309032
##########
modules/client-handler/src/main/java/org/apache/ignite/client/handler/JdbcQueryEventHandlerImpl.java:
##########
@@ -177,14 +177,14 @@ private QueryContext createQueryContext(JdbcStatementType
stmtType) {
/** {@inheritDoc} */
@Override
- public CompletableFuture<JdbcBatchExecuteResult>
batchAsync(JdbcBatchExecuteRequest req) {
+ public CompletableFuture<JdbcBatchExecuteResult> batchAsync(long
connectionId, JdbcBatchExecuteRequest req) {
List<String> queries = req.queries();
var counters = new IntArrayList(req.queries().size());
var tail = CompletableFuture.completedFuture(counters);
for (String query : queries) {
- tail = tail.thenCompose(list ->
executeAndCollectUpdateCount(req.schemaName(), query, OBJECT_EMPTY_ARRAY)
Review Comment:
It's not a part of the task. We have many places with `schemaName` right now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]