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