(self)
| 3252 | ) |
| 3253 | |
| 3254 | def test_like_8(self): |
| 3255 | self.assert_compile( |
| 3256 | ~self.table1.c.myid.ilike("somstr", escape="\\"), |
| 3257 | "mytable.myid NOT ILIKE %(myid_1)s::VARCHAR ESCAPE '\\'", |
| 3258 | dialect=postgresql.dialect(), |
| 3259 | ) |
| 3260 | |
| 3261 | def test_like_9(self): |
| 3262 | self.assert_compile( |
nothing calls this directly
no test coverage detected