(self)
| 3354 | ) |
| 3355 | |
| 3356 | def test_match_4(self): |
| 3357 | self.assert_compile( |
| 3358 | self.table1.c.myid.match("somstr"), |
| 3359 | "mytable.myid @@ plainto_tsquery(%(myid_1)s::VARCHAR)", |
| 3360 | dialect=postgresql.dialect(), |
| 3361 | ) |
| 3362 | |
| 3363 | def test_match_5(self): |
| 3364 | self.assert_compile( |
nothing calls this directly
no test coverage detected