diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-08-14 23:13:13 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-08-14 23:13:13 -0400 |
commit | 8bd42fe5c715c478a4b3ceb77cb28ef9f18b5486 (patch) | |
tree | d5ccacda41baaec573f7db14001047780e0bd53e /src | |
parent | 5243a35825cf32db5863459be1f3afcc6b6461e0 (diff) | |
download | postgresql-8bd42fe5c715c478a4b3ceb77cb28ef9f18b5486.tar.gz postgresql-8bd42fe5c715c478a4b3ceb77cb28ef9f18b5486.zip |
Remove unused expected-output file.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/isolation/expected/fk-delete-insert.out | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/test/isolation/expected/fk-delete-insert.out b/src/test/isolation/expected/fk-delete-insert.out deleted file mode 100644 index 1ab15aaf761..00000000000 --- a/src/test/isolation/expected/fk-delete-insert.out +++ /dev/null @@ -1,41 +0,0 @@ -Parsed test spec with 2 sessions - -starting permutation: s1d s1c s2i s2c -step s1d: DELETE FROM A WHERE AID = 1; -step s1c: COMMIT; -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); -ERROR: insert or update on table "b" violates foreign key constraint "b_aid_fkey" -step s2c: COMMIT; - -starting permutation: s1d s2i s1c s2c -step s1d: DELETE FROM A WHERE AID = 1; -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); <waiting ...> -step s1c: COMMIT; -step s2i: <... completed> -error in steps s1c s2i: ERROR: insert or update on table "b" violates foreign key constraint "b_aid_fkey" -step s2c: COMMIT; - -starting permutation: s1d s2i s2c s1c -step s1d: DELETE FROM A WHERE AID = 1; -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); <waiting ...> -invalid permutation detected - -starting permutation: s2i s1d s1c s2c -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); -step s1d: DELETE FROM A WHERE AID = 1; <waiting ...> -invalid permutation detected - -starting permutation: s2i s1d s2c s1c -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); -step s1d: DELETE FROM A WHERE AID = 1; <waiting ...> -step s2c: COMMIT; -step s1d: <... completed> -error in steps s2c s1d: ERROR: update or delete on table "a" violates foreign key constraint "b_aid_fkey" on table "b" -step s1c: COMMIT; - -starting permutation: s2i s2c s1d s1c -step s2i: INSERT INTO B (BID,AID,Col2) VALUES (2,1,0); -step s2c: COMMIT; -step s1d: DELETE FROM A WHERE AID = 1; -ERROR: update or delete on table "a" violates foreign key constraint "b_aid_fkey" on table "b" -step s1c: COMMIT; |