NewAggInAggError creates an error for the case when an aggregate function is contained within another aggregate function.
()
| 709 | // NewAggInAggError creates an error for the case when an aggregate function is |
| 710 | // contained within another aggregate function. |
| 711 | func NewAggInAggError() error { |
| 712 | return pgerror.Newf(pgcode.Grouping, "aggregate function calls cannot be nested") |
| 713 | } |
| 714 | |
| 715 | // NewInvalidNestedSRFError creates a rejection for a nested SRF. |
| 716 | func NewInvalidNestedSRFError(context string) error { |
no test coverage detected