Skip to content

Commit fe90483

Browse files
committed
MySQL Bug#78852 TRANSACTION ISOLATION DEFAULTS TO REPEATABLE-READ
REGARDLESSLY OF SERVER SETTING Connector will no longer do: setTransactionIsolation(sql::TRANSACTION_REPEATABLE_READ); On init, following then the server config.
1 parent 62e5f03 commit fe90483

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

driver/mysql_connection.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,6 @@ void MySQL_Connection::init(ConnectOptionsMap & properties)
910910
}
911911

912912
setAutoCommit(true);
913-
setTransactionIsolation(sql::TRANSACTION_REPEATABLE_READ);
914913
// Different Values means we have to set different result set encoding
915914
if (characterSetResults.compare(defaultCharset)) {
916915
setSessionVariable("character_set_results", characterSetResults.length() ? characterSetResults:"NULL");

0 commit comments

Comments
 (0)