| 171 | } |
| 172 | |
| 173 | type pgxConn struct { |
| 174 | c *pgx.Conn |
| 175 | } |
| 176 | |
| 177 | func (p *pgxConn) Prepare(ctx context.Context, name, query string) error { |
| 178 | _, err := p.c.Prepare(ctx, name, query) |
nothing calls this directly
no outgoing calls
no test coverage detected