(self)
| 3751 | ) |
| 3752 | |
| 3753 | def test_not_like(self): |
| 3754 | self.assert_compile( |
| 3755 | column("x").not_like("y"), |
| 3756 | "x NOT LIKE :x_1", |
| 3757 | checkparams={"x_1": "y"}, |
| 3758 | ) |
| 3759 | |
| 3760 | def test_not_like_escape(self): |
| 3761 | self.assert_compile( |
nothing calls this directly
no test coverage detected