(self)
| 3156 | ) |
| 3157 | |
| 3158 | def test_match_3(self): |
| 3159 | self.assert_compile( |
| 3160 | self.table1.c.myid.match("somstr"), |
| 3161 | "CONTAINS (mytable.myid, :myid_1)", |
| 3162 | dialect=mssql.dialect(), |
| 3163 | ) |
| 3164 | |
| 3165 | def test_match_4(self): |
| 3166 | self.assert_compile( |
nothing calls this directly
no test coverage detected