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

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

     [ https://issues.apache.org/jira/browse/PARQUET-495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cheng Lian resolved PARQUET-495.
--------------------------------
    Resolution: Fixed

Issue resolved by pull request 317
[https://github.com/apache/parquet-mr/pull/317]

> 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)