| 585 | } |
| 586 | |
| 587 | type Stmt struct { |
| 588 | sd *pgconn.StatementDescription |
| 589 | conn *Conn |
| 590 | } |
| 591 | |
| 592 | func (s *Stmt) Close() error { |
| 593 | ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) |
nothing calls this directly
no outgoing calls
no test coverage detected