Copilot commented on code in PR #7037: URL: https://github.com/apache/ignite-3/pull/7037#discussion_r2550098286
########## docs/_docs/developers-guide/clients/jdbc-driver.adoc: ########## @@ -89,7 +90,9 @@ If the same parameters are passed by using different means, the JDBC driver prio == Performing Transactions -With the JDBC driver, you can perform `commit` and `rollback` transactions. For more information about transactions, see link:developers-guide/transactions[Performing Transactions]. +By default a JDBC connection is in auto-commit mode, in this mode all its SQL statements will be executed and committed as individual transactions. Review Comment: Missing comma before 'in this mode'. Should be: 'By default a JDBC connection is in auto-commit mode, and in this mode all its SQL statements will be executed and committed as individual transactions.' or 'By default a JDBC connection is in auto-commit mode; in this mode all its SQL statements will be executed and committed as individual transactions.' ```suggestion By default a JDBC connection is in auto-commit mode, and in this mode all its SQL statements will be executed and committed as individual 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
