(self)
| 3441 | ) |
| 3442 | |
| 3443 | def test_regexp_match(self): |
| 3444 | self.assert_compile( |
| 3445 | self.table.c.myid.regexp_match("pattern"), |
| 3446 | "mytable.myid <regexp> :myid_1", |
| 3447 | checkparams={"myid_1": "pattern"}, |
| 3448 | ) |
| 3449 | |
| 3450 | def test_regexp_match_column(self): |
| 3451 | self.assert_compile( |
nothing calls this directly
no test coverage detected