Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1362#discussion_r143615152
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/ColumnPage.java ---
@@ -485,6 +496,11 @@ private void putNull(int rowId) {
public abstract int getShortInt(int rowId);
/**
+ * Get boolean value at rowId
+ */
+ public abstract boolean getBoolean(int rowId);
--- End diff --
The same as above, you can implement this function here instead of abstract
---