(self)
| 4277 | ) |
| 4278 | |
| 4279 | def test_endswith(self): |
| 4280 | self.assert_compile( |
| 4281 | column("x").endswith("y"), |
| 4282 | "x LIKE '%' || :x_1", |
| 4283 | checkparams={"x_1": "y"}, |
| 4284 | ) |
| 4285 | |
| 4286 | def test_endswith_encoded(self): |
| 4287 | self.assert_compile( |
nothing calls this directly
no test coverage detected