(self)
| 3149 | ) |
| 3150 | |
| 3151 | def test_match_2(self): |
| 3152 | self.assert_compile( |
| 3153 | self.table1.c.myid.match("somstr"), |
| 3154 | "MATCH (mytable.myid) AGAINST (%s IN BOOLEAN MODE)", |
| 3155 | dialect=mysql.dialect(), |
| 3156 | ) |
| 3157 | |
| 3158 | def test_match_3(self): |
| 3159 | self.assert_compile( |
nothing calls this directly
no test coverage detected