MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / _compile_qualify

Function _compile_qualify

examples/syntax_extensions/qualify.py:65–67  ·  view source on GitHub ↗

a compiles extension that delivers the SQL text for Qualify

(element, compiler, **kw)

Source from the content-addressed store, hash-verified

63
64@compiles(Qualify)
65def _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)}"

Callers

nothing calls this directly

Calls 1

processMethod · 0.45

Tested by

no test coverage detected