diff options
Diffstat (limited to 'src/test/isolation/expected/fk-partitioned-2.out')
-rw-r--r-- | src/test/isolation/expected/fk-partitioned-2.out | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/src/test/isolation/expected/fk-partitioned-2.out b/src/test/isolation/expected/fk-partitioned-2.out new file mode 100644 index 0000000..8c6c714 --- /dev/null +++ b/src/test/isolation/expected/fk-partitioned-2.out @@ -0,0 +1,76 @@ +Parsed test spec with 2 sessions + +starting permutation: s1b s1d s2b s2i s1c s2c +step s1b: begin; +step s1d: delete from ppk where a = 1; +step s2b: begin; +step s2i: insert into pfk values (1); <waiting ...> +step s1c: commit; +step s2i: <... completed> +ERROR: insert or update on table "pfk1" violates foreign key constraint "pfk_a_fkey" +step s2c: commit; + +starting permutation: s1b s1d s2bs s2i s1c s2c +step s1b: begin; +step s1d: delete from ppk where a = 1; +step s2bs: begin isolation level serializable; select 1; +?column? +-------- + 1 +(1 row) + +step s2i: insert into pfk values (1); <waiting ...> +step s1c: commit; +step s2i: <... completed> +ERROR: could not serialize access due to concurrent update +step s2c: commit; + +starting permutation: s1b s2b s1d s2i s1c s2c +step s1b: begin; +step s2b: begin; +step s1d: delete from ppk where a = 1; +step s2i: insert into pfk values (1); <waiting ...> +step s1c: commit; +step s2i: <... completed> +ERROR: insert or update on table "pfk1" violates foreign key constraint "pfk_a_fkey" +step s2c: commit; + +starting permutation: s1b s2bs s1d s2i s1c s2c +step s1b: begin; +step s2bs: begin isolation level serializable; select 1; +?column? +-------- + 1 +(1 row) + +step s1d: delete from ppk where a = 1; +step s2i: insert into pfk values (1); <waiting ...> +step s1c: commit; +step s2i: <... completed> +ERROR: could not serialize access due to concurrent update +step s2c: commit; + +starting permutation: s1b s2b s2i s1d s2c s1c +step s1b: begin; +step s2b: begin; +step s2i: insert into pfk values (1); +step s1d: delete from ppk where a = 1; <waiting ...> +step s2c: commit; +step s1d: <... completed> +ERROR: update or delete on table "ppk1" violates foreign key constraint "pfk_a_fkey1" on table "pfk" +step s1c: commit; + +starting permutation: s1b s2bs s2i s1d s2c s1c +step s1b: begin; +step s2bs: begin isolation level serializable; select 1; +?column? +-------- + 1 +(1 row) + +step s2i: insert into pfk values (1); +step s1d: delete from ppk where a = 1; <waiting ...> +step s2c: commit; +step s1d: <... completed> +ERROR: update or delete on table "ppk1" violates foreign key constraint "pfk_a_fkey1" on table "pfk" +step s1c: commit; |