We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
equal_rows_arr
equal_rows_arr compares pairs of 2 arrays with indices for equality but shows up in profiles.
Currently this is done in the following way
take
eq
not_distinct
and
We could optimize this in some ways:
Vec::retain
No response
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Unassign this due to a bit busy currently. @LeslieKid Maybe you will be interested on this.
GroupColumn
LeslieKid
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
equal_rows_arr compares pairs of 2 arrays with indices for equality but shows up in profiles.
Currently this is done in the following way
take
the values for the indices for the first paireq
ornot_distinct
and
ing the resultsDescribe the solution you'd like
We could optimize this in some ways:
take
(i.e. copy the array) but compares arrays based on the indices.Vec::retain
) not matching rather than creating a boolean array for a filterDescribe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: