case insensitive endswith method
(self)
| 4223 | ) |
| 4224 | |
| 4225 | def test_iendswith(self): |
| 4226 | """ |
| 4227 | case insensitive endswith method |
| 4228 | """ |
| 4229 | self.assert_compile( |
| 4230 | column("x").iendswith("y"), |
| 4231 | "lower(x) LIKE '%' || lower(:x_1)", |
| 4232 | checkparams={"x_1": "y"}, |
| 4233 | ) |
| 4234 | |
| 4235 | def test_iendswith_pg(self): |
| 4236 | """ |
nothing calls this directly
no test coverage detected