aws-dynamodb-conduit 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+2/−1 lines, 2 files
Files
aws-dynamodb-conduit.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: aws-dynamodb-conduit-version: 0.1.0.0+version: 0.1.0.1 synopsis: Conduit-based interface for AWS DynamoDB -- description: homepage: https://github.com/srijs/haskell-aws-dynamodb-query
src/Aws/DynamoDb/Commands/Query/Conduit.hs view
@@ -67,6 +67,7 @@ key "ConsumedCapacity" = setConsumed <$> Just <$> parse key "LastKey" = setLastKey <$> parseMaybe parseAttributeJson <$> pvalue key "Items" = mempty <$ (parray . const $ parse >>= lift . tell . maybeToList)+ key _ = return mempty setCount c = mempty { incompleteCount = Last c } setScanned c = mempty { incompleteScanned = Last c } setConsumed c = mempty { incompleteConsumed = Last c }