Package | Description |
---|---|
org.apache.flink.table.functions.python |
Modifier and Type | Method and Description |
---|---|
PythonFunctionKind |
PythonScalarFunction.getPythonFunctionKind() |
default PythonFunctionKind |
PythonFunction.getPythonFunctionKind()
Returns the kind of the user-defined python function.
|
PythonFunctionKind |
PythonTableFunction.getPythonFunctionKind() |
PythonFunctionKind |
PythonAggregateFunction.getPythonFunctionKind() |
static PythonFunctionKind |
PythonFunctionKind.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonFunctionKind[] |
PythonFunctionKind.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
PythonAggregateFunction(String name,
byte[] serializedAggregateFunction,
DataType[] inputTypes,
DataType resultType,
DataType accumulatorType,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
PythonEnv pythonEnv) |
PythonScalarFunction(String name,
byte[] serializedScalarFunction,
TypeInformation[] inputTypes,
TypeInformation resultType,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
PythonEnv pythonEnv) |
PythonTableFunction(String name,
byte[] serializedScalarFunction,
TypeInformation[] inputTypes,
RowTypeInfo resultType,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
PythonEnv pythonEnv) |
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.