(self)
| 3793 | ) |
| 3794 | |
| 3795 | def test_startswith(self): |
| 3796 | self.assert_compile( |
| 3797 | column("x").startswith("y"), |
| 3798 | "x LIKE :x_1 || '%'", |
| 3799 | checkparams={"x_1": "y"}, |
| 3800 | ) |
| 3801 | |
| 3802 | def test_startswith_escape(self): |
| 3803 | self.assert_compile( |
nothing calls this directly
no test coverage detected