Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1751#discussion_r160157245
--- Diff: format/src/main/thrift/carbondata.thrift ---
@@ -45,6 +45,7 @@ struct BlockletBTreeIndex{
struct BlockletMinMaxIndex{
1: required list<binary> min_values; //Min value of all columns of one
blocklet Bit-Packed
2: required list<binary> max_values; //Max value of all columns of one
blocklet Bit-Packed
+ 3: optional list<byte> null_value; // Null Bool turn on if null
value present.
--- End diff --
we can use PresenceMeta to store null value
---