(self)
| 2431 | ) |
| 2432 | |
| 2433 | def test_in_22(self): |
| 2434 | self.assert_compile( |
| 2435 | self.table1.c.myid.in_( |
| 2436 | text("SELECT myothertable.otherid FROM myothertable") |
| 2437 | ), |
| 2438 | "mytable.myid IN (SELECT myothertable.otherid FROM myothertable)", |
| 2439 | ) |
| 2440 | |
| 2441 | def test_in_24(self): |
| 2442 | self.assert_compile( |
nothing calls this directly
no test coverage detected