()
| 207 | } |
| 208 | |
| 209 | func (c *pconn) close() error { |
| 210 | c.stopAckWorkers() |
| 211 | c.wg.Wait() |
| 212 | if c.pCaller != nil { |
| 213 | c.pCaller.Close() |
| 214 | } |
| 215 | return nil |
| 216 | } |
| 217 | |
| 218 | // Prepare implements the driver.Conn.Prepare method. |
| 219 | func (c *conn) Prepare(query string) (driver.Stmt, error) { |
no test coverage detected