(self)
| 2147 | ) |
| 2148 | |
| 2149 | def test_in_5(self): |
| 2150 | self.assert_compile( |
| 2151 | self.table1.c.myid.in_([literal("a")]), |
| 2152 | "mytable.myid IN (:param_1)", |
| 2153 | ) |
| 2154 | |
| 2155 | def test_in_6(self): |
| 2156 | self.assert_compile( |
nothing calls this directly
no test coverage detected