diff options
Diffstat (limited to 'src/test/isolation/expected/reindex-concurrently.out')
-rw-r--r-- | src/test/isolation/expected/reindex-concurrently.out | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/src/test/isolation/expected/reindex-concurrently.out b/src/test/isolation/expected/reindex-concurrently.out index 9e04169b2fd..eea5b2b93c8 100644 --- a/src/test/isolation/expected/reindex-concurrently.out +++ b/src/test/isolation/expected/reindex-concurrently.out @@ -3,9 +3,11 @@ Parsed test spec with 3 sessions starting permutation: reindex sel1 upd2 ins2 del2 end1 end2 step reindex: REINDEX TABLE CONCURRENTLY reind_con_tab; step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); step del2: DELETE FROM reind_con_tab WHERE data = 'cccc'; @@ -14,9 +16,11 @@ step end2: COMMIT; starting permutation: sel1 reindex upd2 ins2 del2 end1 end2 step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step reindex: REINDEX TABLE CONCURRENTLY reind_con_tab; <waiting ...> step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); @@ -27,9 +31,11 @@ step reindex: <... completed> starting permutation: sel1 upd2 reindex ins2 del2 end1 end2 step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step reindex: REINDEX TABLE CONCURRENTLY reind_con_tab; <waiting ...> step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); @@ -40,9 +46,11 @@ step reindex: <... completed> starting permutation: sel1 upd2 ins2 reindex del2 end1 end2 step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); step reindex: REINDEX TABLE CONCURRENTLY reind_con_tab; <waiting ...> @@ -53,9 +61,11 @@ step reindex: <... completed> starting permutation: sel1 upd2 ins2 del2 reindex end1 end2 step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); step del2: DELETE FROM reind_con_tab WHERE data = 'cccc'; @@ -66,9 +76,11 @@ step reindex: <... completed> starting permutation: sel1 upd2 ins2 del2 end1 reindex end2 step sel1: SELECT data FROM reind_con_tab WHERE id = 3; -data +data +---- +aaaa +(1 row) -aaaa step upd2: UPDATE reind_con_tab SET data = 'bbbb' WHERE id = 3; step ins2: INSERT INTO reind_con_tab(data) VALUES ('cccc'); step del2: DELETE FROM reind_con_tab WHERE data = 'cccc'; |