Lazily return the chunks split in this shard (if available)
(self)
| 257 | |
| 258 | @property |
| 259 | def chunk_splits(self): |
| 260 | """Lazily return the chunks split in this shard (if available)""" |
| 261 | if not self._chunk_splits: |
| 262 | self._find_sharding_info() |
| 263 | return self._chunk_splits |
| 264 | |
| 265 | |
| 266 | def next(self): |
nothing calls this directly
no test coverage detected