(self)
| 3772 | ) |
| 3773 | |
| 3774 | def test_not_ilike(self): |
| 3775 | self.assert_compile( |
| 3776 | column("x").not_ilike("y"), |
| 3777 | "lower(x) NOT LIKE lower(:x_1)", |
| 3778 | checkparams={"x_1": "y"}, |
| 3779 | ) |
| 3780 | |
| 3781 | def test_not_ilike_escape(self): |
| 3782 | self.assert_compile( |
nothing calls this directly
no test coverage detected