We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb4a5c commit ea3673bCopy full SHA for ea3673b
1 file changed
src/substrait.rs
@@ -83,7 +83,8 @@ impl PySubstraitSerializer {
83
84
// Suppress the specific warning while maintaining the behavior that works with Tokio
85
#[allow(unused_must_use)]
86
- wait_for_future(py, future)?;
+ wait_for_future(py, future)?.map_err(PyDataFusionError::from)?;
87
+
88
Ok(())
89
}
90
0 commit comments