You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Fabian Hueske (JIRA)" <ji...@apache.org> on 2016/06/15 15:06:09 UTC

[jira] [Created] (FLINK-4077) Register Pojo DataSet/DataStream as Table requires alias expression.

Fabian Hueske created FLINK-4077:
------------------------------------

             Summary: Register Pojo DataSet/DataStream as Table requires alias expression.
                 Key: FLINK-4077
                 URL: https://issues.apache.org/jira/browse/FLINK-4077
             Project: Flink
          Issue Type: Bug
          Components: Table API
    Affects Versions: 1.1.0
            Reporter: Fabian Hueske
            Assignee: Fabian Hueske
             Fix For: 1.1.0


Registering a Pojo DataSet / DataStream as Table requires alias expressions and does not work with simple field references. However, alias expressions would only be necessary if the fields of the Pojo should be renamed. 

{code}
DataStream<Person> persons = ...

// DOES NOT WORK
tEnv.registerDataStream(
  "Persons", 
  persons, 
  "name, age, address");

// DOES WORK
tEnv.registerDataStream(
  "Persons", 
  persons, 
  "name AS name, age AS age, address AS address");
{code}

We should also allow simple field name references in addition to alias expressions to rename fields.



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