(self)
| 3866 | ) |
| 3867 | |
| 3868 | def test_icontains_text(self): |
| 3869 | self.assert_compile( |
| 3870 | column("x").icontains(text("y")), |
| 3871 | "lower(x) LIKE '%' || lower(y) || '%'", |
| 3872 | checkparams={}, |
| 3873 | ) |
| 3874 | |
| 3875 | def test_icontains_concat(self): |
| 3876 | self.assert_compile( |
nothing calls this directly
no test coverage detected