(ctx context.Context, query string)
| 19 | // ColumnGetter retrieves column names for a query by preparing it against a database. |
| 20 | type ColumnGetter interface { |
| 21 | GetColumnNames(ctx context.Context, query string) ([]string, error) |
| 22 | } |
| 23 | |
| 24 | // Expander expands SELECT * and RETURNING * queries by replacing * with explicit column names |
no outgoing calls
no test coverage detected