(self)
| 3987 | ) |
| 3988 | |
| 3989 | def test_startswith(self): |
| 3990 | self.assert_compile( |
| 3991 | column("x").startswith("y"), |
| 3992 | "x LIKE :x_1 || '%'", |
| 3993 | checkparams={"x_1": "y"}, |
| 3994 | ) |
| 3995 | |
| 3996 | def test_startswith_escape(self): |
| 3997 | self.assert_compile( |
nothing calls this directly
no test coverage detected