diff options
Diffstat (limited to 'src/test/modules/snapshot_too_old/specs/sto_using_select.spec')
-rw-r--r-- | src/test/modules/snapshot_too_old/specs/sto_using_select.spec | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/modules/snapshot_too_old/specs/sto_using_select.spec b/src/test/modules/snapshot_too_old/specs/sto_using_select.spec index d7c34f3d894..80a31763ad4 100644 --- a/src/test/modules/snapshot_too_old/specs/sto_using_select.spec +++ b/src/test/modules/snapshot_too_old/specs/sto_using_select.spec @@ -6,14 +6,13 @@ # granularity is in minutes. # # Since results depend on the value of old_snapshot_threshold, sneak that into -# the line generated by the sleep, so that a surprising values isn't so hard +# the line generated by the sleep, so that a surprising value isn't so hard # to identify. setup { CREATE TABLE sto1 (c int NOT NULL); INSERT INTO sto1 SELECT generate_series(1, 1000); - CREATE TABLE sto2 (c int NOT NULL); } setup { @@ -22,7 +21,7 @@ setup teardown { - DROP TABLE sto1, sto2; + DROP TABLE sto1; } session "s1" @@ -34,3 +33,5 @@ teardown { COMMIT; } session "s2" step "s2u" { UPDATE sto1 SET c = 1001 WHERE c = 1; } + +permutation "s1f1" "s1sleep" "s2u" "s1f2" |