getColumnNames prepares the query and returns the column names from the result
(ctx context.Context, query string)
| 336 | |
| 337 | // getColumnNames prepares the query and returns the column names from the result |
| 338 | func (e *Expander) getColumnNames(ctx context.Context, query string) ([]string, error) { |
| 339 | return e.colGetter.GetColumnNames(ctx, query) |
| 340 | } |
| 341 | |
| 342 | // countStarsInList counts the number of * expressions in a target list |
| 343 | func countStarsInList(targets *ast.List) int { |
no test coverage detected