()
| 981 | return stmt |
| 982 | |
| 983 | def five(): |
| 984 | stmt = select(table_a.c.a).cte(recursive=True, nesting=True) |
| 985 | stmt = stmt.union(select(stmt.c.a + 1).where(stmt.c.a < 10)) |
| 986 | return stmt |
| 987 | |
| 988 | return [one(), one_diff(), two(), three(), four(), five()] |
| 989 |