blob: b110f4792d83ad0b9b5d08a872bf254a7ddc4b4e [file] [log] [blame]
Parsed test spec with 2 sessions
starting permutation: s2begin s2select s1insert s1select s2select s2insert s2select
step s2begin: BEGIN ISOLATION LEVEL REPEATABLE READ;
step s2select: select count(*) from ao;
count
-----
0
(1 row)
step s1insert: insert into ao select i, i from generate_series(0, 99) i;
step s1select: select count(*) from ao;
count
-----
100
(1 row)
step s2select: select count(*) from ao;
count
-----
0
(1 row)
step s2insert: insert into ao select i, i from generate_series(0, 99) i;
step s2select: select count(*) from ao;
count
-----
100
(1 row)