Skip to content

Commit 5801ebf

Browse files
committed
Remove Functor instance for Values
Undoes 7267c93 This isn't as attractive as it seemed at first glace, because if the function mapped over Values changes the Haskell types, the postgresql types may need changing as well. Perhaps the original omission of Functor on my part was intentional?
1 parent 79b08bf commit 5801ebf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Database/PostgreSQL/Simple/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,4 +271,4 @@ newtype Savepoint = Savepoint Query
271271
-- See <http://www.postgresql.org/docs/9.3/static/sql-values.html> for
272272
-- more information.
273273
data Values a = Values [QualifiedIdentifier] [a]
274-
deriving (Eq, Ord, Show, Read, Typeable, Functor)
274+
deriving (Eq, Ord, Show, Read, Typeable)

0 commit comments

Comments
 (0)