(self)
| 3205 | table1 = table("mytable", column("myid", String), column("name", String)) |
| 3206 | |
| 3207 | def test_like_1(self): |
| 3208 | self.assert_compile( |
| 3209 | self.table1.c.myid.like("somstr"), "mytable.myid LIKE :myid_1" |
| 3210 | ) |
| 3211 | |
| 3212 | def test_like_2(self): |
| 3213 | self.assert_compile( |
nothing calls this directly
no test coverage detected