(self)
| 3142 | table1 = table("mytable", column("myid", Integer), column("name", String)) |
| 3143 | |
| 3144 | def test_match_1(self): |
| 3145 | self.assert_compile( |
| 3146 | self.table1.c.myid.match("somstr"), |
| 3147 | "mytable.myid MATCH ?", |
| 3148 | dialect=sqlite.dialect(), |
| 3149 | ) |
| 3150 | |
| 3151 | def test_match_2(self): |
| 3152 | self.assert_compile( |
nothing calls this directly
no test coverage detected