(self, expr, expected)
| 461 | argnames="expr, expected", |
| 462 | ) |
| 463 | def test_other_exprs(self, expr, expected): |
| 464 | t = table("t", column("q", Integer), column("p", Integer)) |
| 465 | expr = resolve_lambda(expr, p=t.c.p, q=t.c.q) |
| 466 | |
| 467 | self.assert_compile(expr, expected) |
| 468 | |
| 469 | @testing.combinations( |
| 470 | operators.add, |
nothing calls this directly
no test coverage detected