(self)
| 3347 | ) |
| 3348 | |
| 3349 | def test_match_3(self): |
| 3350 | self.assert_compile( |
| 3351 | self.table1.c.myid.match("somstr"), |
| 3352 | "CONTAINS (mytable.myid, :myid_1)", |
| 3353 | dialect=mssql.dialect(), |
| 3354 | ) |
| 3355 | |
| 3356 | def test_match_4(self): |
| 3357 | self.assert_compile( |
nothing calls this directly
no test coverage detected