(self)
| 3170 | ) |
| 3171 | |
| 3172 | def test_match_5(self): |
| 3173 | self.assert_compile( |
| 3174 | self.table1.c.myid.match("somstr"), |
| 3175 | "CONTAINS (mytable.myid, :myid_1)", |
| 3176 | dialect=oracle.dialect(), |
| 3177 | ) |
| 3178 | |
| 3179 | def test_match_is_now_matchtype(self): |
| 3180 | expr = self.table1.c.myid.match("somstr") |
nothing calls this directly
no test coverage detected