(self)
| 2326 | ) |
| 2327 | |
| 2328 | def test_in_7(self): |
| 2329 | self.assert_compile( |
| 2330 | self.table1.c.myid.in_([literal("a"), literal("b")]), |
| 2331 | "mytable.myid IN (:param_1, :param_2)", |
| 2332 | ) |
| 2333 | |
| 2334 | def test_in_8(self): |
| 2335 | self.assert_compile( |
nothing calls this directly
no test coverage detected