(self)
| 715 | ) |
| 716 | |
| 717 | def test_non_functions(self): |
| 718 | expr = func.cast("foo", Integer) |
| 719 | self.assert_compile(expr, "CAST(:param_1 AS INTEGER)") |
| 720 | |
| 721 | expr = func.extract("year", datetime.date(2010, 12, 5)) |
| 722 | self.assert_compile(expr, "EXTRACT(year FROM :param_1)") |
| 723 | |
| 724 | def test_select_method_one(self): |
| 725 | expr = func.rows("foo") |
nothing calls this directly
no test coverage detected