Skip to content
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

Merged
merged 1 commit into from
Sep 11, 2020

Conversation

morozov
Copy link
Member

@morozov morozov commented Sep 10, 2020

Q A
Type bug
BC Break no

Fixes #4267.

@morozov
Copy link
Member Author

morozov commented Sep 10, 2020

DriverExeption in DBAL 2.x (prior to #4113) is a total mess. In case of a PostgreSQL connection failure, on PHP 7.4.9, $exception->getSQLState() would return (int) 7 but on PHP 7.4.10 it's (string) '08006'. This issue is not reproducible on 3.0.x.

@morozov morozov requested a review from greg0ire September 10, 2020 22:47
@morozov morozov merged commit fdbd770 into doctrine:2.10.x Sep 11, 2020
@morozov morozov deleted the issues/4267 branch September 11, 2020 14:47
@morozov morozov self-assigned this Sep 11, 2020
@morozov morozov linked an issue Sep 11, 2020 that may be closed by this pull request
Comment on lines +34 to +36
$sqlState = $exception->getSQLState();

switch ($sqlState) {
Copy link
Contributor

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.

Copy link
Member Author

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.

rgrellmann added a commit to Rossmann-IT/dbal that referenced this pull request Mar 7, 2021
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
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 29, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PostgreSQL tests fail on Travis with PHP 7.3 and PHP 7.4
3 participants