()
| 2580 | session = fixture_session() |
| 2581 | |
| 2582 | def go(): |
| 2583 | statement = ( |
| 2584 | select(A) |
| 2585 | .options( |
| 2586 | selectinload(A.bs, chunksize=3).selectinload( |
| 2587 | B.cs, chunksize=4 |
| 2588 | ) |
| 2589 | ) |
| 2590 | .order_by(A.id) |
| 2591 | ) |
| 2592 | |
| 2593 | session.scalars(statement).all() |
| 2594 | |
| 2595 | self.assert_sql_execution( |
| 2596 | testing.db, |
nothing calls this directly
no test coverage detected