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 2015/04/12 10:31:12 UTC

[jira] [Resolved] (PARQUET-250) StatisticsFilter "And"'s semantic error

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

Cheng Lian resolved PARQUET-250.
--------------------------------
    Resolution: Duplicate

> StatisticsFilter "And"'s semantic error
> ---------------------------------------
>
>                 Key: PARQUET-250
>                 URL: https://issues.apache.org/jira/browse/PARQUET-250
>             Project: Parquet
>          Issue Type: Bug
>          Components: parquet-mr
>    Affects Versions: 1.6.0
>            Reporter: Yijie Shen
>              Labels: easyfix
>
> {code}
> public Boolean visit(And and) {
>     return and.getLeft().accept(this) && and.getRight().accept(this);
>   }
> {code}
> visit(And and) is used to determine whether a row group "canDrop", therefore, in "And" situation, either left "canDrop" or right "canDrop" would lead the row group "canDrop", so we need a "||" here to make the choice.
> Therefore, it should be:
> {code}
> public Boolean visit(And and) {
>     return and.getLeft().accept(this) || and.getRight().accept(this);
>   }
> {code}



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