()
| 1061 | return stmt |
| 1062 | |
| 1063 | def five(): |
| 1064 | stmt = select(table_a.c.a).cte(recursive=True, nesting=True) |
| 1065 | stmt = stmt.union(select(stmt.c.a + 1).where(stmt.c.a < 10)) |
| 1066 | return stmt |
| 1067 | |
| 1068 | return [one(), one_diff(), two(), three(), four(), five()] |
| 1069 |