fix: rm bounds on exec

This commit is contained in:
orion 2023-12-20 21:07:06 -06:00
parent c73b37b972
commit aca7772745
Signed by: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -189,11 +189,11 @@ runHasPostgres conn t = (unwrap $ unwrap t) conn
query :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => Query.BuilderT m String -> m (Array a) query :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => Query.BuilderT m String -> m (Array a)
query = query' identity query = query' identity
exec :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => Query.BuilderT m String -> m Unit exec :: forall m. MonadPostgres m => Query.BuilderT m String -> m Unit
exec = exec' identity exec = exec' identity
query0 :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => String -> m (Array a) query0 :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => String -> m (Array a)
query0 q = query' identity (pure q) query0 q = query' identity (pure q)
exec0 :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => String -> m Unit exec0 :: forall m. MonadPostgres m => String -> m Unit
exec0 q = exec' identity (pure q) exec0 q = exec' identity (pure q)