rethinkdb-client-driver 0.0.7 → 0.0.8
raw patch · 2 files changed
+7/−1 lines, 2 files
Files
rethinkdb-client-driver.cabal view
@@ -1,5 +1,5 @@ name: rethinkdb-client-driver-version: 0.0.7+version: 0.0.8 license: MIT license-file: LICENSE author: Tomas Carnecky
src/Database/RethinkDB/Types.hs view
@@ -440,6 +440,9 @@ Limit :: (IsSequence s) => Double -> Exp s -> Exp s -- ^ Limit the number of items in the sequence. + Nth :: (IsSequence s, IsDatum r) => Double -> Exp s -> Exp r+ -- ^ Return the n-th element in the sequence.+ UUID :: Exp Text -- ^ An expression which when evaluated will generate a fresh UUID (in its -- standard string encoding).@@ -623,6 +626,9 @@ toTerm (Limit n s) = simpleTerm 71 [SomeExp s, SomeExp (lift n)]++ toTerm (Nth n s) =+ simpleTerm 45 [SomeExp s, SomeExp (lift n)] toTerm UUID = noargTerm 169