ptupitsyn commented on code in PR #5383: URL: https://github.com/apache/ignite-3/pull/5383#discussion_r2020627494
########## modules/client-handler/src/main/java/org/apache/ignite/client/handler/requests/table/ClientTableCommon.java: ########## @@ -391,24 +413,47 @@ public static TableNotFoundException tableIdNotFoundException(Integer tableId) { * @param in Unpacker. * @param out Packer. * @param resources Resource registry. + * @param txManager Tx manager. * @return Transaction, if present, or null. */ public static @Nullable InternalTransaction readTx( ClientMessageUnpacker in, ClientMessagePacker out, - ClientResourceRegistry resources + ClientResourceRegistry resources, + @Nullable TxManager txManager ) { if (in.tryUnpackNil()) { return null; } try { - var tx = resources.get(in.unpackLong()).get(InternalTransaction.class); + long id = in.unpackLong(); + if (id == 0) { Review Comment: Let's add a constant for this magic id. -- 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