MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / get_cte_preamble

Method get_cte_preamble

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

Source from the content-addressed store, hash-verified

5421 return cte_text
5422
5423 def get_cte_preamble(self, recursive):
5424 if recursive:
5425 return "WITH RECURSIVE"
5426 else:
5427 return "WITH"
5428
5429 def get_select_precolumns(self, select: Select[Any], **kw: Any) -> str:
5430 """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