(self)
| 7631 | self._assert_from_uncorrelated(select(t2, s1.alias())) |
| 7632 | |
| 7633 | def test_correlate_auto_having(self): |
| 7634 | t1, t2, s1 = self._fixture() |
| 7635 | self._assert_having_correlated( |
| 7636 | select(t2).having(t2.c.a == s1.scalar_subquery()) |
| 7637 | ) |
| 7638 | |
| 7639 | @testing.combinations(False, None) |
| 7640 | def test_correlate_disabled_where(self, value): |
nothing calls this directly
no test coverage detected