Skip to content

Commit 5cc18ea

Browse files
committed
Add dummy for a missing IO specialisation
1 parent 6896c91 commit 5cc18ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Database/LSMTree.hs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ module Database.LSMTree (
108108
, SerialiseValue
109109

110110
-- * Monoidal value resolution
111+
, dummy
111112
, ResolveValue (..)
112113
, resolveDeserialised
113114
-- ** Properties
@@ -602,6 +603,9 @@ supplyUnionCredits (Internal.Table' t) (UnionCredits credits) =
602603
Monoidal value resolution
603604
-------------------------------------------------------------------------------}
604605

606+
dummy :: Monad m => m ()
607+
dummy = return ()
608+
605609
-- | A class to specify how to resolve/merge values when using monoidal updates
606610
-- ('Mupsert'). This is required for merging entries during compaction and also
607611
-- for doing lookups, resolving multiple entries of the same key on the fly.

0 commit comments

Comments
 (0)