(self)
| 2332 | ) |
| 2333 | |
| 2334 | def test_in_8(self): |
| 2335 | self.assert_compile( |
| 2336 | self.table1.c.myid.in_(["a", literal("b")]), |
| 2337 | "mytable.myid IN (:myid_1, :param_1)", |
| 2338 | ) |
| 2339 | |
| 2340 | def test_in_9(self): |
| 2341 | self.assert_compile( |
nothing calls this directly
no test coverage detected