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 b4a0de6 commit 3ff5992Copy full SHA for 3ff5992
src/Database/PostgreSQL/Query/Types.hs
@@ -354,6 +354,11 @@ instance (MonadReader r m) => MonadReader r (PgMonadT m) where
354
{-# INLINABLE local #-}
355
{-# INLINABLE reader #-}
356
357
+instance (MonadHReader m) => MonadHReader (PgMonadT m) where
358
+ type MHRElements (PgMonadT m) = MHRElements m
359
+ askHSet = PgMonadT askHSet
360
+ {-# INLINEABLE askHSet #-}
361
+
362
instance (MonadBase IO m) => HasPostgres (PgMonadT m) where
363
withPGConnection action = do
364
con <- PgMonadT ask
0 commit comments