We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41d650d commit a70a9b4Copy full SHA for a70a9b4
2 files changed
CHANGES.md
@@ -1,3 +1,7 @@
1
+### Version 0.7 (2023-07-31)
2
+
3
+ * Remove Eq Null instance. (Future `base` may break it, we remove it profilacticly).
4
5
### Version 0.6.5.1 (2023-07-09)
6
7
* Support `aeson-2.2.0.0`
src/Database/PostgreSQL/Simple/Types.hs
@@ -50,10 +50,6 @@ import Database.PostgreSQL.Simple.Compat (toByteString)
50
data Null = Null
51
deriving (Read, Show, Typeable)
52
53
-instance Eq Null where
54
- _ == _ = False
55
- _ /= _ = False
56
-
57
-- | A placeholder for the PostgreSQL @DEFAULT@ value.
58
data Default = Default
59
0 commit comments