(self)
| 1370 | ) |
| 1371 | |
| 1372 | def test_five_a(self): |
| 1373 | c = column("x", Boolean) |
| 1374 | self.assert_compile( |
| 1375 | select(c).having(c), |
| 1376 | "SELECT x HAVING x = 1", |
| 1377 | dialect=self._dialect(False), |
| 1378 | ) |
| 1379 | |
| 1380 | def test_five_b(self): |
| 1381 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected