(self)
| 3227 | ) |
| 3228 | |
| 3229 | def test_like_4(self): |
| 3230 | self.assert_compile( |
| 3231 | ~self.table1.c.myid.like("somstr", escape="\\"), |
| 3232 | "mytable.myid NOT LIKE :myid_1 ESCAPE '\\'", |
| 3233 | ) |
| 3234 | |
| 3235 | def test_like_5(self): |
| 3236 | self.assert_compile( |
nothing calls this directly
no test coverage detected