We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dummy
IO
1 parent 6896c91 commit 5cc18eaCopy full SHA for 5cc18ea
src/Database/LSMTree.hs
@@ -108,6 +108,7 @@ module Database.LSMTree (
108
, SerialiseValue
109
110
-- * Monoidal value resolution
111
+ , dummy
112
, ResolveValue (..)
113
, resolveDeserialised
114
-- ** Properties
@@ -602,6 +603,9 @@ supplyUnionCredits (Internal.Table' t) (UnionCredits credits) =
602
603
Monoidal value resolution
604
-------------------------------------------------------------------------------}
605
606
+dummy :: Monad m => m ()
607
+dummy = return ()
608
+
609
-- | A class to specify how to resolve/merge values when using monoidal updates
610
-- ('Mupsert'). This is required for merging entries during compaction and also
611
-- for doing lookups, resolving multiple entries of the same key on the fly.
0 commit comments