(self)
| 7627 | self._assert_column_correlated(select(t2, s1.scalar_subquery())) |
| 7628 | |
| 7629 | def test_correlate_auto_from(self): |
| 7630 | t1, t2, s1 = self._fixture() |
| 7631 | self._assert_from_uncorrelated(select(t2, s1.alias())) |
| 7632 | |
| 7633 | def test_correlate_auto_having(self): |
| 7634 | t1, t2, s1 = self._fixture() |
nothing calls this directly
no test coverage detected