From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | emil(at)iggland(dot)com |
Subject: | BUG #17141: SELECT LIMIT WITH TIES FOR UPDATE SKIP LOCKED returns wrong number of rows |
Date: | 2021-08-11 16:38:15 |
Message-ID: | 17141-913d78b9675aac8e@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 17141
Logged by: Emil Iggland
Email address: emil(at)iggland(dot)com
PostgreSQL version: 13.3
Operating system: Windows
Description:
I am trying to create a queue which should assign multiple tasks to a
worker. I use row locking with FOR UPDATE SKIP LOCKED, but the number of
rows returned are inconsistent with what I expect.
Minimum example:
CREATE TABLE queue (task INTEGER);
INSERT INTO queue (task)
VALUES (180),(280),(380),(480),(580),(180),(280),(380),(480),(580);
BEGIN;
SELECT * FROM queue
ORDER BY task DESC
FETCH FIRST 1 ROWS WITH TIES
FOR UPDATE SKIP LOCKED;
/* Some work to be done here */
COMMIT;
select version();
PostgreSQL 13.3, compiled by Visual C++ build 1914, 64-bit
Expected result Worker 1: (580), (580), Actual result Worker 1: (580),
(580)
Expected result Worker 2: (480), (480), Actual result Worker 2: (480)
From | Date | Subject | |
---|---|---|---|
Next Message | Emil Iggland | 2021-08-11 17:25:48 | Re: BUG #17141: SELECT LIMIT WITH TIES FOR UPDATE SKIP LOCKED returns wrong number of rows |
Previous Message | Cherio | 2021-08-11 15:39:29 | Re: BUG #17140: pg_try_advisory_xact_lock produces a WARNINIG on unsuccessful lock |