summaryrefslogtreecommitdiffstats
path: root/src/test/isolation/expected/nowait-3.out
blob: 19a5b680bc82fb081e9d7cae29afc5b05ef54bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Parsed test spec with 3 sessions

starting permutation: s1a s2a s3a s1b s2b s3b
step s1a: SELECT * FROM foo FOR UPDATE;
id|data
--+----
 1|x   
(1 row)

step s2a: SELECT * FROM foo FOR UPDATE; <waiting ...>
step s3a: SELECT * FROM foo FOR UPDATE NOWAIT;
ERROR:  could not obtain lock on row in relation "foo"
step s1b: COMMIT;
step s2a: <... completed>
id|data
--+----
 1|x   
(1 row)

step s2b: COMMIT;
step s3b: COMMIT;