-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle both ways of PDO reporting failed connection #4268
Conversation
5a7479c
to
4f2e60e
Compare
4f2e60e
to
34f3ced
Compare
|
$sqlState = $exception->getSQLState(); | ||
|
||
switch ($sqlState) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this was not an essential part of the fix. $sqlState
is only used by the switch
statement anyway. But creating a local variable will do no harm.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@phil-davis, you're right. It was introduced in the original version of this PR (5a7479c) which then had to be reworked. This chunk could have been reverted if noticed earlier.
Release 2.10.4 ====== - Total issues resolved: **2** - Total pull requests resolved: **3** - Total contributors: **3** Regressions ------------------------------ - [4255: Revert full support for foreign key constraints for SQLite](doctrine#4255) thanks to @morozov and @taylorotwell Bug fixes -------------- - [4268: Handle both ways of PDO reporting failed connection](doctrine#4268) thanks to @morozov CI improvements -------------- - [4252: Reuse global coding standard workflow](doctrine#4252) thanks to @greg0ire # gpg: Signature made Sat Sep 12 23:21:30 2020 # gpg: using RSA key 7A03FFFD3CFFEF053F88037A374EADAF543AE995 # gpg: Can't check signature: No public key # Conflicts: # README.md # lib/Doctrine/DBAL/Driver/OCI8/Driver.php
Fixes #4267.