(self)
| 1690 | ) |
| 1691 | |
| 1692 | def test_four(self): |
| 1693 | x = column("x") |
| 1694 | self.assert_compile( |
| 1695 | and_(or_(x == 5), or_(x == 7)), "x = :x_1 AND x = :x_2" |
| 1696 | ) |
| 1697 | |
| 1698 | def test_five(self): |
| 1699 | x = column("x") |
nothing calls this directly
no test coverage detected