上次我们试了下标量函数flink sql 自定义udf实践之标量函数
这次我们来试一下表值函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| package org.example; import org.apache.flink.table.annotation.DataTypeHint; import org.apache.flink.table.annotation.FunctionHint; import org.apache.flink.table.functions.TableFunction; import org.apache.flink.types.Row;
/** * classname SplitFunction * description 表值函数 */ @FunctionHint(output = @DataTypeHint("Row<word String, length INT>")) public class SplitFunction extends TableFunction<Row> { public void eval(String str) { collect(Row.of(str, str.length())); } }
|