Hi, We've found issues while running some queries: they return inconsistent results, i.e. in some cases we don't get any rows, in some cases we get some rows but never all that we expected to get.
I was able to pin-point the queries, so here're the cases: 1. SELECT dim, measure FROM table WHERE partition = one partition AND dim IN (a,b,c) GROUP BY dim We get results for a,c only http://i.imgur.com/SZu6f2E.png 2. IN (b) We get results for b as expected http://i.imgur.com/8c8UMWj.png 3. IN (a,b) We don't get any results http://i.imgur.com/qIepe8d.png 4. IN (b,c) We get results for b,c as expected http://i.imgur.com/Qq6yuuS.png We tried to run the queries with acceptPartial=false and with empty cache and the issues are still the same. What should we do to debug this? What might be causing these issues?
