(self)
| 590 | stmt.filter_by(data="child_data") |
| 591 | |
| 592 | def test_select_tuple_outer(self): |
| 593 | stmt = select(tuple_(table1.c.myid, table1.c.name)) |
| 594 | |
| 595 | assert_raises_message( |
| 596 | exc.CompileError, |
| 597 | r"Most backends don't support SELECTing from a tuple\(\) object. " |
| 598 | "If this is an ORM query, consider using the Bundle object.", |
| 599 | stmt.compile, |
| 600 | ) |
| 601 | |
| 602 | def test_select_tuple_subquery(self): |
| 603 | subq = select( |
nothing calls this directly
no test coverage detected