(self)
| 2171 | ) |
| 2172 | |
| 2173 | def test_in_9(self): |
| 2174 | self.assert_compile( |
| 2175 | self.table1.c.myid.in_([literal(1) + "a"]), |
| 2176 | "mytable.myid IN (:param_1 + :param_2)", |
| 2177 | ) |
| 2178 | |
| 2179 | def test_in_10(self): |
| 2180 | # when non-literal expressions are present we still need to do the |
nothing calls this directly
no test coverage detected