Skip to content

Commit 1aa5566

Browse files
committed
Enable Union operations in StateMachine tests
This currently fails due to lookups not being supported yet, but at least it passes simpler cases without lookups.
1 parent fe52a7c commit 1aa5566

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/Test/Database/LSMTree/StateMachine.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1582,11 +1582,9 @@ arbitraryActionWithVars _ label ctx (ModelState st _stats) =
15821582
]
15831583
++ [ (2, fmap Some $ Union <$> genTableVar <*> genTableVar)
15841584
| length tableVars <= 5 -- no more than 5 tables at once
1585-
, False -- TODO: enable once table union is implemented
15861585
]
15871586
++ [ (2, fmap Some $ Unions <$> genUnionsTableVars)
15881587
| length tableVars <= 5 -- no more than 5 tables at once
1589-
, False -- TODO: enable once table unions is implemented
15901588
]
15911589

15921590
genActionsCursor :: [(Int, Gen (Any (LockstepAction (ModelState h))))]

0 commit comments

Comments
 (0)