[ https://issues.apache.org/jira/browse/FLINK-20607?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Jark Wu updated FLINK-20607: ---------------------------- Component/s: Table SQL / API > a wrong example in udfs page. > ----------------------------- > > Key: FLINK-20607 > URL: https://issues.apache.org/jira/browse/FLINK-20607 > Project: Flink > Issue Type: Bug > Components: Documentation, Table SQL / API > Affects Versions: 1.12.0, 1.11.1 > Reporter: shizhengchao > Priority: Minor > Labels: pull-request-available > > Demonstration error of multiple input types in FunctionHint: > {code:java} > @FunctionHint( > input = [@DataTypeHint("INT"), @DataTypeHint("INT")], > output = @DataTypeHint("INT") > ) > {code} > should be > {code:java} > @FunctionHint( > input = {@DataTypeHint("INT"), @DataTypeHint("INT")}, > output = @DataTypeHint("INT") > ) > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)