mirror of https://github.com/apache/druid.git
FilteredBufferAggregator: Fix missing relocate, isNull methods. (#6233)
This commit is contained in:
parent
157e75a1fe
commit
71c1a70ff6
|
@ -73,6 +73,23 @@ public class FilteredBufferAggregator implements BufferAggregator
|
|||
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
|
||||
public void close()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue