You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug symfony#52459 [Cache][HttpFoundation][Lock] Fix PDO store not creating table + add tests (HypeMC)
This PR was merged into the 5.4 branch.
Discussion
----------
[Cache][HttpFoundation][Lock] Fix PDO store not creating table + add tests
| Q | A
| ------------- | ---
| Branch? | 5.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Issues | -
| License | MIT
Unlike e.g. SQLite, PostgreSQL doesn't throw an exception on `$conn->prepare()` if the table is missing, it instead throws it on `$stmt->execute()`, so the table never gets created.
The table used to get created, but the behavior was broken with symfony#43332.
Commits
-------
cb5d832 [Cache][Lock] Fix PDO store not creating table + add tests
0 commit comments