-
-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
type: featureNew feature.New feature.
Description
Is your feature request related to a problem? Please describe.
Expose SKIP LOCKED instruction
Describe the solution you'd like
PGSQL, MySQL:
SELECT * FROM tasks
WHERE status = 'pending'
FOR UPDATE SKIP LOCKED
LIMIT 1;MSSQL:
SELECT TOP 1 * FROM tasks WITH (UPDLOCK, READPAST)
WHERE status = 'pending';Describe alternatives you've considered
No response
Additional context
No response
Metadata
Metadata
Assignees
Labels
type: featureNew feature.New feature.