(self)
| 2153 | ) |
| 2154 | |
| 2155 | def test_in_6(self): |
| 2156 | self.assert_compile( |
| 2157 | self.table1.c.myid.in_([literal("a"), "b"]), |
| 2158 | "mytable.myid IN (:param_1, :myid_1)", |
| 2159 | ) |
| 2160 | |
| 2161 | def test_in_7(self): |
| 2162 | self.assert_compile( |
nothing calls this directly
no test coverage detected