(self)
| 1572 | ) |
| 1573 | |
| 1574 | def test_eight(self): |
| 1575 | x = column("x") |
| 1576 | self.assert_compile( |
| 1577 | or_(false(), x == 7, false(), x == 9), "x = :x_1 OR x = :x_2" |
| 1578 | ) |
| 1579 | |
| 1580 | def test_nine(self): |
| 1581 | x = column("x") |
nothing calls this directly
no test coverage detected