(self)
| 3945 | ) |
| 3946 | |
| 3947 | def test_not_like(self): |
| 3948 | self.assert_compile( |
| 3949 | column("x").not_like("y"), |
| 3950 | "x NOT LIKE :x_1", |
| 3951 | checkparams={"x_1": "y"}, |
| 3952 | ) |
| 3953 | |
| 3954 | def test_not_like_escape(self): |
| 3955 | self.assert_compile( |
nothing calls this directly
no test coverage detected