var github.com/jackc/pgx/v5.ErrTxClosed

18 uses

	github.com/jackc/pgx/v5 (current package)
		tx.go#L85: var ErrTxClosed = errors.New("tx is closed")
		tx.go#L167: 		return nil, ErrTxClosed
		tx.go#L182: 		return ErrTxClosed
		tx.go#L211: 		return ErrTxClosed
		tx.go#L228: 		return pgconn.CommandTag{}, ErrTxClosed
		tx.go#L237: 		return nil, ErrTxClosed
		tx.go#L247: 		err := ErrTxClosed
		tx.go#L263: 		return 0, ErrTxClosed
		tx.go#L272: 		return &batchResults{err: ErrTxClosed}
		tx.go#L297: 		return nil, ErrTxClosed
		tx.go#L306: 		return ErrTxClosed
		tx.go#L319: 		return ErrTxClosed
		tx.go#L330: 		return pgconn.CommandTag{}, ErrTxClosed
		tx.go#L339: 		return nil, ErrTxClosed
		tx.go#L349: 		err := ErrTxClosed
		tx.go#L365: 		return 0, ErrTxClosed
		tx.go#L374: 		return &batchResults{err: ErrTxClosed}
		tx.go#L430: 		if rollbackErr != nil && !errors.Is(rollbackErr, ErrTxClosed) {