(client dbmanager.Client, db config.Database)
| 34 | } |
| 35 | |
| 36 | func New(client dbmanager.Client, db config.Database) *Analyzer { |
| 37 | return &Analyzer{ |
| 38 | db: db, |
| 39 | dbg: opts.DebugFromEnv(), |
| 40 | client: client, |
| 41 | replacer: shfmt.NewReplacer(nil), |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | const columnQuery = ` |
| 46 | SELECT |
nothing calls this directly
no test coverage detected