mirror of
https://github.com/jackc/pgx.git
synced 2025-04-27 21:25:53 +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
|
|
}
|