Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/5221#discussion_r159650291
--- Diff: docs/dev/table/tableApi.md ---
@@ -356,8 +356,8 @@ Table result = orders
<td>
<p>Similar to a SQL OVER clause. Over window aggregates are
computed for each row, based on a window (range) of preceding and succeeding
rows. See the <a href="#over-windows">over windows section</a> for more
details.</p>
{% highlight scala %}
-Table orders = tableEnv.scan("Orders");
-Table result = orders
+val orders = tableEnv.scan("Orders")
--- End diff --
These changes should be reverted
---