()
| 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) |