(self)
| 3221 | ) |
| 3222 | |
| 3223 | def test_like_quote_escape(self): |
| 3224 | self.assert_compile( |
| 3225 | self.table1.c.myid.like("somstr", escape="'"), |
| 3226 | "mytable.myid LIKE :myid_1 ESCAPE ''''", |
| 3227 | ) |
| 3228 | |
| 3229 | def test_like_4(self): |
| 3230 | self.assert_compile( |
nothing calls this directly
no test coverage detected