nizhikov commented on code in PR #11528: URL: https://github.com/apache/ignite/pull/11528#discussion_r1793505581
########## modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/jdbc/JdbcThinFeature.java: ########## @@ -33,7 +33,10 @@ public enum JdbcThinFeature implements ThinProtocolFeature { CUSTOM_OBJECT(2), /** Add ability to set explicit query timeout on the cluster node by the JDBC client. */ - QUERY_TIMEOUT(3); + QUERY_TIMEOUT(3), + + /** Transaction aware queries. */ + TX_AWARE_QUERIES(4); Review Comment: Let's keep naming consistent across APIs - in all other part of code we use `TX_AWARE_QUERIES` naming to highlight that ScanQuery(and other types of queries) will support transactions. -- 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