(self)
| 7609 | ) |
| 7610 | |
| 7611 | def test_correlate_except_having(self): |
| 7612 | t1, t2, s1 = self._fixture() |
| 7613 | self._assert_having_correlated( |
| 7614 | select(t2).having( |
| 7615 | t2.c.a == s1.correlate_except(t1).scalar_subquery() |
| 7616 | ) |
| 7617 | ) |
| 7618 | |
| 7619 | def test_correlate_auto_where(self): |
| 7620 | t1, t2, s1 = self._fixture() |
nothing calls this directly
no test coverage detected