(self)
| 3163 | ) |
| 3164 | |
| 3165 | def test_match_4(self): |
| 3166 | self.assert_compile( |
| 3167 | self.table1.c.myid.match("somstr"), |
| 3168 | "mytable.myid @@ plainto_tsquery(%(myid_1)s)", |
| 3169 | dialect=postgresql.dialect(), |
| 3170 | ) |
| 3171 | |
| 3172 | def test_match_5(self): |
| 3173 | self.assert_compile( |
nothing calls this directly
no test coverage detected