@PublicEvolving public interface TableFunctionProvider<T> extends LookupTableSource.LookupRuntimeProvider
TableFunction instance as a runtime implementation for LookupTableSource.
The runtime will call the function with values describing the table's lookup keys (in the
order of declaration in LookupTableSource.LookupContext.getKeys()).
By default, input and output DataTypes of the TableFunction are derived
similar to other UserDefinedFunctions. However, for convenience, in a LookupTableSource the output type can simply be a Row or RowData in which case
the input and output types are derived from the table's schema with default conversion.
| 限定符和类型 | 方法和说明 |
|---|---|
TableFunction<T> |
createTableFunction()
Creates a
TableFunction instance. |
static <T> TableFunctionProvider<T> |
of(TableFunction<T> tableFunction)
Helper method for creating a static provider.
|
static <T> TableFunctionProvider<T> of(TableFunction<T> tableFunction)
TableFunction<T> createTableFunction()
TableFunction instance.Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.