(self, stmt)
| 7506 | ) |
| 7507 | |
| 7508 | def _assert_having_uncorrelated(self, stmt): |
| 7509 | self.assert_compile( |
| 7510 | stmt, |
| 7511 | "SELECT t2.a FROM t2 HAVING t2.a = " |
| 7512 | "(SELECT t1.a FROM t1, t2 WHERE t1.a = t2.a)", |
| 7513 | ) |
| 7514 | |
| 7515 | def _assert_where_single_full_correlated(self, stmt): |
| 7516 | self.assert_compile( |
no test coverage detected