(self)
| 3215 | ) |
| 3216 | |
| 3217 | def test_like_3(self): |
| 3218 | self.assert_compile( |
| 3219 | self.table1.c.myid.like("somstr", escape="\\"), |
| 3220 | "mytable.myid LIKE :myid_1 ESCAPE '\\'", |
| 3221 | ) |
| 3222 | |
| 3223 | def test_like_quote_escape(self): |
| 3224 | self.assert_compile( |
nothing calls this directly
no test coverage detected