case insensitive contains method
(self)
| 3540 | ) |
| 3541 | |
| 3542 | def test_icontains(self): |
| 3543 | """ |
| 3544 | case insensitive contains method |
| 3545 | """ |
| 3546 | self.assert_compile( |
| 3547 | column("x").icontains("y"), |
| 3548 | "lower(x) LIKE '%' || lower(:x_1) || '%'", |
| 3549 | checkparams={"x_1": "y"}, |
| 3550 | ) |
| 3551 | |
| 3552 | def test_icontains_pg(self): |
| 3553 | """ |
nothing calls this directly
no test coverage detected