Skip to content

Commit

Permalink
0004208: ArrayIndexOutOfBoundsException getPkDataFor while loading batch
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 17, 2019
1 parent 7c7a182 commit 841387d
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -500,7 +500,10 @@ protected String getPkDataFor(CsvData data, Column column) {
index++;
}
if (column2.equals(column)) {
return values[index];
if (index < values.length) {
return values[index];
}
return null;
}
}
} else {
Expand Down

0 comments on commit 841387d

Please sign in to comment.