(c *mysql.Conn, schemaName string)
| 35 | *server.Handler |
| 36 | provider *catalog.DatabaseProvider |
| 37 | engine *sqle.Engine |
| 38 | newContext func(context.Context, *mysql.Conn, string) (*sql.Context, error) |
| 39 | readOnly bool |
| 40 | } |
| 41 | |
| 42 | func (h *MyHandler) ConnectionClosed(c *mysql.Conn) { |
| 43 | h.provider.Pool().CloseConn(c.ConnectionID) |
| 44 | h.Handler.ConnectionClosed(c) |
| 45 | } |
| 46 |
nothing calls this directly
no test coverage detected