Hi dev team, I have a question about the sort in carbon data. When we have following query: select country, area, name, salary from table_a order by country; It seems carbon will decode the country column from dictionary value to original value first, and then sort by original value.
My question : Is the dictionary value order always the same with original value order? Or if we sort the dictionary value first and then decode to original value, would that be correct operation? BTW: where can I see the algorithm of Dictionary encode(class name or file name)? Thanks, Lionel