a compiles extension that delivers the SQL text for Qualify
(element, compiler, **kw)
| 63 | |
| 64 | @compiles(Qualify) |
| 65 | def _compile_qualify(element, compiler, **kw): |
| 66 | """a compiles extension that delivers the SQL text for Qualify""" |
| 67 | return f"QUALIFY {compiler.process(element.predicate, **kw)}" |