(self)
| 655 | ) |
| 656 | |
| 657 | def test_non_functions(self): |
| 658 | expr = func.cast("foo", Integer) |
| 659 | self.assert_compile(expr, "CAST(:param_1 AS INTEGER)") |
| 660 | |
| 661 | expr = func.extract("year", datetime.date(2010, 12, 5)) |
| 662 | self.assert_compile(expr, "EXTRACT(year FROM :param_1)") |
| 663 | |
| 664 | def test_select_method_one(self): |
| 665 | expr = func.rows("foo") |
nothing calls this directly
no test coverage detected