(self, withingroup, **kwargs)
| 3026 | ) |
| 3027 | |
| 3028 | def visit_withingroup(self, withingroup, **kwargs): |
| 3029 | return "%s WITHIN GROUP (ORDER BY %s)" % ( |
| 3030 | withingroup.element._compiler_dispatch(self, **kwargs), |
| 3031 | withingroup.order_by._compiler_dispatch(self, **kwargs), |
| 3032 | ) |
| 3033 | |
| 3034 | def visit_funcfilter(self, funcfilter, **kwargs): |
| 3035 | return "%s FILTER (WHERE %s)" % ( |
no test coverage detected