()
| 964 | return stmt |
| 965 | |
| 966 | def three(): |
| 967 | a1 = table_a.alias() |
| 968 | a2 = table_a.alias() |
| 969 | ex = exists().where(table_b.c.b == a1.c.a) |
| 970 | |
| 971 | stmt = ( |
| 972 | select(a1.c.a, a2.c.a) |
| 973 | .select_from(a1.join(a2, a1.c.b == a2.c.b)) |
| 974 | .where(ex) |
| 975 | ) |
| 976 | return stmt |
| 977 | |
| 978 | def four(): |
| 979 | stmt = select(table_a.c.a).cte(recursive=True) |
nothing calls this directly
no test coverage detected