Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-isaacs committed Jan 13, 2025
1 parent 49d753d commit f66ad95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vortex-expr/src/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ impl VortexExpr for Select {
SelectField::Exclude(names) => {
let included_names = st
.names()
.iter().filter(|&f| !names.contains(f)).cloned()
.iter()
.filter(|&f| !names.contains(f))
.cloned()
.collect::<Vec<_>>();
st.project(included_names.as_slice())
}
Expand Down

0 comments on commit f66ad95

Please sign in to comment.