(self)
| 7601 | ) |
| 7602 | |
| 7603 | def test_correlate_except_empty(self): |
| 7604 | t1, t2, s1 = self._fixture() |
| 7605 | self._assert_where_all_correlated( |
| 7606 | select(t1, t2).where( |
| 7607 | t2.c.a == s1.correlate_except().scalar_subquery() |
| 7608 | ) |
| 7609 | ) |
| 7610 | |
| 7611 | def test_correlate_except_having(self): |
| 7612 | t1, t2, s1 = self._fixture() |
nothing calls this directly
no test coverage detected