Github user twalthr commented on a diff in the pull request:
https://github.com/apache/flink/pull/4894#discussion_r146576347
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/TableSchema.scala
---
@@ -50,6 +50,11 @@ class TableSchema(
val columnNameToIndex: Map[String, Int] = columnNames.zipWithIndex.toMap
+ /** Returns a copy of the TableSchema */
+ def copy: TableSchema = {
--- End diff --
Maybe mention the deep copy behavior.---
