You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Victoria Markman (JIRA)" <ji...@apache.org> on 2015/06/23 19:39:00 UTC

[jira] [Updated] (DRILL-3343) Seemingly incorrect result with SUM window functions and float data type

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

Victoria Markman updated DRILL-3343:
------------------------------------
    Attachment: create_table.tar
                voter_hive
                queries.tar

> Seemingly incorrect result with SUM window functions and float data type
> ------------------------------------------------------------------------
>
>                 Key: DRILL-3343
>                 URL: https://issues.apache.org/jira/browse/DRILL-3343
>             Project: Apache Drill
>          Issue Type: Bug
>    Affects Versions: 1.0.0
>            Reporter: Victoria Markman
>         Attachments: create_table.tar, queries.tar, voter_hive
>
>
> While running query below against voter_hive (drill table), where contributions field is defined as "float" (4 byte floating point number in drill) I get a value of SUM that is different from result generated by postgres.
> {code}
> select 
>           registration, 
>           age, 
>           name, 
>           sum(contributions) over w  
> from   voter_hive 
> window w AS (partition by registration order by age rows unbounded preceding) 
> order by 
>           registration, 
>           age, 
>           name;
> {code}
> Find attached:
> 1. Query + result generated by Postgres (queries.tar)
> 2. voter_hive parquet file
> 3. create_table.tar - contains CTAS statement + csv file (if you want to create table yourself)



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