(self)
| 1538 | ) |
| 1539 | |
| 1540 | def test_four(self): |
| 1541 | x = column("x") |
| 1542 | self.assert_compile( |
| 1543 | and_(or_(x == 5), or_(x == 7)), "x = :x_1 AND x = :x_2" |
| 1544 | ) |
| 1545 | |
| 1546 | def test_five(self): |
| 1547 | x = column("x") |
nothing calls this directly
no test coverage detected