(self)
| 3030 | ) |
| 3031 | |
| 3032 | def test_like_quote_escape(self): |
| 3033 | self.assert_compile( |
| 3034 | self.table1.c.myid.like("somstr", escape="'"), |
| 3035 | "mytable.myid LIKE :myid_1 ESCAPE ''''", |
| 3036 | ) |
| 3037 | |
| 3038 | def test_like_4(self): |
| 3039 | self.assert_compile( |
nothing calls this directly
no test coverage detected