setup { drop table if exists tlu_job; create table tlu_job (id integer primary key, name text); insert into tlu_job values(1, 'a'); } teardown { drop table tlu_job; } session "s0" setup { begin; } step "s0_forupdate" { select id from tlu_job where id = 1 for update; } step "s0_commit" { commit; } session "s1" setup { begin; } step "s1_keyshare" { select id from tlu_job where id = 1 for key share;} step "s1_share" { select id from tlu_job where id = 1 for share; } step "s1_update" { update tlu_job set name = 'b' where id = 1; } step "s1_delete" { delete from tlu_job where id = 1; } step "s1_rollback" { rollback; } step "s1_commit" { commit; } session "s2" setup { begin; } step "s2_for_update" { select id from tlu_job where id = 1 for update; } step "s2_update" { update tlu_job set name = 'b' where id = 1; } step "s2_delete" { delete from tlu_job where id = 1; } step "s2_rollback" { rollback; } step "s2_commit" { commit; } session "s3" setup { begin; } step "s3_keyshare" { select id from tlu_job where id = 1 for key share; } step "s3_share" { select id from tlu_job where id = 1 for share; } step "s3_for_update" { select id from tlu_job where id = 1 for update; } step "s3_update" { update tlu_job set name = 'c' where id = 1; } step "s3_delete" { delete from tlu_job where id = 1; } step "s3_rollback" { rollback; } step "s3_commit" { commit; } permutation "s0_forupdate" "s1_share" "s2_for_update" "s0_commit" "s3_share" "s3_for_update" "s1_rollback" "s3_rollback" "s2_rollback" permutation "s0_forupdate" "s1_share" "s2_for_update" "s3_share" "s0_commit" "s3_for_update" "s1_rollback" "s3_rollback" "s2_rollback"