(self)
| 2280 | ) |
| 2281 | |
| 2282 | def test_in_25(self): |
| 2283 | self.assert_compile( |
| 2284 | select( |
| 2285 | self.table1.c.myid.in_( |
| 2286 | select(self.table2.c.otherid).scalar_subquery() |
| 2287 | ) |
| 2288 | ), |
| 2289 | "SELECT mytable.myid IN (SELECT myothertable.otherid " |
| 2290 | "FROM myothertable) AS anon_1 FROM mytable", |
| 2291 | ) |
| 2292 | |
| 2293 | def test_in_26(self): |
| 2294 | self.assert_compile( |
nothing calls this directly
no test coverage detected