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 8b4d2a1 commit 3441d19Copy full SHA for 3441d19
src/dataframe.rs
@@ -562,8 +562,8 @@ impl PyDataFrame {
562
// TODO need to finish plumbing through
563
let cols = _args
564
.iter()
565
- .map(|(table, s)| (Some(table.clone().into()), s.0.clone()))
566
- .collect::<Vec<(Option<TableReference>, Field)>>();
+ .map(|(table, s)| (Some(&table.table_reference), &s.0))
+ .collect::<Vec<(Option<&TableReference>, &Field)>>();
567
let df = self.df.as_ref().clone().drop_qualified_columns(&cols)?;
568
Ok(Self::new(df))
569
}
0 commit comments