Skip to content

Commit

Permalink
fix StringArrayDecoder
Browse files Browse the repository at this point in the history
  • Loading branch information
junwen12221 committed Jun 2, 2022
1 parent c96bab0 commit faa91c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void addColumn(int index, Buffer buffer) {
@Override
public Object[] convert(Buffer payload) {
final int NULL = 0xFB;
Object[] row = new Object[columnCount][];
Object[] row = new Object[columnCount];
ReadView readView = new ReadView(payload);
// TEXT row decoding
for (int c = 0; c < columnCount; c++) {
Expand Down

0 comments on commit faa91c2

Please sign in to comment.