(self)
| 3054 | ) |
| 3055 | |
| 3056 | def test_like_7(self): |
| 3057 | self.assert_compile( |
| 3058 | self.table1.c.myid.ilike("somstr", escape="\\"), |
| 3059 | "mytable.myid ILIKE %(myid_1)s ESCAPE '\\\\'", |
| 3060 | dialect=postgresql.dialect(), |
| 3061 | ) |
| 3062 | |
| 3063 | def test_like_8(self): |
| 3064 | self.assert_compile( |
nothing calls this directly
no test coverage detected