(self)
| 3210 | ) |
| 3211 | |
| 3212 | def test_like_2(self): |
| 3213 | self.assert_compile( |
| 3214 | ~self.table1.c.myid.like("somstr"), "mytable.myid NOT LIKE :myid_1" |
| 3215 | ) |
| 3216 | |
| 3217 | def test_like_3(self): |
| 3218 | self.assert_compile( |
nothing calls this directly
no test coverage detected