(self)
| 3189 | ) |
| 3190 | |
| 3191 | def test_boolean_inversion_mysql(self): |
| 3192 | # because mysql doesn't have native boolean |
| 3193 | self.assert_compile( |
| 3194 | ~self.table1.c.myid.match("somstr"), |
| 3195 | "NOT MATCH (mytable.myid) AGAINST (%s IN BOOLEAN MODE)", |
| 3196 | dialect=mysql.dialect(), |
| 3197 | ) |
| 3198 | |
| 3199 | def test_boolean_inversion_mssql(self): |
| 3200 | # because mssql doesn't have native boolean |
nothing calls this directly
no test coverage detected