(self)
| 7219 | ) |
| 7220 | |
| 7221 | def _fixture(self): |
| 7222 | t1 = table("t1", column("a")) |
| 7223 | t2 = table("t2", column("a")) |
| 7224 | return t1, t2, select(t1).where(t1.c.a == t2.c.a) |
| 7225 | |
| 7226 | def _assert_where_correlated(self, stmt): |
| 7227 | self.assert_compile( |
no test coverage detected