()
| 1035 | return stmt |
| 1036 | |
| 1037 | def two(): |
| 1038 | inner = one().subquery() |
| 1039 | |
| 1040 | stmt = select(table_b.c.a, inner.c.a, inner.c.b).select_from( |
| 1041 | table_b.join(inner, table_b.c.b == inner.c.b) |
| 1042 | ) |
| 1043 | |
| 1044 | return stmt |
| 1045 | |
| 1046 | def three(): |
| 1047 | a1 = table_a.alias() |
nothing calls this directly
no test coverage detected