(self)
| 3278 | ) |
| 3279 | |
| 3280 | def test_like_12(self): |
| 3281 | self.assert_compile( |
| 3282 | ~self.table1.c.name.ilike("%something%"), |
| 3283 | "mytable.name NOT ILIKE %(name_1)s::VARCHAR", |
| 3284 | dialect=postgresql.dialect(), |
| 3285 | ) |
| 3286 | |
| 3287 | |
| 3288 | class BetweenTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected