(ctx context.Context, query string)
| 115 | } |
| 116 | |
| 117 | func (c *CachedAnalyzer) GetColumnNames(ctx context.Context, query string) ([]string, error) { |
| 118 | return c.a.GetColumnNames(ctx, query) |
| 119 | } |
| 120 | |
| 121 | type Analyzer interface { |
| 122 | Analyze(context.Context, ast.Node, string, []string, *named.ParamSet) (*analysis.Analysis, error) |
nothing calls this directly
no test coverage detected