(self)
| 1458 | return d |
| 1459 | |
| 1460 | def test_one(self): |
| 1461 | c = column("x", Boolean) |
| 1462 | self.assert_compile( |
| 1463 | select(c).where(c), |
| 1464 | "SELECT x WHERE x", |
| 1465 | dialect=self._dialect(True), |
| 1466 | ) |
| 1467 | |
| 1468 | def test_two_a(self): |
| 1469 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected