(self)
| 4602 | assert not operators.is_comparison(op2) |
| 4603 | |
| 4604 | def test_is_comparison_bool_op(self): |
| 4605 | c = column("x") |
| 4606 | c2 = column("y") |
| 4607 | op1 = c.bool_op("$")(c2).operator |
| 4608 | op2 = c.op("$")(c2).operator |
| 4609 | |
| 4610 | assert operators.is_comparison(op1) |
| 4611 | assert not operators.is_comparison(op2) |
| 4612 | |
| 4613 | @testing.combinations( |
| 4614 | (sqltypes.NULLTYPE,), |
nothing calls this directly
no test coverage detected