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
Is your feature request related to a problem? Please describe.
Expose SKIP LOCKED instruction
Describe the solution you'd like
PGSQL, MySQL:
MSSQL:
Describe alternatives you've considered
No response
Additional context
No response