Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1566#discussion_r153093237
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/streaming/CarbonStreamRecordReader.java
---
@@ -342,7 +349,11 @@ private boolean nextRow() throws IOException {
input.nextRow();
scanMore = false;
} else {
- readRowFromStream();
+ if (useRawRow) {
+ readRawRowFromStream();
--- End diff --
add comment to describe this is for `handoff`, which does not require
decode raw row
---