Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ViggoC committed Sep 25, 2024
1 parent f9a221d commit 8a3ee8b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.apache.arrow.vector.complex.impl.ViewVarBinaryReaderImpl;
import org.apache.arrow.vector.complex.reader.FieldReader;
import org.apache.arrow.vector.holders.NullableViewVarBinaryHolder;
import org.apache.arrow.vector.holders.NullableViewVarCharHolder;
import org.apache.arrow.vector.holders.ViewVarBinaryHolder;
import org.apache.arrow.vector.types.Types.MinorType;
import org.apache.arrow.vector.types.pojo.Field;
Expand Down Expand Up @@ -132,7 +131,7 @@ public byte[] getObject(int index) {
* @param index position of an element to get
* @param holder data holder to be populated by this function
*/
public void get(int index, NullableViewVarCharHolder holder) {
public void get(int index, NullableViewVarBinaryHolder holder) {
final int dataLength = getValueLength(index);
if (isSet(index) == 0) {
holder.isSet = 0;
Expand Down

0 comments on commit 8a3ee8b

Please sign in to comment.