(self)
| 2165 | ) |
| 2166 | |
| 2167 | def test_in_8(self): |
| 2168 | self.assert_compile( |
| 2169 | self.table1.c.myid.in_(["a", literal("b")]), |
| 2170 | "mytable.myid IN (:myid_1, :param_1)", |
| 2171 | ) |
| 2172 | |
| 2173 | def test_in_9(self): |
| 2174 | self.assert_compile( |
nothing calls this directly
no test coverage detected