(self, name: Key, index: int)
| 893 | return dep.npartitions == 1 |
| 894 | |
| 895 | def _task(self, name: Key, index: int) -> Task: |
| 896 | kwargs = self.kwargs.copy() |
| 897 | kwargs["result_meta"] = self._meta |
| 898 | return Task( |
| 899 | name, |
| 900 | merge_chunk, |
| 901 | self._blockwise_arg(self.left, index), |
| 902 | self._blockwise_arg(self.right, index), |
| 903 | **kwargs, |
| 904 | ) |
| 905 | |
| 906 | |
| 907 | class JoinRecursive(Expr): |
nothing calls this directly
no test coverage detected