(self, stmt)
| 7437 | ) |
| 7438 | |
| 7439 | def _assert_where_all_correlated(self, stmt): |
| 7440 | self.assert_compile( |
| 7441 | stmt, |
| 7442 | "SELECT t1.a, t2.a AS a_1 FROM t1, t2 WHERE t2.a = " |
| 7443 | "(SELECT t1.a WHERE t1.a = t2.a)", |
| 7444 | ) |
| 7445 | |
| 7446 | # note there's no more "backwards" correlation after |
| 7447 | # we've done #2746 |
no test coverage detected