MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / four

Method four

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

Source from the content-addressed store, hash-verified

1056 return stmt
1057
1058 def four():
1059 stmt = select(table_a.c.a).cte(recursive=True)
1060 stmt = stmt.union(select(stmt.c.a + 1).where(stmt.c.a < 10))
1061 return stmt
1062
1063 def five():
1064 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