github.com/jackc/pgx/v5.Conn.PgConn (method)

7 uses

	github.com/jackc/pgx/v5 (current package)
		conn.go#L462: func (c *Conn) PgConn() *pgconn.PgConn { return c.pgConn }
		derived_types.go#L244: 	serverVersionStr := c.PgConn().ParameterStatus("server_version")
		tx.go#L193: 		if tx.conn.PgConn().TxStatus() != 'I' {

	github.com/jackc/pgx/v5/pgxpool
		conn.go#L33: 	if conn.IsClosed() || conn.PgConn().IsBusy() || conn.PgConn().TxStatus() != 'I' {
		pool.go#L323: 				case <-conn.PgConn().CleanupDone():

	github.com/jackc/pgx/v5/tracelog
		tracelog.go#L400: 	pgConn := conn.PgConn()