Github user ravipesala commented on the issue:

    https://github.com/apache/incubator-carbondata/pull/627
  
    @simafengyun Thanks for working on it.
    Range binary search is impressive. we can use same search in other places 
as well.
    But using this search in `setFilterdIndexToBitSet` is not always correct. 
Because here the data may not be sorted always, Only for the first column of 
dimensions is sorted naturally because of mdk order.
    And if the data is sorted explicitly(it means it has inverted index) then 
it goes to another method `setFilterdIndexToBitSetWithColumnIndex`.  So here we 
need extra checks to do binary search in the method `setFilterdIndexToBitSet` , 
that is like whether the column is naturally sorted or not.This information we 
may need get from store.  
    Please use this Range binary search in 
'setFilterdIndexToBitSetWithColumnIndex' as well.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to