(self)
| 970 | self._test_exception(stmt, "foobar") |
| 971 | |
| 972 | def test_asc(self): |
| 973 | stmt = select(table1.c.myid).order_by(asc("name"), "description") |
| 974 | self.assert_compile( |
| 975 | stmt, |
| 976 | "SELECT mytable.myid FROM mytable " |
| 977 | "ORDER BY mytable.name ASC, mytable.description", |
| 978 | ) |
| 979 | |
| 980 | def test_group_by_subquery(self): |
| 981 | stmt = select(table1).alias() |
nothing calls this directly
no test coverage detected