Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: collect to list (non-windowed) (primitive/strings/booleans) #569

Merged
merged 13 commits into from
Jul 31, 2023
Prev Previous commit
use cloned for strings
  • Loading branch information
jordanrfrazier committed Jul 31, 2023
commit 24ba56ea02dfc9f89a7dadbb5556d3ceb479d14f
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl CollectStringEvaluator {
.add_value(self.max, entity_index, input.map(|s| s.to_owned()));
let cur_list = self.token.state(entity_index);

list_builder.append_value(cur_list.iter().copied());
list_builder.append_value(cur_list.clone());
});

Ok(Arc::new(list_builder.finish()))
Expand Down