(self)
| 3019 | ) |
| 3020 | |
| 3021 | def test_like_2(self): |
| 3022 | self.assert_compile( |
| 3023 | ~self.table1.c.myid.like("somstr"), "mytable.myid NOT LIKE :myid_1" |
| 3024 | ) |
| 3025 | |
| 3026 | def test_like_3(self): |
| 3027 | self.assert_compile( |
nothing calls this directly
no test coverage detected