()
| 955 | return stmt |
| 956 | |
| 957 | def two(): |
| 958 | inner = one().subquery() |
| 959 | |
| 960 | stmt = select(table_b.c.a, inner.c.a, inner.c.b).select_from( |
| 961 | table_b.join(inner, table_b.c.b == inner.c.b) |
| 962 | ) |
| 963 | |
| 964 | return stmt |
| 965 | |
| 966 | def three(): |
| 967 | a1 = table_a.alias() |
nothing calls this directly
no test coverage detected