case insensitive contains method
(self)
| 3734 | ) |
| 3735 | |
| 3736 | def test_icontains(self): |
| 3737 | """ |
| 3738 | case insensitive contains method |
| 3739 | """ |
| 3740 | self.assert_compile( |
| 3741 | column("x").icontains("y"), |
| 3742 | "lower(x) LIKE '%' || lower(:x_1) || '%'", |
| 3743 | checkparams={"x_1": "y"}, |
| 3744 | ) |
| 3745 | |
| 3746 | def test_icontains_pg(self): |
| 3747 | """ |
nothing calls this directly
no test coverage detected