Package io.trino.operator.aggregation
Class AbstractMinMaxNAggregationFunction
- java.lang.Object
-
- io.trino.metadata.SqlAggregationFunction
-
- io.trino.operator.aggregation.AbstractMinMaxNAggregationFunction
-
- All Implemented Interfaces:
SqlFunction
- Direct Known Subclasses:
MaxNAggregationFunction,MinNAggregationFunction
public abstract class AbstractMinMaxNAggregationFunction extends SqlAggregationFunction
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractMinMaxNAggregationFunction(String name, boolean min, String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidcombine(MinMaxNState state, MinMaxNState otherState)protected AggregationMetadatagenerateAggregation(MethodHandle compare, Type type)FunctionDependencyDeclarationgetFunctionDependencies(BoundSignature boundSignature)static voidinput(MethodHandle compare, Type type, MinMaxNState state, Block block, long n, int blockIndex)static voidoutput(ArrayType outputType, MinMaxNState state, BlockBuilder out)AggregationMetadataspecialize(BoundSignature boundSignature, FunctionDependencies functionDependencies)-
Methods inherited from class io.trino.metadata.SqlAggregationFunction
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
-
-
-
-
Method Detail
-
getFunctionDependencies
public FunctionDependencyDeclaration getFunctionDependencies(BoundSignature boundSignature)
-
specialize
public AggregationMetadata specialize(BoundSignature boundSignature, FunctionDependencies functionDependencies)
- Overrides:
specializein classSqlAggregationFunction
-
generateAggregation
protected AggregationMetadata generateAggregation(MethodHandle compare, Type type)
-
input
public static void input(MethodHandle compare, Type type, MinMaxNState state, Block block, long n, int blockIndex)
-
combine
public static void combine(MinMaxNState state, MinMaxNState otherState)
-
output
public static void output(ArrayType outputType, MinMaxNState state, BlockBuilder out)
-
-