(self, path: PathRegistry)
| 1040 | return self._adjust_for_extra_criteria(context) |
| 1041 | |
| 1042 | def _prepend_path(self, path: PathRegistry) -> Load: |
| 1043 | cloned = self._clone() |
| 1044 | cloned.context = tuple( |
| 1045 | element._prepend_path(path) for element in self.context |
| 1046 | ) |
| 1047 | return cloned |
| 1048 | |
| 1049 | def _adjust_for_extra_criteria(self, context: QueryContext) -> Load: |
| 1050 | """Apply the current bound parameters in a QueryContext to all |
no test coverage detected