Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1977#discussion_r170169527
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/chunk/impl/DimensionRawColumnChunk.java
---
@@ -49,7 +49,8 @@ public DimensionRawColumnChunk(int columnIndex,
ByteBuffer rawData, long offSet,
* Convert all raw data with all pages to processed
DimensionColumnDataChunk's
* @return
*/
- public DimensionColumnDataChunk[] convertToDimColDataChunks() {
+ public DimensionColumnDataChunk[] convertToDimColDataChunks()
+ throws IOException, MemoryException, RuntimeException {
--- End diff --
wrap to single exception and throw it, don't throw many exceptions
---