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 30bd83c commit 177dee9Copy full SHA for 177dee9
src/dataframe.rs
@@ -304,7 +304,7 @@ impl PyDataFrame {
304
305
#[pyo3(signature = (*args))]
306
fn select(&self, args: Vec<PyExpr>) -> PyDataFusionResult<Self> {
307
- let expr = args.into_iter().map(|e| e.into()).collect();
+ let expr: Vec<Expr> = args.into_iter().map(|e| e.into()).collect();
308
let df = self.df.as_ref().clone().select(expr)?;
309
Ok(Self::new(df))
310
}
0 commit comments