(ctx context.Context, migrations []string)
| 111 | } |
| 112 | |
| 113 | func (c *CachedAnalyzer) EnsureConn(ctx context.Context, migrations []string) error { |
| 114 | return c.a.EnsureConn(ctx, migrations) |
| 115 | } |
| 116 | |
| 117 | func (c *CachedAnalyzer) GetColumnNames(ctx context.Context, query string) ([]string, error) { |
| 118 | return c.a.GetColumnNames(ctx, query) |
nothing calls this directly
no test coverage detected