(self)
| 3245 | ) |
| 3246 | |
| 3247 | def test_like_7(self): |
| 3248 | self.assert_compile( |
| 3249 | self.table1.c.myid.ilike("somstr", escape="\\"), |
| 3250 | "mytable.myid ILIKE %(myid_1)s::VARCHAR ESCAPE '\\'", |
| 3251 | dialect=postgresql.dialect(), |
| 3252 | ) |
| 3253 | |
| 3254 | def test_like_8(self): |
| 3255 | self.assert_compile( |
nothing calls this directly
no test coverage detected