(self, attributes: Dict[Any, Any])
| 1514 | self.get_global_criteria(compile_state.global_attributes) |
| 1515 | |
| 1516 | def get_global_criteria(self, attributes: Dict[Any, Any]) -> None: |
| 1517 | for mp in self._all_mappers(): |
| 1518 | load_criteria = attributes.setdefault( |
| 1519 | ("additional_entity_criteria", mp), [] |
| 1520 | ) |
| 1521 | |
| 1522 | load_criteria.append(self) |
| 1523 | |
| 1524 | |
| 1525 | inspection._inspects(AliasedClass)(lambda target: target._aliased_insp) |
no test coverage detected