(self)
| 2320 | ) |
| 2321 | |
| 2322 | def test_in_6(self): |
| 2323 | self.assert_compile( |
| 2324 | self.table1.c.myid.in_([literal("a"), "b"]), |
| 2325 | "mytable.myid IN (:param_1, :myid_1)", |
| 2326 | ) |
| 2327 | |
| 2328 | def test_in_7(self): |
| 2329 | self.assert_compile( |
nothing calls this directly
no test coverage detected