Skip to content

Commit

Permalink
fix for structured types strings
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pmotacki committed Dec 10, 2024
1 parent a16a2d0 commit 46bfd71
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ public Object toObject(int index) throws SFException {
if (isNull(index)) {
return null;
}
Object object = vector.getObject(index);
return object;
return vector.getObject(index);
}

@Override
Expand Down

0 comments on commit 46bfd71

Please sign in to comment.