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 aead2a0 commit 84f31bbCopy full SHA for 84f31bb
src/dataframe.rs
@@ -864,7 +864,7 @@ impl PyDataFrame {
864
865
// Executes this DataFrame to get the total number of rows.
866
fn count(&self, py: Python) -> PyDataFusionResult<usize> {
867
- Ok(wait_for_future(py, self.df.as_ref().clone().count())??)
+ Ok(wait_for_future(py, self.df.as_ref().clone().count()).map_err(py_datafusion_err)??)
868
}
869
870
/// Fill null values with a specified value for specific columns
0 commit comments