()
| 1044 | return stmt |
| 1045 | |
| 1046 | def three(): |
| 1047 | a1 = table_a.alias() |
| 1048 | a2 = table_a.alias() |
| 1049 | ex = exists().where(table_b.c.b == a1.c.a) |
| 1050 | |
| 1051 | stmt = ( |
| 1052 | select(a1.c.a, a2.c.a) |
| 1053 | .select_from(a1.join(a2, a1.c.b == a2.c.b)) |
| 1054 | .where(ex) |
| 1055 | ) |
| 1056 | return stmt |
| 1057 | |
| 1058 | def four(): |
| 1059 | stmt = select(table_a.c.a).cte(recursive=True) |
nothing calls this directly
no test coverage detected