Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes Bears-R-Us#2886: Cap small strs groupby optimization
This PR (closes Bears-R-Us#2886) caps strs for the small str optimization at 8 bytes since there was a drop off in our str groupby benchmarks This is because we currently have our small str optimization set to kick in at 16 bytes (which is how long the strings are in the multi-col str groupby benchmark) but this is the max number of bits we can have before we hit the totalDigits > 8 case, where we hash everything anyway. So these are all resulting in extra processing just to do what we were already doing
- Loading branch information