@PublicEvolving public final class TableFunctionDefinition extends Object implements FunctionDefinition
This class can be dropped once we introduce a new type inference.
Constructor and Description |
---|
TableFunctionDefinition(String name,
TableFunction<?> tableFunction,
TypeInformation<?> resultType) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
FunctionKind |
getKind()
Returns the kind of function this definition describes.
|
Set<FunctionRequirement> |
getRequirements()
Returns the set of requirements this definition demands.
|
TypeInformation<?> |
getResultType() |
TableFunction<?> |
getTableFunction() |
int |
hashCode() |
boolean |
isDeterministic()
Returns information about the determinism of the function's results.
|
String |
toString() |
public TableFunctionDefinition(String name, TableFunction<?> tableFunction, TypeInformation<?> resultType)
public TableFunction<?> getTableFunction()
public TypeInformation<?> getResultType()
public FunctionKind getKind()
FunctionDefinition
getKind
in interface FunctionDefinition
public Set<FunctionRequirement> getRequirements()
FunctionDefinition
getRequirements
in interface FunctionDefinition
public boolean isDeterministic()
FunctionDefinition
It returns true
if and only if a call to this function is guaranteed to
always return the same result given the same parameters. true
is
assumed by default. If the function is not pure functional like random(), date(), now(), ...
this method must return false
.
isDeterministic
in interface FunctionDefinition
Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.