fhueske commented on a change in pull request #6744: [FLINK-10379][docs,table]
Fix Table Function docs
URL: https://github.com/apache/flink/pull/6744#discussion_r220564387
##########
File path: docs/dev/table/tableApi.md
##########
@@ -637,19 +637,19 @@ Table result = left.join(right)
{% highlight java %}
// register function
TableFunction<String> split = new MySplitUDTF();
-tEnv.registerFunction("split", split);
+tableEnv.registerFunction("split", split);
// join
Table orders = tableEnv.scan("Orders");
Table result = orders
- .join(new Table(tEnv, "split(c)").as("s", "t", "v"))
+ .join(new Table(tableEnv, "split(c)").as("s", "t", "v"))
.select("a, b, s, t, v");
{% endhighlight %}
</td>
</tr>
<tr>
- <td>
- <strong>TableFunction Left Outer Join</strong><br>
+ <td>
+ <strong>Left Outer Join with User Defined Table Functions
(UDTF)</strong><br>
Review comment:
`User-Defined`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services