generated from tpl/purs
fix: rm bounds on exec
This commit is contained in:
parent
c73b37b972
commit
aca7772745
@ -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 = 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
|
||||
|
||||
query0 :: forall m @a. MonadPostgres m => Pg.FromSQLRow a => String -> m (Array a)
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user