(self)
| 426 | ) |
| 427 | |
| 428 | def test_select_tuple_outer(self): |
| 429 | stmt = select(tuple_(table1.c.myid, table1.c.name)) |
| 430 | |
| 431 | assert_raises_message( |
| 432 | exc.CompileError, |
| 433 | r"Most backends don't support SELECTing from a tuple\(\) object. " |
| 434 | "If this is an ORM query, consider using the Bundle object.", |
| 435 | stmt.compile, |
| 436 | ) |
| 437 | |
| 438 | def test_select_tuple_subquery(self): |
| 439 | subq = select( |
nothing calls this directly
no test coverage detected