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 301357a commit 8293486Copy full SHA for 8293486
src/Database/LSMTree/Internal/CRC32C.hs
@@ -13,6 +13,7 @@
13
-- * Support for verifying checksums of files.
14
-- * Support for a text file format listing file checksums.
15
--
16
+-- TODO: specialise all the functions here to IO
17
module Database.LSMTree.Internal.CRC32C (
18
19
CRC32C(..),
src/Database/LSMTree/Internal/RunBuilder.hs
@@ -285,6 +285,8 @@ copyBlob ::
285
copyBlob builder@RunBuilder {..} blobref = do
286
blob <- BlobRef.readRawBlobRef runBuilderHasFS blobref
287
writeBlob builder blob
288
+ --TODO: consier adding write blob functions to BlobFile
289
+ -- variants: at offset, at file pointer with CRC update.
290
291
{-# SPECIALISE writeFilter ::
292
RunBuilder IO h
0 commit comments