(self)
| 2320 | ) |
| 2321 | |
| 2322 | def test_prefix_dialect_specific(self): |
| 2323 | self.assert_compile( |
| 2324 | table1.select() |
| 2325 | .prefix_with("SQL_CALC_FOUND_ROWS", dialect="sqlite") |
| 2326 | .prefix_with("SQL_SOME_WEIRD_MYSQL_THING", dialect="mysql"), |
| 2327 | "SELECT SQL_SOME_WEIRD_MYSQL_THING " |
| 2328 | "mytable.myid, mytable.name, mytable.description FROM mytable", |
| 2329 | dialect=mysql.dialect(), |
| 2330 | ) |
| 2331 | |
| 2332 | def test_collate(self): |
| 2333 | # columns clause |
nothing calls this directly
no test coverage detected