(self)
| 3966 | ) |
| 3967 | |
| 3968 | def test_not_ilike(self): |
| 3969 | self.assert_compile( |
| 3970 | column("x").not_ilike("y"), |
| 3971 | "lower(x) NOT LIKE lower(:x_1)", |
| 3972 | checkparams={"x_1": "y"}, |
| 3973 | ) |
| 3974 | |
| 3975 | def test_not_ilike_escape(self): |
| 3976 | self.assert_compile( |
nothing calls this directly
no test coverage detected