(self)
| 3497 | ) |
| 3498 | |
| 3499 | def test_regexp_replace(self): |
| 3500 | self.assert_compile( |
| 3501 | self.table.c.myid.regexp_replace("pattern", "replacement"), |
| 3502 | "<regexp replace>(mytable.myid, :myid_1, :myid_2)", |
| 3503 | checkparams={"myid_1": "pattern", "myid_2": "replacement"}, |
| 3504 | ) |
| 3505 | |
| 3506 | def test_regexp_replace_column(self): |
| 3507 | self.assert_compile( |
nothing calls this directly
no test coverage detected