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