(self)
| 2264 | ) |
| 2265 | |
| 2266 | def test_in_22(self): |
| 2267 | self.assert_compile( |
| 2268 | self.table1.c.myid.in_( |
| 2269 | text("SELECT myothertable.otherid FROM myothertable") |
| 2270 | ), |
| 2271 | "mytable.myid IN (SELECT myothertable.otherid " |
| 2272 | "FROM myothertable)", |
| 2273 | ) |
| 2274 | |
| 2275 | def test_in_24(self): |
| 2276 | self.assert_compile( |
nothing calls this directly
no test coverage detected