Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/3829#discussion_r139470670
--- Diff: docs/dev/table/common.md ---
@@ -458,7 +595,7 @@ Table API and SQL queries are translated into
[DataStream]({{ site.baseurl }}/de
A Table API or SQL query is translated when:
-* the `Table` is emitted to a `TableSink`, i.e., when
`Table.writeToSink()` is called.
+* the `Table` is emitted to a `TableSink` or a registered sink table,
i.e., when `Table.writeToSink()` or `Table.insertInto()`is called.
--- End diff --
rephrase to
` the `Table` is emitted to a `TableSink` (provided or registered)`
---