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

Method four

test/sql/test_compare.py:978–981  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

976 return stmt
977
978 def four():
979 stmt = select(table_a.c.a).cte(recursive=True)
980 stmt = stmt.union(select(stmt.c.a + 1).where(stmt.c.a < 10))
981 return stmt
982
983 def five():
984 stmt = select(table_a.c.a).cte(recursive=True, nesting=True)

Callers

nothing calls this directly

Calls 6

selectFunction · 0.90
LambdaElementClass · 0.90
and_Function · 0.90
cteMethod · 0.45
unionMethod · 0.45
whereMethod · 0.45

Tested by

no test coverage detected