(context)
| 208 | |
| 209 | @event.listens_for(s, "do_orm_execute") |
| 210 | def go(context): |
| 211 | for elem in context.user_defined_options: |
| 212 | if isinstance(elem, SetShardOption): |
| 213 | m1.update_execution_options(_sa_shard_id=elem.payload) |
| 214 | |
| 215 | stmt = select(User).options( |
| 216 | loader_opt(User.addresses).options(loader_opt(Address.dingaling)), |
nothing calls this directly
no test coverage detected