(self)
| 1378 | ) |
| 1379 | |
| 1380 | def test_five_b(self): |
| 1381 | c = column("x", Boolean) |
| 1382 | self.assert_compile( |
| 1383 | select(c).having(c), |
| 1384 | "SELECT x HAVING x = 1", |
| 1385 | dialect=self._dialect(False), |
| 1386 | ) |
| 1387 | |
| 1388 | def test_six(self): |
| 1389 | self.assert_compile( |
nothing calls this directly
no test coverage detected