Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1362#discussion_r143890910
--- 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 --
I have deleted it.---
