You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Liwei Lin (JIRA)" <ji...@apache.org> on 2016/02/01 04:55:39 UTC

[jira] [Created] (PARQUET-495) Fix mismatches in Types class comments

Liwei Lin created PARQUET-495:
---------------------------------

             Summary: Fix mismatches in Types class comments
                 Key: PARQUET-495
                 URL: https://issues.apache.org/jira/browse/PARQUET-495
             Project: Parquet
          Issue Type: Bug
          Components: parquet-mr
    Affects Versions: 1.8.0, 1.8.1
            Reporter: Liwei Lin
            Assignee: Liwei Lin
            Priority: Trivial
             Fix For: 1.9.0


To produce:
required group User \{
    required int64 id;
    *optional* binary email (UTF8);
\}

we should do:
Types.requiredGroup()
      .required(INT64).named("id")
      .-*required* (BINARY).as(UTF8).named("email")-
      .*optional* (BINARY).as(UTF8).named("email")
      .named("User")



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