summaryrefslogtreecommitdiffstats
path: root/src/test/isolation/expected/matview-write-skew.out
blob: 4c8eaf5ae89bc5118af00d650f9d1e3460966df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
Parsed test spec with 2 sessions

starting permutation: s1_begin s2_begin s1_refresh s2_read s2_insert s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s2_insert: INSERT INTO orders VALUES ('2022-04-02', 'orange', 15);
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s1_refresh s2_read s2_update s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s2_update: UPDATE orders SET num = num + 1;
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s2_read s1_refresh s2_insert s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_insert: INSERT INTO orders VALUES ('2022-04-02', 'orange', 15);
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s2_read s1_refresh s2_update s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_update: UPDATE orders SET num = num + 1;
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s2_read s2_insert s1_refresh s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s2_insert: INSERT INTO orders VALUES ('2022-04-02', 'orange', 15);
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s2_read s2_update s1_refresh s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s2_update: UPDATE orders SET num = num + 1;
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s1_refresh s2_insert s2_read s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_insert: INSERT INTO orders VALUES ('2022-04-02', 'orange', 15);
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions

starting permutation: s1_begin s2_begin s1_refresh s2_update s2_read s1_commit s2_commit
step s1_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s2_begin: BEGIN ISOLATION LEVEL SERIALIZABLE;
step s1_refresh: REFRESH MATERIALIZED VIEW CONCURRENTLY order_summary;
step s2_update: UPDATE orders SET num = num + 1;
step s2_read: SELECT max(date) FROM order_summary;
       max
----------
04-01-2022
(1 row)

step s1_commit: COMMIT;
step s2_commit: COMMIT;
ERROR:  could not serialize access due to read/write dependencies among transactions