(self)
| 3388 | ) |
| 3389 | |
| 3390 | def test_boolean_inversion_mssql(self): |
| 3391 | # because mssql doesn't have native boolean |
| 3392 | self.assert_compile( |
| 3393 | ~self.table1.c.myid.match("somstr"), |
| 3394 | "NOT CONTAINS (mytable.myid, :myid_1)", |
| 3395 | dialect=mssql.dialect(), |
| 3396 | ) |
| 3397 | |
| 3398 | |
| 3399 | class RegexpTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected