Skip to content

Commit

Permalink
[Bug](samples)fix IndexOutOfBoundsException (#25608)
Browse files Browse the repository at this point in the history
  • Loading branch information
caoliang-web authored Oct 20, 2023
1 parent 68d3c25 commit 42e5a33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private static void readData(JSONObject queryRes) throws Exception {
if(!eos){
int i = convertArrow(next, selectedColumns);
offset += i;
readRowCount += offset;
readRowCount = offset;
}
}
//close
Expand Down

0 comments on commit 42e5a33

Please sign in to comment.