Conn is an acquired *pgx.Conn from a Pool.
| 10 | |
| 11 | // Conn is an acquired *pgx.Conn from a Pool. |
| 12 | type Conn struct { |
| 13 | res *puddle.Resource[*connResource] |
| 14 | p *Pool |
| 15 | } |
| 16 | |
| 17 | // Release returns c to the pool it was acquired from. Once Release has been called, other methods must not be called. |
| 18 | // However, it is safe to call Release multiple times. Subsequent calls after the first will be ignored. |
nothing calls this directly
no outgoing calls
no test coverage detected