We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f78ca commit ab9f7c4Copy full SHA for ab9f7c4
src/Illuminate/Queue/DatabaseQueue.php
@@ -268,7 +268,8 @@ protected function getLockForPopping()
268
269
if (($databaseEngine === 'mysql' && version_compare($databaseVersion, '8.0.1', '>=')) ||
270
($databaseEngine === 'mariadb' && version_compare($databaseVersion, '10.6.0', '>=')) ||
271
- ($databaseEngine === 'pgsql' && version_compare($databaseVersion, '9.5', '>='))) {
+ ($databaseEngine === 'pgsql' && version_compare($databaseVersion, '9.5', '>=')) ||
272
+ ($databaseEngine === 'vitess' && version_compare($databaseVersion, '19.0', '>='))) {
273
return 'FOR UPDATE SKIP LOCKED';
274
}
275
0 commit comments