Skip to content

Commit

Permalink
apacheGH-38511: [JAVA] added impl of getTransferPair(Field, BufferAll…
Browse files Browse the repository at this point in the history
…ocator, CallBack) for MapVector (dremio#60)

* apacheGH-38511: [JAVA] added impl of getTransferPair(Field, BufferAllocator, CallBack) for MapVector
  • Loading branch information
xxlaykxx authored and lriggs committed Nov 14, 2023
1 parent 2d9cdbf commit f477cc8
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ public TransferPair getTransferPair(String ref, BufferAllocator allocator, CallB
return new TransferImpl(ref, allocator, callBack);
}

@Override
public TransferPair getTransferPair(Field field, BufferAllocator allocator, CallBack callBack) {
return new TransferImpl(field, allocator, callBack);
}

@Override
public TransferPair makeTransferPair(ValueVector target) {
return new MapVector.TransferImpl((MapVector) target);
Expand Down

0 comments on commit f477cc8

Please sign in to comment.