FilteredBufferAggregator: Fix missing relocate, isNull methods. (#6233)

This commit is contained in:
Gian Merlino 2018-08-27 15:30:45 -07:00 committed by Fangjin Yang
parent 157e75a1fe
commit 71c1a70ff6
1 changed files with 17 additions and 0 deletions

View File

@ -73,6 +73,23 @@ public class FilteredBufferAggregator implements BufferAggregator
return delegate.getDouble(buf, position); return delegate.getDouble(buf, position);
} }
@Override
public void relocate(
final int oldPosition,
final int newPosition,
final ByteBuffer oldBuffer,
final ByteBuffer newBuffer
)
{
delegate.relocate(oldPosition, newPosition, oldBuffer, newBuffer);
}
@Override
public boolean isNull(final ByteBuffer buf, final int position)
{
return delegate.isNull(buf, position);
}
@Override @Override
public void close() public void close()
{ {