(_ context.Context)
| 316 | } |
| 317 | |
| 318 | func (a *Analyzer) Close(_ context.Context) error { |
| 319 | if a.pool != nil { |
| 320 | a.pool.Close() |
| 321 | } |
| 322 | return nil |
| 323 | } |
| 324 | |
| 325 | // SQL queries for schema introspection |
| 326 | const introspectTablesQuery = ` |
nothing calls this directly
no test coverage detected