mirror of https://github.com/jackc/pgx.git
Remove Conn.TxStatus
parent
ec513248ac
commit
69434056c6
4
conn.go
4
conn.go
|
@ -53,7 +53,7 @@ type Conn struct {
|
|||
RuntimeParams map[string]string // parameters that have been reported by the server
|
||||
PgTypes map[OID]PgType // oids to PgTypes
|
||||
config ConnConfig // config used when establishing this connection
|
||||
TxStatus byte
|
||||
txStatus byte
|
||||
preparedStatements map[string]*PreparedStatement
|
||||
channels map[string]struct{}
|
||||
notifications []*Notification
|
||||
|
@ -1150,7 +1150,7 @@ func (c *Conn) rxBackendKeyData(r *msgReader) {
|
|||
}
|
||||
|
||||
func (c *Conn) rxReadyForQuery(r *msgReader) {
|
||||
c.TxStatus = r.readByte()
|
||||
c.txStatus = r.readByte()
|
||||
}
|
||||
|
||||
func (c *Conn) rxRowDescription(r *msgReader) (fields []FieldDescription) {
|
||||
|
|
|
@ -181,7 +181,7 @@ func (p *ConnPool) acquire(deadline *time.Time) (*Conn, error) {
|
|||
|
||||
// Release gives up use of a connection.
|
||||
func (p *ConnPool) Release(conn *Conn) {
|
||||
if conn.TxStatus != 'I' {
|
||||
if conn.txStatus != 'I' {
|
||||
conn.Exec("rollback")
|
||||
}
|
||||
|
||||
|
|
|
@ -328,14 +328,14 @@ func TestPoolReleaseWithTransactions(t *testing.T) {
|
|||
t.Fatal("Did not receive expected error")
|
||||
}
|
||||
|
||||
if conn.TxStatus != 'E' {
|
||||
t.Fatalf("Expected TxStatus to be 'E', instead it was '%c'", conn.TxStatus)
|
||||
if conn.TxStatus() != 'E' {
|
||||
t.Fatalf("Expected TxStatus to be 'E', instead it was '%c'", conn.TxStatus())
|
||||
}
|
||||
|
||||
pool.Release(conn)
|
||||
|
||||
if conn.TxStatus != 'I' {
|
||||
t.Fatalf("Expected release to rollback errored transaction, but it did not: '%c'", conn.TxStatus)
|
||||
if conn.TxStatus() != 'I' {
|
||||
t.Fatalf("Expected release to rollback errored transaction, but it did not: '%c'", conn.TxStatus())
|
||||
}
|
||||
|
||||
conn, err = pool.Acquire()
|
||||
|
@ -343,14 +343,14 @@ func TestPoolReleaseWithTransactions(t *testing.T) {
|
|||
t.Fatalf("Unable to acquire connection: %v", err)
|
||||
}
|
||||
mustExec(t, conn, "begin")
|
||||
if conn.TxStatus != 'T' {
|
||||
t.Fatalf("Expected txStatus to be 'T', instead it was '%c'", conn.TxStatus)
|
||||
if conn.TxStatus() != 'T' {
|
||||
t.Fatalf("Expected txStatus to be 'T', instead it was '%c'", conn.TxStatus())
|
||||
}
|
||||
|
||||
pool.Release(conn)
|
||||
|
||||
if conn.TxStatus != 'I' {
|
||||
t.Fatalf("Expected release to rollback uncommitted transaction, but it did not: '%c'", conn.TxStatus)
|
||||
if conn.TxStatus() != 'I' {
|
||||
t.Fatalf("Expected release to rollback uncommitted transaction, but it did not: '%c'", conn.TxStatus())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
package pgx
|
||||
|
||||
// This file contains methods that expose internal pgx state to tests.
|
||||
|
||||
func (c *Conn) TxStatus() byte {
|
||||
return c.txStatus
|
||||
}
|
Loading…
Reference in New Issue