Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1362#discussion_r143617076
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/ColumnPage.java ---
@@ -361,6 +360,10 @@ public void putData(int rowId, Object value) {
return;
}
switch (dataType) {
+ case BOOLEAN:
+ putByte(rowId, (byte) value);
--- End diff --
use `putBoolean`---
