(functionName: string)
| 638 | |
| 639 | export class AggregateFunctionNotInSelectError extends GroupByError { |
| 640 | constructor(functionName: string) { |
| 641 | super( |
| 642 | `Aggregate function in HAVING clause must also be in SELECT clause: ${functionName}`, |
| 643 | ) |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | export class UnknownHavingExpressionTypeError extends GroupByError { |
nothing calls this directly
no outgoing calls
no test coverage detected