You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by twalthr <gi...@git.apache.org> on 2016/07/08 13:03:02 UTC

[GitHub] flink pull request #2169: [FLINK-3943] Add support for EXCEPT operator

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

    https://github.com/apache/flink/pull/2169#discussion_r70069883
  
    --- Diff: docs/apis/table.md ---
    @@ -536,6 +536,29 @@ Table result = left.unionAll(right);
         </tr>
     
         <tr>
    +      <td><strong>Minus</strong></td>
    +      <td>
    +        <p>Similar to a SQL EXCEPT clause. Except returns records from the first table that do not exist in the second table. Duplicate records in the first table are returned exactly once, i.e., duplicates are removed. Both tables must have identical schema, i.e., field names and types.</p>
    --- End diff --
    
    "Except returns records" should be "Minus returns records" to be consistent. I would also use "left/right" table instead of first and second according to your example code. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---