You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chengxiang Li (JIRA)" <ji...@apache.org> on 2015/11/02 08:32:28 UTC

[jira] [Created] (FLINK-2951) Add Union operator to Table API.

Chengxiang Li created FLINK-2951:
------------------------------------

             Summary: Add Union operator to Table API.
                 Key: FLINK-2951
                 URL: https://issues.apache.org/jira/browse/FLINK-2951
             Project: Flink
          Issue Type: New Feature
          Components: Documentation, Table API
            Reporter: Chengxiang Li
            Assignee: Chengxiang Li
            Priority: Minor


Currently, union operation is supported by DataSet/DataStream API, not available in Table API. To union two tables, user has to transform the parameter input to DataSet/DataStream, for example:
{code:java}
val unionDs = left.union(right.toDataSet[Row])
{code}
It should be more API friendly to user if add union operation to Table API, like:
{code:java}
val unionDs = left.union(right)
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)