Skip to content

Commit 27a1345

Browse files
authored
Merge pull request #120 from haskellari/remove-eq-null
Remove Eq Null instance
2 parents 41d650d + a70a9b4 commit 27a1345

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
15
### Version 0.6.5.1 (2023-07-09)
26

37
* Support `aeson-2.2.0.0`

src/Database/PostgreSQL/Simple/Types.hs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ import Database.PostgreSQL.Simple.Compat (toByteString)
5050
data Null = Null
5151
deriving (Read, Show, Typeable)
5252

53-
instance Eq Null where
54-
_ == _ = False
55-
_ /= _ = False
56-
5753
-- | A placeholder for the PostgreSQL @DEFAULT@ value.
5854
data Default = Default
5955
deriving (Read, Show, Typeable)

0 commit comments

Comments
 (0)