Method
execute
(
&self,
_partition: usize,
_context: Arc<datafusion_execution::TaskContext>,
)
Source from the content-addressed store, hash-verified
| 201 | } |
| 202 | |
| 203 | fn execute( |
| 204 | &self, |
| 205 | _partition: usize, |
| 206 | _context: Arc<datafusion_execution::TaskContext>, |
| 207 | ) -> Result<datafusion_execution::SendableRecordBatchStream> { |
| 208 | Ok(Box::pin(AsyncTestRecordBatchStream { |
| 209 | batch_request: self.batch_request.clone(), |
| 210 | batch_receiver: self.batch_receiver.resubscribe(), |
| 211 | })) |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | impl datafusion_physical_plan::DisplayAs for AsyncTestExecutionPlan { |
Callers
nothing calls this directly
Tested by
no test coverage detected