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
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