(self)
| 2344 | ) |
| 2345 | |
| 2346 | def test_prefix_dialect_specific(self): |
| 2347 | self.assert_compile( |
| 2348 | table1.select() |
| 2349 | .prefix_with("SQL_CALC_FOUND_ROWS", dialect="sqlite") |
| 2350 | .prefix_with("SQL_SOME_WEIRD_MYSQL_THING", dialect="mysql"), |
| 2351 | "SELECT SQL_SOME_WEIRD_MYSQL_THING " |
| 2352 | "mytable.myid, mytable.name, mytable.description FROM mytable", |
| 2353 | dialect=mysql.dialect(), |
| 2354 | ) |
| 2355 | |
| 2356 | def test_collate(self): |
| 2357 | # columns clause |
nothing calls this directly
no test coverage detected