(alias: string)
| 624 | |
| 625 | export class NonAggregateExpressionNotInGroupByError extends GroupByError { |
| 626 | constructor(alias: string) { |
| 627 | super( |
| 628 | `Non-aggregate expression '${alias}' in SELECT must also appear in GROUP BY clause`, |
| 629 | ) |
| 630 | } |
| 631 | } |
| 632 | |
| 633 | export class UnsupportedAggregateFunctionError extends GroupByError { |
nothing calls this directly
no outgoing calls
no test coverage detected