postgresql/src/test/isolation/expected/skip-locked-2.out

68 lines
1.4 KiB
Plaintext

Parsed test spec with 2 sessions
starting permutation: s1a s2a s2b s1b s2c
step s1a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s2a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s2b: SELECT * FROM queue ORDER BY id FOR UPDATE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
2|bar |NEW
(1 row)
step s1b: COMMIT;
step s2c: COMMIT;
starting permutation: s2a s1a s2b s1b s2c
step s2a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s1a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s2b: SELECT * FROM queue ORDER BY id FOR UPDATE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
2|bar |NEW
(1 row)
step s1b: COMMIT;
step s2c: COMMIT;
starting permutation: s2a s2b s1a s1b s2c
step s2a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s2b: SELECT * FROM queue ORDER BY id FOR UPDATE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
1|foo |NEW
(1 row)
step s1a: SELECT * FROM queue ORDER BY id FOR SHARE SKIP LOCKED LIMIT 1;
id|data|status
--+----+------
2|bar |NEW
(1 row)
step s1b: COMMIT;
step s2c: COMMIT;