aboutsummaryrefslogtreecommitdiff
path: root/src/test/isolation/expected/insert-conflict-do-nothing.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/isolation/expected/insert-conflict-do-nothing.out')
-rw-r--r--src/test/isolation/expected/insert-conflict-do-nothing.out12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/test/isolation/expected/insert-conflict-do-nothing.out b/src/test/isolation/expected/insert-conflict-do-nothing.out
index 0a0958f0341..cadf46d0654 100644
--- a/src/test/isolation/expected/insert-conflict-do-nothing.out
+++ b/src/test/isolation/expected/insert-conflict-do-nothing.out
@@ -6,9 +6,11 @@ step donothing2: INSERT INTO ints(key, val) VALUES(1, 'donothing2') ON CONFLICT
step c1: COMMIT;
step donothing2: <... completed>
step select2: SELECT * FROM ints;
-key val
+key|val
+---+----------
+ 1|donothing1
+(1 row)
-1 donothing1
step c2: COMMIT;
starting permutation: donothing1 donothing2 a1 select2 c2
@@ -17,7 +19,9 @@ step donothing2: INSERT INTO ints(key, val) VALUES(1, 'donothing2') ON CONFLICT
step a1: ABORT;
step donothing2: <... completed>
step select2: SELECT * FROM ints;
-key val
+key|val
+---+----------
+ 1|donothing2
+(1 row)
-1 donothing2
step c2: COMMIT;