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
minor symfony#59220 [Messenger] choose the correctly cased class name for the MariaDB platform (xabbuh)
This PR was merged into the 7.1 branch.
Discussion
----------
[Messenger] choose the correctly cased class name for the MariaDB platform
| Q | A
| ------------- | ---
| Branch? | 7.1
| Bug fix? | no
| New feature? | no
| Deprecations? | no
| Issues |
| License | MIT
see e.g. https://github.com/symfony/symfony/actions/runs/12353148434/job/34471646429?pr=58370#step:9:631
Commits
-------
fd4e493 choose the correctly cased class name for the MariaDB platform
Copy file name to clipboardExpand all lines: src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
useDoctrine\DBAL\ConnectionasDBALConnection;
15
15
useDoctrine\DBAL\ExceptionasDBALException;
16
16
useDoctrine\DBAL\Platforms\AbstractPlatform;
17
-
useDoctrine\DBAL\Platforms\MariaDb1060Platform;
18
17
useDoctrine\DBAL\Platforms\MariaDBPlatform;
19
18
useDoctrine\DBAL\Platforms\MySQL57Platform;
20
19
useDoctrine\DBAL\Platforms\MySQL80Platform;
@@ -590,9 +589,16 @@ class_exists(MySQLPlatform::class) ? new MySQLPlatform() : new MySQL57Platform()
590
589
'SELECT m.* FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC LIMIT 1 FOR UPDATE',
'SELECT m.* FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC LIMIT 1 FOR UPDATE SKIP LOCKED',
0 commit comments