You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Daniel Dai (JIRA)" <ji...@apache.org> on 2014/08/19 06:27:20 UTC

[jira] [Commented] (HIVE-7771) ORC PPD fails for some decimal predicates

    [ https://issues.apache.org/jira/browse/HIVE-7771?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14101829#comment-14101829 ] 

Daniel Dai commented on HIVE-7771:
----------------------------------

Are you change the search argument to use BigDecimal? If so, shall we change SearchArgumentImpl as well?
{code}
- literal instanceof HiveDecimal) {
+ literal instanceof BigDecimal) {
...
- } else if (literal instanceof HiveDecimal) {
+ } else if (literal instanceof BigDecimal) {
{code}

> ORC PPD fails for some decimal predicates
> -----------------------------------------
>
>                 Key: HIVE-7771
>                 URL: https://issues.apache.org/jira/browse/HIVE-7771
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 0.14.0
>            Reporter: Prasanth J
>            Assignee: Prasanth J
>         Attachments: HIVE-7771.1.patch
>
>
> Some queries like 
> {code}
> select * from table where dcol<=11.22BD;
> {code}
> fails when ORC predicate pushdown is enabled.



--
This message was sent by Atlassian JIRA
(v6.2#6252)