This is a simple documentation fix for Java Table API.
Old syntax of joining with Table Functions in Java Table API:
```
// Register the function.
tableEnv.registerFunction("split", new Split("#"));
myTable.join("split(a) as (word, length)");
```
is no longer supported and this the reason why the documentation needed to be
updated. Currently supported syntax is:
```
orders.join(new Table(tEnv, "split(a)");
```
[ Full content available at: https://github.com/apache/flink/pull/6744 ]
This message was relayed via gitbox.apache.org for [email protected]