mirror of https://github.com/jackc/pgx.git
parent
3e825ec898
commit
3ad9995dfe
4
tx.go
4
tx.go
|
@ -201,6 +201,10 @@ func (tx *dbTx) Rollback(ctx context.Context) error {
|
||||||
|
|
||||||
// Exec delegates to the underlying *Conn
|
// Exec delegates to the underlying *Conn
|
||||||
func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error) {
|
func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error) {
|
||||||
|
if tx.closed {
|
||||||
|
return pgconn.CommandTag{}, ErrTxClosed
|
||||||
|
}
|
||||||
|
|
||||||
return tx.conn.Exec(ctx, sql, arguments...)
|
return tx.conn.Exec(ctx, sql, arguments...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue