Modifier and Type | Class and Description |
---|---|
class |
AddOne
Scala UDF for testing.
|
Modifier and Type | Method and Description |
---|---|
void |
TableEnvironment.registerFunction(String name,
ScalarFunction function)
Deprecated.
Use
TableEnvironment.createTemporarySystemFunction(String, UserDefinedFunction) instead.
Please note that the new method also uses the new type system and reflective extraction
logic. It might be necessary to update the function implementation as well. See the
documentation of ScalarFunction for more information on the new function design. |
Modifier and Type | Method and Description |
---|---|
void |
TableEnvironmentImpl.registerFunction(String name,
ScalarFunction function) |
Modifier and Type | Method and Description |
---|---|
void |
FunctionCatalog.registerTempCatalogScalarFunction(ObjectIdentifier oi,
ScalarFunction function)
Deprecated.
|
void |
FunctionCatalog.registerTempSystemScalarFunction(String name,
ScalarFunction function)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
static class |
GettingStartedExample.AddressNormalizer
We can put frequently used procedures in user-defined functions.
|
Modifier and Type | Class and Description |
---|---|
class |
InternalRowMergerFunction
Merges two rows into a single row with unique field names.
|
Modifier and Type | Method and Description |
---|---|
ScalarFunction |
ScalarFunctionDefinition.getScalarFunction()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static InputTypeStrategy |
LegacyUserDefinedFunctionInference.getInputTypeStrategy(ScalarFunction func)
Deprecated.
|
static TypeStrategy |
LegacyUserDefinedFunctionInference.getOutputTypeStrategy(ScalarFunction func)
Deprecated.
|
Constructor and Description |
---|
ScalarFunctionDefinition(String name,
ScalarFunction scalarFunction)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
HiveGenericUDF
A ScalarFunction implementation that calls Hive's
GenericUDF . |
class |
HiveScalarFunction<UDFType>
Abstract class to provide more information for Hive
UDF and GenericUDF functions. |
class |
HiveSimpleUDF
A ScalarFunction implementation that calls Hive's
UDF . |
Modifier and Type | Class and Description |
---|---|
class |
PythonScalarFunction
The wrapper of user defined python scalar function.
|
Modifier and Type | Class and Description |
---|---|
class |
StringRegexReplaceFunction
Scalar function for replacing all occurrences of a regular expression with a replacement string.
|
Modifier and Type | Method and Description |
---|---|
static TypeInference |
TypeInferenceExtractor.forScalarFunction(DataTypeFactory typeFactory,
Class<? extends ScalarFunction> function)
Extracts a type inference from a
ScalarFunction . |
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.