(self)
| 3333 | table1 = table("mytable", column("myid", String), column("name", String)) |
| 3334 | |
| 3335 | def test_match_1(self): |
| 3336 | self.assert_compile( |
| 3337 | self.table1.c.myid.match("somstr"), |
| 3338 | "mytable.myid MATCH ?", |
| 3339 | dialect=sqlite.dialect(), |
| 3340 | ) |
| 3341 | |
| 3342 | def test_match_2(self): |
| 3343 | self.assert_compile( |
nothing calls this directly
no test coverage detected