(self)
| 2159 | ) |
| 2160 | |
| 2161 | def test_in_7(self): |
| 2162 | self.assert_compile( |
| 2163 | self.table1.c.myid.in_([literal("a"), literal("b")]), |
| 2164 | "mytable.myid IN (:param_1, :param_2)", |
| 2165 | ) |
| 2166 | |
| 2167 | def test_in_8(self): |
| 2168 | self.assert_compile( |
nothing calls this directly
no test coverage detected