(self, expr, expected)
| 477 | argnames="expr, expected", |
| 478 | ) |
| 479 | def test_other_exprs(self, expr, expected): |
| 480 | t = table("t", column("q", Integer), column("p", Integer)) |
| 481 | expr = resolve_lambda(expr, p=t.c.p, q=t.c.q) |
| 482 | |
| 483 | self.assert_compile(expr, expected) |
| 484 | |
| 485 | @testing.combinations( |
| 486 | operators.add, |
nothing calls this directly
no test coverage detected