Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1362#discussion_r143616906
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/store/TablePage.java
---
@@ -187,6 +188,12 @@ private void convertToColumnarAndAddToPages(int rowId,
CarbonRow row, byte[] mdk
value != null) {
value = ((Decimal) value).toJavaBigDecimal();
}
+ if (measurePages[i].getColumnSpec().getSchemaDataType()
+ == DataType.BOOLEAN && value != null) {
--- End diff --
incorrect line wrap
---