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.
1 parent a24e280 commit 6f0ef29Copy full SHA for 6f0ef29
src/dataframe.rs
@@ -397,7 +397,8 @@ impl PyDataFrame {
397
.map_err(PyDataFusionError::from)?;
398
// cannot use PyResult<Vec<RecordBatch>> return type due to
399
// https://github.com/PyO3/pyo3/issues/1813
400
- batches.into_iter().map(|rb| rb.to_pyarrow(py)).collect()
+ let result = batches.into_iter().map(|rb| rb.to_pyarrow(py)).collect();
401
+ result
402
}
403
404
/// Cache DataFrame.
0 commit comments