Skip to content

Commit

Permalink
Fix for Bug#83834 (25101890), Typo in Connector/J error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
fjssilva committed Mar 14, 2017
1 parent c13d8ba commit 0751b08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# $Id$
mm-dd-yy - Version 5.1.42

- Fix for Bug#83834 (25101890), Typo in Connector/J error message.

- Fix for Bug#25636947, CONNECTION USING MYSQL CLIENT FAILS IF WE USE THE SSL CERTIFICATES FROM C/J SRC.

- Fix for Bug#25687718, INCORRECT TIME ZONE IDENTIFIER IN STATEMENTREGRESSIONTEST.
Expand Down
2 changes: 1 addition & 1 deletion src/com/mysql/jdbc/ConnectionImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -3544,7 +3544,7 @@ public boolean isReadOnly(boolean useSessionStatus) throws SQLException {
}
} catch (SQLException ex1) {
if (ex1.getErrorCode() != MysqlErrorNumbers.ER_MUST_CHANGE_PASSWORD || getDisconnectOnExpiredPasswords()) {
throw SQLError.createSQLException("Could not retrieve transation read-only status server", SQLError.SQL_STATE_GENERAL_ERROR, ex1,
throw SQLError.createSQLException("Could not retrieve transaction read-only status from server", SQLError.SQL_STATE_GENERAL_ERROR, ex1,
getExceptionInterceptor());
}
}
Expand Down

0 comments on commit 0751b08

Please sign in to comment.