()
| 929 | |
| 930 | def _complex_fixtures(): |
| 931 | def one(): |
| 932 | a1 = table_a.alias() |
| 933 | a2 = table_b_like_a.alias() |
| 934 | |
| 935 | stmt = ( |
| 936 | select(table_a.c.a, a1.c.b, a2.c.b) |
| 937 | .where(table_a.c.b == a1.c.b) |
| 938 | .where(a1.c.b == a2.c.b) |
| 939 | .where(a1.c.a == 5) |
| 940 | ) |
| 941 | |
| 942 | return stmt |
| 943 | |
| 944 | def one_diff(): |
| 945 | a1 = table_b_like_a.alias() |
no test coverage detected