(self)
| 2314 | ) |
| 2315 | |
| 2316 | def test_in_5(self): |
| 2317 | self.assert_compile( |
| 2318 | self.table1.c.myid.in_([literal("a")]), |
| 2319 | "mytable.myid IN (:param_1)", |
| 2320 | ) |
| 2321 | |
| 2322 | def test_in_6(self): |
| 2323 | self.assert_compile( |
nothing calls this directly
no test coverage detected