Skip to content

Commit

Permalink
[hotfix][docs] Fix missing joinLateral
Browse files Browse the repository at this point in the history
  • Loading branch information
sunjincheng121 authored and twalthr committed Feb 28, 2019
1 parent bc3e665 commit 980ff05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev/table/tableApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ val rates = ratesHistory.createTemporalTableFunction('r_proctime, 'r_currency)
// join with "Orders" based on the time attribute and key
val orders = tableEnv.scan("Orders")
val result = orders
.join(rates('o_rowtime), 'r_currency === 'o_currency)
.joinLateral(rates('o_rowtime), 'r_currency === 'o_currency)
{% endhighlight %}
<p>For more information please check the more detailed <a href="streaming/temporal_tables.html">temporal tables concept description</a>.</p>
</td>
Expand Down

0 comments on commit 980ff05

Please sign in to comment.