Open a partition using optional sibling-shared execution state. The default implementation ignores the additional state and delegates to [`Self::open`].
(&self, args: OpenArgs)
| 254 | /// The default implementation ignores the additional state and delegates to |
| 255 | /// [`Self::open`]. |
| 256 | fn open_with_args(&self, args: OpenArgs) -> Result<SendableRecordBatchStream> { |
| 257 | self.open(args.partition, args.context) |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /// Arguments for [`DataSource::open_with_args`] |