We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c78719c + 6c4960e commit ae8d2bbCopy full SHA for ae8d2bb
src/explain.rs
@@ -162,7 +162,7 @@ impl ExecutionPlan for DistributedExplainExec {
162
163
let batch =
164
RecordBatch::try_new(schema.clone(), vec![Arc::new(plan_types), Arc::new(plans)])
165
- .map_err(|e| datafusion::error::DataFusionError::ArrowError(e, None))?;
+ .map_err(|e| datafusion::error::DataFusionError::ArrowError(Box::new(e), None))?;
166
167
// Use MemoryStream which is designed for DataFusion execution plans
168
let stream = MemoryStream::try_new(vec![batch], schema, None)?;
0 commit comments