Skip to content

Commit

Permalink
fixed testcase failure in case safe flow with varchar
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarvishal09 committed Sep 25, 2018
1 parent 021e172 commit 5ab263f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -139,7 +139,7 @@ public void fillRow(int rowId, CarbonColumnVector vector, int vectorRow) {
length = dataOffsets[rowId + 1] - (currentDataOffset + getLengthSize());
} else {
// for last record
length = (short) (this.data.length - currentDataOffset);
length = this.data.length - currentDataOffset;
}
DataType dt = vector.getType();

Expand Down

0 comments on commit 5ab263f

Please sign in to comment.