nizhikov commented on code in PR #11528: URL: https://github.com/apache/ignite/pull/11528#discussion_r1793507023
########## modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinConnection.java: ########## @@ -2464,4 +2608,82 @@ boolean handleResult(long reqId, JdbcResult res) { return handled; } } + + /** Transaction context. */ + public class TxContext { + /** IO to transaction coordinator. */ + final JdbcThinTcpIo txIo; + + /** Transaction id. */ + final int txId; Review Comment: Thin client use `txId` naming. Let's reuse it. -- 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