(self, attributes: Dict[Any, Any])
| 1496 | self.get_global_criteria(compile_state.global_attributes) |
| 1497 | |
| 1498 | def get_global_criteria(self, attributes: Dict[Any, Any]) -> None: |
| 1499 | for mp in self._all_mappers(): |
| 1500 | load_criteria = attributes.setdefault( |
| 1501 | ("additional_entity_criteria", mp), [] |
| 1502 | ) |
| 1503 | |
| 1504 | load_criteria.append(self) |
| 1505 | |
| 1506 | |
| 1507 | inspection._inspects(AliasedClass)(lambda target: target._aliased_insp) |
no test coverage detected