MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / get_cte_preamble

Method get_cte_preamble

lib/sqlalchemy/sql/compiler.py:5219–5223  ·  view source on GitHub ↗
(self, recursive)

Source from the content-addressed store, hash-verified

5217 return cte_text
5218
5219 def get_cte_preamble(self, recursive):
5220 if recursive:
5221 return "WITH RECURSIVE"
5222 else:
5223 return "WITH"
5224
5225 def get_select_precolumns(self, select: Select[Any], **kw: Any) -> str:
5226 """Called when building a ``SELECT`` statement, position is just

Callers 1

_render_cte_clauseMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected