Github user twalthr commented on a diff in the pull request: https://github.com/apache/flink/pull/4813#discussion_r146489748 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/table.scala --- @@ -726,7 +726,10 @@ class Table( * }}} * * @param offset number of records to skip + * + * @deprecated Please use [[Table.offset()]] and [[Table.fetch()]] instead. */ + @deprecated(message = "Deprecated in favor of Table.offset() and Table.fetch()", since = "1.4.0") --- End diff -- This kind of deprecation does not work for Java. Please add the Java annotation as well.
---