Github user fhueske commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4842#discussion_r145254351
  
    --- Diff: docs/dev/table/tableApi.md ---
    @@ -695,6 +698,7 @@ val split: TableFunction[_] = new MySplitUDTF()
     // join
     val result: Table = table
         .leftOuterJoin(split('c) as ('s, 't, 'v))
    +    .where('a > 5)
    --- End diff --
    
    I would not add this. It's a local predicate on the outer table and not 
related to the table function join.


---

Reply via email to