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 ec2abf1 commit aa71328Copy full SHA for aa71328
src/dataframe.rs
@@ -410,7 +410,7 @@ impl PyDataFrame {
410
/// Executes this DataFrame and collects all results into a vector of vector of RecordBatch
411
/// maintaining the input partitioning.
412
fn collect_partitioned(&self, py: Python) -> PyResult<Vec<Vec<PyObject>>> {
413
- let batches = wait_for_future(py, self.df.as_ref().clone().collect_partitioned())
+ let batches = wait_for_future(py, self.df.as_ref().clone().collect_partitioned())?
414
.map_err(PyDataFusionError::from)?;
415
416
batches
0 commit comments