(self)
| 1522 | ) |
| 1523 | |
| 1524 | def test_five_a(self): |
| 1525 | c = column("x", Boolean) |
| 1526 | self.assert_compile( |
| 1527 | select(c).having(c), |
| 1528 | "SELECT x HAVING x = 1", |
| 1529 | dialect=self._dialect(False), |
| 1530 | ) |
| 1531 | |
| 1532 | def test_five_b(self): |
| 1533 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected