(self, stmt)
| 7478 | ) |
| 7479 | |
| 7480 | def _assert_from_uncorrelated(self, stmt): |
| 7481 | self.assert_compile( |
| 7482 | stmt, |
| 7483 | "SELECT t2.a, anon_1.a AS a_1 FROM t2, " |
| 7484 | "(SELECT t1.a AS a FROM t1, t2 WHERE t1.a = t2.a) AS anon_1", |
| 7485 | ) |
| 7486 | |
| 7487 | def _assert_from_all_uncorrelated(self, stmt): |
| 7488 | self.assert_compile( |
no test coverage detected