mirror of
https://github.com/jackc/pgx.git
synced 2025-05-01 21:19:54 +00:00
8 lines
139 B
Go
8 lines
139 B
Go
package pgx
|
|
|
|
// This file contains methods that expose internal pgx state to tests.
|
|
|
|
func (c *Conn) TxStatus() byte {
|
|
return c.txStatus
|
|
}
|