Create per execution state to share across sibling instances of this data source during one execution. Returns `None` (the default) if this data source has no sibling-shared execution state.
(&self)
| 246 | /// Returns `None` (the default) if this data source has |
| 247 | /// no sibling-shared execution state. |
| 248 | fn create_sibling_state(&self) -> Option<Arc<dyn Any + Send + Sync>> { |
| 249 | None |
| 250 | } |
| 251 | |
| 252 | /// Open a partition using optional sibling-shared execution state. |
| 253 | /// |