Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Rel8/Type.hs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ instance DBType Int64 where
}


-- | Corresponds to @float4@
-- | Corresponds to @float4@ and @real@
instance DBType Float where
typeInformation = TypeInformation
{ encode = \x -> Opaleye.ConstExpr
Expand All @@ -214,7 +214,7 @@ instance DBType Float where
}


-- | Corresponds to @float8@
-- | Corresponds to @float8@ and @double precision@
instance DBType Double where
typeInformation = TypeInformation
{ encode = \x -> Opaleye.ConstExpr
Expand Down