b63370e5d5
- pgx.Conn embeds base.PgConn privately - Add pgx.Conn.ParameterStatus
8 lines
146 B
Go
8 lines
146 B
Go
package pgx
|
|
|
|
// This file contains methods that expose internal pgx state to tests.
|
|
|
|
func (c *Conn) TxStatus() byte {
|
|
return c.pgConn.TxStatus
|
|
}
|