Class AbstractMinMaxByNAggregationFunction
- java.lang.Object
-
- io.trino.metadata.SqlAggregationFunction
-
- io.trino.operator.aggregation.minmaxby.AbstractMinMaxByNAggregationFunction
-
- All Implemented Interfaces:
SqlFunction
- Direct Known Subclasses:
MaxByNAggregationFunction,MinByNAggregationFunction
public abstract class AbstractMinMaxByNAggregationFunction extends SqlAggregationFunction
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractMinMaxByNAggregationFunction(String name, Function<Type,BlockTypeOperators.BlockPositionComparison> typeToComparison, String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidcombine(MinMaxByNState state, MinMaxByNState otherState)protected InternalAggregationFunctiongenerateAggregation(Type valueType, Type keyType)List<TypeSignature>getIntermediateTypes(FunctionBinding functionBinding)static voidinput(BlockTypeOperators.BlockPositionComparison comparison, Type valueType, Type keyType, MinMaxByNState state, Block value, Block key, int blockIndex, long n)static voidoutput(ArrayType outputType, MinMaxByNState state, BlockBuilder out)InternalAggregationFunctionspecialize(FunctionBinding functionBinding)-
Methods inherited from class io.trino.metadata.SqlAggregationFunction
createFunctionByAnnotations, createFunctionsByAnnotations, getAggregationMetadata, getFunctionMetadata, specialize
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.trino.metadata.SqlFunction
getFunctionDependencies, getFunctionDependencies
-
-
-
-
Constructor Detail
-
AbstractMinMaxByNAggregationFunction
protected AbstractMinMaxByNAggregationFunction(String name, Function<Type,BlockTypeOperators.BlockPositionComparison> typeToComparison, String description)
-
-
Method Detail
-
getIntermediateTypes
public List<TypeSignature> getIntermediateTypes(FunctionBinding functionBinding)
- Overrides:
getIntermediateTypesin classSqlAggregationFunction
-
specialize
public InternalAggregationFunction specialize(FunctionBinding functionBinding)
- Overrides:
specializein classSqlAggregationFunction
-
input
public static void input(BlockTypeOperators.BlockPositionComparison comparison, Type valueType, Type keyType, MinMaxByNState state, Block value, Block key, int blockIndex, long n)
-
combine
public static void combine(MinMaxByNState state, MinMaxByNState otherState)
-
output
public static void output(ArrayType outputType, MinMaxByNState state, BlockBuilder out)
-
generateAggregation
protected InternalAggregationFunction generateAggregation(Type valueType, Type keyType)
-
-