(self)
| 3074 | ) |
| 3075 | |
| 3076 | def test_like_10(self): |
| 3077 | self.assert_compile( |
| 3078 | self.table1.c.name.ilike("%something%"), |
| 3079 | "mytable.name ILIKE %(name_1)s", |
| 3080 | dialect=postgresql.dialect(), |
| 3081 | ) |
| 3082 | |
| 3083 | def test_like_11(self): |
| 3084 | self.assert_compile( |
nothing calls this directly
no test coverage detected