root-11 / tablite

multiprocessing enabled out-of-memory data analysis library for tabular data.
MIT License
37 stars 8 forks source link

fix unix_sort #152

Closed omenSi closed 8 months ago

omenSi commented 8 months ago

unix_sort in sort utils does not work at the moment, because dictionary of unique values is returned. In cases, where integers 1, 0 are used with bools, Python will convert 1 or 0 to bool (bool is essentially an integer in Python) and incorrect dictionary will be returned.

realratchet commented 8 months ago

Python :[