Class ObjectColumnDoubleBufferAggregatorWrapper
- java.lang.Object
-
- org.apache.druid.query.aggregation.DelegatingBufferAggregator
-
- org.apache.druid.query.aggregation.ObjectColumnDoubleBufferAggregatorWrapper
-
- All Implemented Interfaces:
BufferAggregator
,HotLoopCallee
public class ObjectColumnDoubleBufferAggregatorWrapper extends DelegatingBufferAggregator
This class can be used to wrap Double BufferAggregator that consume double type columns to handle Object type.
-
-
Field Summary
-
Fields inherited from class org.apache.druid.query.aggregation.DelegatingBufferAggregator
delegate
-
-
Constructor Summary
Constructors Constructor Description ObjectColumnDoubleBufferAggregatorWrapper(BaseObjectColumnValueSelector selector, Function<BaseDoubleColumnValueSelector,BufferAggregator> delegateBuilder, double nullValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
aggregate(ByteBuffer buf, int position)
Aggregates metric values into the given aggregate byte representation Implementations of this method must read in the aggregate value from the buffer at the given position, aggregate the next element of data and write the updated aggregate value back into the buffer.-
Methods inherited from class org.apache.druid.query.aggregation.DelegatingBufferAggregator
close, get, getDouble, getFloat, getLong, init, inspectRuntimeShape, isNull, relocate
-
-
-
-
Constructor Detail
-
ObjectColumnDoubleBufferAggregatorWrapper
public ObjectColumnDoubleBufferAggregatorWrapper(BaseObjectColumnValueSelector selector, Function<BaseDoubleColumnValueSelector,BufferAggregator> delegateBuilder, double nullValue)
-
-
Method Detail
-
aggregate
public void aggregate(ByteBuffer buf, int position)
Description copied from interface:BufferAggregator
Aggregates metric values into the given aggregate byte representation Implementations of this method must read in the aggregate value from the buffer at the given position, aggregate the next element of data and write the updated aggregate value back into the buffer. Implementations must not change the position, limit or mark of the given buffer- Specified by:
aggregate
in interfaceBufferAggregator
- Overrides:
aggregate
in classDelegatingBufferAggregator
- Parameters:
buf
- byte buffer storing the byte array representation of the aggregateposition
- offset within the byte buffer at which the current aggregate value is stored
-
-