vldpyatkov commented on code in PR #2537: URL: https://github.com/apache/ignite-3/pull/2537#discussion_r1837155292
########## modules/client-handler/src/main/java/org/apache/ignite/client/handler/requests/table/ClientTupleDeleteAllExactRequest.java: ########## @@ -35,20 +36,22 @@ public class ClientTupleDeleteAllExactRequest { /** * Processes the request. * - * @param in Unpacker. - * @param out Packer. - * @param tables Ignite tables. + * @param in Unpacker. + * @param out Packer. + * @param tables Ignite tables. * @param resources Resource registry. + * @param igniteTransactions Ignite transactions. * @return Future. */ public static CompletableFuture<Void> process( ClientMessageUnpacker in, ClientMessagePacker out, IgniteTables tables, - ClientResourceRegistry resources + ClientResourceRegistry resources, + IgniteTransactionsImpl igniteTransactions ) { return readTableAsync(in, tables).thenCompose(table -> { - var tx = readTx(in, out, resources); + var tx = readOrStartImplicitTx(in, out, resources, igniteTransactions, false); Review Comment: I fixed it in all places in the client handler where we are starting implicit transactions 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org