Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2142#discussion_r180646025
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/merger/AbstractResultProcessor.java
---
@@ -37,7 +39,7 @@
* @param resultIteratorList
* @return
*/
- public abstract boolean execute(List<RawResultIterator>
resultIteratorList);
+ public abstract boolean execute(List<RawResultIterator>
resultIteratorList) throws SparkException;
--- End diff --
You can only throw the exception that is sufficient
---