You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/02/12 19:46:00 UTC

[jira] [Work logged] (HIVE-22828) Decimal64: NVL & CASE statements implicitly convert decimal64 to 128

     [ https://issues.apache.org/jira/browse/HIVE-22828?focusedWorklogId=386176&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-386176 ]

ASF GitHub Bot logged work on HIVE-22828:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Feb/20 19:45
            Start Date: 12/Feb/20 19:45
    Worklog Time Spent: 10m 
      Work Description: ramesh0201 commented on pull request #907: HIVE-22828 Support Decimal64 in NVL & CASE statements
URL: https://github.com/apache/hive/pull/907
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 386176)
    Remaining Estimate: 0h
            Time Spent: 10m

> Decimal64: NVL & CASE statements implicitly convert decimal64 to 128 
> ---------------------------------------------------------------------
>
>                 Key: HIVE-22828
>                 URL: https://issues.apache.org/jira/browse/HIVE-22828
>             Project: Hive
>          Issue Type: Bug
>          Components: Vectorization
>            Reporter: Gopal Vijayaraghavan
>            Assignee: Ramesh Kumar Thangarajan
>            Priority: Major
>              Labels: pull-request-available
>         Attachments: HIVE-22828.1.patch, HIVE-22828.3.patch, HIVE-22828.4.patch, HIVE-22828.5.patch, HIVE-22828.6.patch
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> {code}
> select  
> sum(case when (ss_item_sk=1) then ss_sales_price else null end),
> sum(case when (ss_item_sk=2) then ss_sales_price else ss_sales_price+1 end),
> sum(case when (ss_item_sk=2) then 1.0BD+ss_sales_price else null end)
> from store_sales where ss_sold_date_sk % 1111 = 1;
> {code}
> {code}
> Caused by: java.lang.ClassCastException: org.apache.hadoop.hive.ql.exec.vector.Decimal64ColumnVector cannot be cast to org.apache.hadoop.hive.ql.exec.vector.DecimalColumnVector
>         at org.apache.hadoop.hive.ql.exec.vector.DecimalColumnVector.setElement(DecimalColumnVector.java:130)
>         at org.apache.hadoop.hive.ql.exec.vector.expressions.IfExprColumnNull.evaluate(IfExprColumnNull.java:125)
>         at org.apache.hadoop.hive.ql.exec.vector.expressions.aggregates.VectorUDAFSumDecimal.aggregateInputSelection(VectorUDAFSumDecimal.java:113)
>         at org.apache.hadoop.hive.ql.exec.vector.VectorGroupByOperator$ProcessingModeBase.processAggregators(VectorGroupByOperator.java:221)
>         at org.apache.hadoop.hive.ql.exec.vector.VectorGroupByOperator$ProcessingModeHashAggregate.doProcessBatch(VectorGroupByOperator.java:414)
> {code}
> https://github.com/apache/hive/blob/master/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorizationContext.java#L3950



--
This message was sent by Atlassian Jira
(v8.3.4#803005)