(self)
| 7425 | ) |
| 7426 | |
| 7427 | def _fixture(self): |
| 7428 | t1 = table("t1", column("a")) |
| 7429 | t2 = table("t2", column("a")) |
| 7430 | return t1, t2, select(t1).where(t1.c.a == t2.c.a) |
| 7431 | |
| 7432 | def _assert_where_correlated(self, stmt): |
| 7433 | self.assert_compile( |
no test coverage detected