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.
1 parent 9607654 commit f53e4f6Copy full SHA for f53e4f6
test/Test/Database/LSMTree/StateMachine.hs
@@ -1687,6 +1687,19 @@ shrinkActionWithVars _ctx _st = \case
1687
| let f k = (k, R.Delete)
1688
]
1689
1690
+ Mupserts kvs tableVar -> [
1691
+ Some $ Mupserts kvs' tableVar
1692
+ | kvs' <- QC.shrink kvs
1693
+ ] <> [
1694
+ Some $ Updates (V.map f kvs) tableVar
1695
+ | let f (k, v) = (k, R.Mupsert v)
1696
+ ]
1697
+
1698
+ Unions tableVars -> [
1699
+ Some $ Unions tableVars'
1700
+ | tableVars' <- QC.liftShrink (const []) tableVars
1701
1702
1703
Lookups ks tableVar -> [ Some $ Lookups ks' tableVar | ks' <- QC.shrink ks ]
1704
1705
-- Snapshots
0 commit comments