(self, fn, string, params)
| 1700 | (lambda t: func.power(t.c.a, t.c.b), "power(t.a, t.b)", {}), |
| 1701 | ) |
| 1702 | def test_simple_compile(self, fn, string, params): |
| 1703 | t = table( |
| 1704 | "t", |
| 1705 | column("a", Integer), |
| 1706 | column("b", Integer), |
| 1707 | column("c", String), |
| 1708 | column("d", String), |
| 1709 | ) |
| 1710 | expr = resolve_lambda(fn, t=t) |
| 1711 | self.assert_compile(expr, string, params) |
| 1712 | |
| 1713 | |
| 1714 | class SequenceTest(fixtures.TestBase, AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected