(self)
| 2338 | ) |
| 2339 | |
| 2340 | def test_in_9(self): |
| 2341 | self.assert_compile( |
| 2342 | self.table1.c.myid.in_([literal(1) + "a"]), |
| 2343 | "mytable.myid IN (:param_1 + :param_2)", |
| 2344 | ) |
| 2345 | |
| 2346 | def test_in_10(self): |
| 2347 | # when non-literal expressions are present we still need to do the |
nothing calls this directly
no test coverage detected