(self)
| 3380 | ) |
| 3381 | |
| 3382 | def test_boolean_inversion_mysql(self): |
| 3383 | # because mysql doesn't have native boolean |
| 3384 | self.assert_compile( |
| 3385 | ~self.table1.c.myid.match("somstr"), |
| 3386 | "NOT MATCH (mytable.myid) AGAINST (%s IN BOOLEAN MODE)", |
| 3387 | dialect=mysql.dialect(), |
| 3388 | ) |
| 3389 | |
| 3390 | def test_boolean_inversion_mssql(self): |
| 3391 | # because mssql doesn't have native boolean |
nothing calls this directly
no test coverage detected