(self)
| 3061 | ) |
| 3062 | |
| 3063 | def test_like_8(self): |
| 3064 | self.assert_compile( |
| 3065 | ~self.table1.c.myid.ilike("somstr", escape="\\"), |
| 3066 | "mytable.myid NOT ILIKE %(myid_1)s ESCAPE '\\\\'", |
| 3067 | dialect=postgresql.dialect(), |
| 3068 | ) |
| 3069 | |
| 3070 | def test_like_9(self): |
| 3071 | self.assert_compile( |
nothing calls this directly
no test coverage detected