(self)
| 3087 | ) |
| 3088 | |
| 3089 | def test_like_12(self): |
| 3090 | self.assert_compile( |
| 3091 | ~self.table1.c.name.ilike("%something%"), |
| 3092 | "mytable.name NOT ILIKE %(name_1)s", |
| 3093 | dialect=postgresql.dialect(), |
| 3094 | ) |
| 3095 | |
| 3096 | |
| 3097 | class BetweenTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected