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 2ae8497 commit c1eecfdCopy full SHA for c1eecfd
src/Database/PostgreSQL/PQTypes/Format.hs
@@ -86,13 +86,13 @@ instance PQFormat Double where
86
pqFormat = BS.pack "%float8"
87
88
instance PQFormat Word16 where
89
- pqFormat = BS.pack "%word2"
+ pqFormat = BS.pack "%int2"
90
91
instance PQFormat Word32 where
92
- pqFormat = BS.pack "%word4"
+ pqFormat = BS.pack "%int4"
93
94
instance PQFormat Word64 where
95
- pqFormat = BS.pack "%word8"
+ pqFormat = BS.pack "%int8"
96
97
-- CHAR
98
0 commit comments