Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/3829#discussion_r139471847
--- Diff: docs/dev/table/sql.md ---
@@ -89,15 +117,16 @@ val result2 = tableEnv.sql(
Supported Syntax
----------------
-Flink parses SQL using [Apache
Calcite](https://calcite.apache.org/docs/reference.html), which supports
standard ANSI SQL. DML and DDL statements are not supported by Flink.
+Flink parses SQL using [Apache
Calcite](https://calcite.apache.org/docs/reference.html), which supports
standard ANSI SQL. DDL statements are not supported by Flink.
The following BNF-grammar describes the superset of supported SQL features
in batch and streaming queries. The [Operations](#operations) section shows
examples for the supported features and indicates which features are only
supported for batch or streaming queries.
```
query:
values
- | {
+ |[ insert into tableReference ]
--- End diff --
change to `|[ insert tableReference ]` and verify.
Should actually also moved before `values` because we can use this as well
to write literal rows to the sink
---