(self, stmt)
| 7471 | ) |
| 7472 | |
| 7473 | def _assert_having_correlated(self, stmt): |
| 7474 | self.assert_compile( |
| 7475 | stmt, |
| 7476 | "SELECT t2.a FROM t2 HAVING t2.a = " |
| 7477 | "(SELECT t1.a FROM t1 WHERE t1.a = t2.a)", |
| 7478 | ) |
| 7479 | |
| 7480 | def _assert_from_uncorrelated(self, stmt): |
| 7481 | self.assert_compile( |
no test coverage detected