(functionName: string)
| 632 | |
| 633 | export class UnsupportedAggregateFunctionError extends GroupByError { |
| 634 | constructor(functionName: string) { |
| 635 | super(`Unsupported aggregate function: ${functionName}`) |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | export class AggregateFunctionNotInSelectError extends GroupByError { |
nothing calls this directly
no outgoing calls
no test coverage detected