(self)
| 3014 | table1 = table("mytable", column("myid", Integer), column("name", String)) |
| 3015 | |
| 3016 | def test_like_1(self): |
| 3017 | self.assert_compile( |
| 3018 | self.table1.c.myid.like("somstr"), "mytable.myid LIKE :myid_1" |
| 3019 | ) |
| 3020 | |
| 3021 | def test_like_2(self): |
| 3022 | self.assert_compile( |
nothing calls this directly
no test coverage detected