Refactor rpc to not use count when returning scalar

This commit is contained in:
steve-chavez
2017-06-24 21:07:07 -05:00
parent 4cf1bcec64
commit ecd58e1ad2
4 changed files with 29 additions and 21 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ data PgArg = PgArg {
, pgaReq :: Bool
} deriving (Show, Eq)
data PgType = Scalar QualifiedIdentifier | Composite QualifiedIdentifier | Pseudo Text deriving (Eq, Show)
data PgType = Scalar QualifiedIdentifier | Composite QualifiedIdentifier deriving (Eq, Show)
data RetType = Single PgType | SetOf PgType deriving (Eq, Show)