Class PythonAggregateFunctionInfo
- java.lang.Object
-
- org.apache.flink.table.functions.python.PythonFunctionInfo
-
- org.apache.flink.table.functions.python.PythonAggregateFunctionInfo
-
- All Implemented Interfaces:
Serializable
@Internal public class PythonAggregateFunctionInfo extends PythonFunctionInfo
PythonAggregateFunctionInfo contains the execution information of a Python aggregate function, such as: the actual Python aggregation function, the input arguments, the filter arg, the distinct flag, etc.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PythonAggregateFunctionInfo(PythonFunction pythonFunction, Object[] inputs, int filterArg, boolean isDistinct)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFilterArg()
boolean
isDistinct()
-
Methods inherited from class org.apache.flink.table.functions.python.PythonFunctionInfo
getInputs, getPythonFunction, setInputs
-
-
-
-
Constructor Detail
-
PythonAggregateFunctionInfo
public PythonAggregateFunctionInfo(PythonFunction pythonFunction, Object[] inputs, int filterArg, boolean isDistinct)
-
-