You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Mehant Baid (JIRA)" <ji...@apache.org> on 2014/07/12 09:39:05 UTC

[jira] [Updated] (DRILL-1121) decimal division rounding error

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

Mehant Baid updated DRILL-1121:
-------------------------------

    Attachment: DRILL-1121.patch

> decimal division rounding error
> -------------------------------
>
>                 Key: DRILL-1121
>                 URL: https://issues.apache.org/jira/browse/DRILL-1121
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Functions - Drill
>            Reporter: Chun Chang
>            Assignee: Mehant Baid
>         Attachments: DRILL-1121.patch
>
>
> #Wed Jul 09 10:28:32 PDT 2014
> git.commit.id.abbrev=810a204
> In the following decimal division, the rounding of number large than 5 should be rounded up.
> postgres:
> foodmart=# select cast('123456789' as decimal(9,0)) / cast('12345678901234.56789123456789' as decimal(28,14)) from data limit 1;
>           ?column?
> ----------------------------
>  0.000009999999998999999999
> drill:
> 0: jdbc:drill:schema=dfs> select cast('123456789' as decimal(9,0)) / cast('12345678901234.56789123456789' as decimal(28,14)) from data limit 1;
> +------------+
> |   EXPR$0   |
> +------------+
> | 0.000009999999998 |
> The last digit should be 9.



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