(self)
| 3340 | ) |
| 3341 | |
| 3342 | def test_match_2(self): |
| 3343 | self.assert_compile( |
| 3344 | self.table1.c.myid.match("somstr"), |
| 3345 | "MATCH (mytable.myid) AGAINST (%s IN BOOLEAN MODE)", |
| 3346 | dialect=mysql.dialect(), |
| 3347 | ) |
| 3348 | |
| 3349 | def test_match_3(self): |
| 3350 | self.assert_compile( |
nothing calls this directly
no test coverage detected