Called by Query for the purposes of constructing a SQL statement. Each MapperProperty associated with the target mapper processes the statement referenced by the query context, adding columns and/or criterion as appropriate.
(
self,
context: _ORMCompileState,
query_entity: _MapperEntity,
path: _AbstractEntityRegistry,
adapter: Optional[ORMAdapter],
**kwargs: Any,
)
| 571 | return {} |
| 572 | |
| 573 | def setup( |
| 574 | self, |
| 575 | context: _ORMCompileState, |
| 576 | query_entity: _MapperEntity, |
| 577 | path: _AbstractEntityRegistry, |
| 578 | adapter: Optional[ORMAdapter], |
| 579 | **kwargs: Any, |
| 580 | ) -> None: |
| 581 | """Called by Query for the purposes of constructing a SQL statement. |
| 582 | |
| 583 | Each MapperProperty associated with the target mapper processes the |
| 584 | statement referenced by the query context, adding columns and/or |
| 585 | criterion as appropriate. |
| 586 | |
| 587 | """ |
| 588 | |
| 589 | def create_row_processor( |
| 590 | self, |
no outgoing calls
no test coverage detected