mirror of
https://github.com/jackc/pgx.git
synced 2025-07-11 13:08:49 +00:00
Commit and rollbase need not check for failure state
This commit is contained in:
parent
f114ec85a1
commit
f42b0f65fc
4
tx.go
4
tx.go
@ -117,7 +117,7 @@ func (tx *Tx) Commit() error {
|
||||
|
||||
// CommitEx commits the transaction with a context.
|
||||
func (tx *Tx) CommitEx(ctx context.Context) error {
|
||||
if !(tx.Status() == TxStatusInProgress || tx.Status() == TxStatusInFailure) {
|
||||
if tx.status != TxStatusInProgress {
|
||||
return ErrTxClosed
|
||||
}
|
||||
|
||||
@ -152,7 +152,7 @@ func (tx *Tx) Rollback() error {
|
||||
|
||||
// RollbackEx is the context version of Rollback
|
||||
func (tx *Tx) RollbackEx(ctx context.Context) error {
|
||||
if !(tx.Status() == TxStatusInProgress || tx.Status() == TxStatusInFailure) {
|
||||
if tx.status != TxStatusInProgress {
|
||||
return ErrTxClosed
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user