@@ -6,7 +6,7 @@ accountid balance
6
6
7
7
checking 600
8
8
savings 600
9
- step sto: SET statement_timeout = 1000 ;
9
+ step sto: SET statement_timeout = 2000 ;
10
10
step locktbl: LOCK TABLE accounts; <waiting ...>
11
11
step locktbl: <... completed>
12
12
ERROR: canceling statement due to statement timeout
@@ -17,7 +17,7 @@ accountid balance
17
17
18
18
checking 600
19
19
savings 600
20
- step lto: SET lock_timeout = 1000 ;
20
+ step lto: SET lock_timeout = 2000 ;
21
21
step locktbl: LOCK TABLE accounts; <waiting ...>
22
22
step locktbl: <... completed>
23
23
ERROR: canceling statement due to lock timeout
@@ -28,7 +28,7 @@ accountid balance
28
28
29
29
checking 600
30
30
savings 600
31
- step lsto: SET lock_timeout = 1000 ; SET statement_timeout = 2000 ;
31
+ step lsto: SET lock_timeout = 2000 ; SET statement_timeout = 3000 ;
32
32
step locktbl: LOCK TABLE accounts; <waiting ...>
33
33
step locktbl: <... completed>
34
34
ERROR: canceling statement due to lock timeout
@@ -39,35 +39,35 @@ accountid balance
39
39
40
40
checking 600
41
41
savings 600
42
- step slto: SET lock_timeout = 2000 ; SET statement_timeout = 1000 ;
42
+ step slto: SET lock_timeout = 3000 ; SET statement_timeout = 2000 ;
43
43
step locktbl: LOCK TABLE accounts; <waiting ...>
44
44
step locktbl: <... completed>
45
45
ERROR: canceling statement due to statement timeout
46
46
47
47
starting permutation: wrtbl sto update
48
48
step wrtbl: UPDATE accounts SET balance = balance + 100;
49
- step sto: SET statement_timeout = 1000 ;
49
+ step sto: SET statement_timeout = 2000 ;
50
50
step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
51
51
step update: <... completed>
52
52
ERROR: canceling statement due to statement timeout
53
53
54
54
starting permutation: wrtbl lto update
55
55
step wrtbl: UPDATE accounts SET balance = balance + 100;
56
- step lto: SET lock_timeout = 1000 ;
56
+ step lto: SET lock_timeout = 2000 ;
57
57
step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
58
58
step update: <... completed>
59
59
ERROR: canceling statement due to lock timeout
60
60
61
61
starting permutation: wrtbl lsto update
62
62
step wrtbl: UPDATE accounts SET balance = balance + 100;
63
- step lsto: SET lock_timeout = 1000 ; SET statement_timeout = 2000 ;
63
+ step lsto: SET lock_timeout = 2000 ; SET statement_timeout = 3000 ;
64
64
step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
65
65
step update: <... completed>
66
66
ERROR: canceling statement due to lock timeout
67
67
68
68
starting permutation: wrtbl slto update
69
69
step wrtbl: UPDATE accounts SET balance = balance + 100;
70
- step slto: SET lock_timeout = 2000 ; SET statement_timeout = 1000 ;
70
+ step slto: SET lock_timeout = 3000 ; SET statement_timeout = 2000 ;
71
71
step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
72
72
step update: <... completed>
73
73
ERROR: canceling statement due to statement timeout
0 commit comments