@@ -6,7 +6,7 @@ accountid balance
66
77checking 600
88savings 600
9- step sto: SET statement_timeout = 1000 ;
9+ step sto: SET statement_timeout = 2000 ;
1010step locktbl: LOCK TABLE accounts; <waiting ...>
1111step locktbl: <... completed>
1212ERROR: canceling statement due to statement timeout
@@ -17,7 +17,7 @@ accountid balance
1717
1818checking 600
1919savings 600
20- step lto: SET lock_timeout = 1000 ;
20+ step lto: SET lock_timeout = 2000 ;
2121step locktbl: LOCK TABLE accounts; <waiting ...>
2222step locktbl: <... completed>
2323ERROR: canceling statement due to lock timeout
@@ -28,7 +28,7 @@ accountid balance
2828
2929checking 600
3030savings 600
31- step lsto: SET lock_timeout = 1000 ; SET statement_timeout = 2000 ;
31+ step lsto: SET lock_timeout = 2000 ; SET statement_timeout = 3000 ;
3232step locktbl: LOCK TABLE accounts; <waiting ...>
3333step locktbl: <... completed>
3434ERROR: canceling statement due to lock timeout
@@ -39,35 +39,35 @@ accountid balance
3939
4040checking 600
4141savings 600
42- step slto: SET lock_timeout = 2000 ; SET statement_timeout = 1000 ;
42+ step slto: SET lock_timeout = 3000 ; SET statement_timeout = 2000 ;
4343step locktbl: LOCK TABLE accounts; <waiting ...>
4444step locktbl: <... completed>
4545ERROR: canceling statement due to statement timeout
4646
4747starting permutation: wrtbl sto update
4848step wrtbl: UPDATE accounts SET balance = balance + 100;
49- step sto: SET statement_timeout = 1000 ;
49+ step sto: SET statement_timeout = 2000 ;
5050step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
5151step update: <... completed>
5252ERROR: canceling statement due to statement timeout
5353
5454starting permutation: wrtbl lto update
5555step wrtbl: UPDATE accounts SET balance = balance + 100;
56- step lto: SET lock_timeout = 1000 ;
56+ step lto: SET lock_timeout = 2000 ;
5757step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
5858step update: <... completed>
5959ERROR: canceling statement due to lock timeout
6060
6161starting permutation: wrtbl lsto update
6262step 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 ;
6464step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
6565step update: <... completed>
6666ERROR: canceling statement due to lock timeout
6767
6868starting permutation: wrtbl slto update
6969step 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 ;
7171step update: DELETE FROM accounts WHERE accountid = 'checking'; <waiting ...>
7272step update: <... completed>
7373ERROR: canceling statement due to statement timeout
0 commit comments