(self)
| 1530 | ) |
| 1531 | |
| 1532 | def test_five_b(self): |
| 1533 | c = column("x", Boolean) |
| 1534 | self.assert_compile( |
| 1535 | select(c).having(c), |
| 1536 | "SELECT x HAVING x = 1", |
| 1537 | dialect=self._dialect(False), |
| 1538 | ) |
| 1539 | |
| 1540 | def test_six(self): |
| 1541 | self.assert_compile( |
nothing calls this directly
no test coverage detected