Exec checks if tx is closed

https://github.com/jackc/pgx/discussions/1350
pull/1353/head^2
Jack Christensen 2022-10-24 18:23:26 -05:00
parent 3e825ec898
commit 3ad9995dfe
1 changed files with 4 additions and 0 deletions

4
tx.go
View File

@ -201,6 +201,10 @@ func (tx *dbTx) Rollback(ctx context.Context) error {
// Exec delegates to the underlying *Conn
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...)
}