We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f56fc79 + f53e4f6 commit 5c7465bCopy full SHA for 5c7465b
test/Test/Database/LSMTree/StateMachine.hs
@@ -1688,6 +1688,19 @@ shrinkActionWithVars _ctx _st = \case
1688
| let f k = (k, R.Delete)
1689
]
1690
1691
+ Mupserts kvs tableVar -> [
1692
+ Some $ Mupserts kvs' tableVar
1693
+ | kvs' <- QC.shrink kvs
1694
+ ] <> [
1695
+ Some $ Updates (V.map f kvs) tableVar
1696
+ | let f (k, v) = (k, R.Mupsert v)
1697
+ ]
1698
+
1699
+ Unions tableVars -> [
1700
+ Some $ Unions tableVars'
1701
+ | tableVars' <- QC.liftShrink (const []) tableVars
1702
1703
1704
Lookups ks tableVar -> [ Some $ Lookups ks' tableVar | ks' <- QC.shrink ks ]
1705
1706
-- Snapshots
0 commit comments