You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Parth Chandra (JIRA)" <ji...@apache.org> on 2015/03/05 00:38:38 UTC

[jira] [Updated] (DRILL-520) ceiling/ceil and floor functions return decimal value instead of an integer

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

Parth Chandra updated DRILL-520:
--------------------------------
    Fix Version/s:     (was: 0.9.0)
                   Future

> ceiling/ceil and floor functions return decimal value instead of an integer
> ---------------------------------------------------------------------------
>
>                 Key: DRILL-520
>                 URL: https://issues.apache.org/jira/browse/DRILL-520
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Functions - Drill
>    Affects Versions: 1.0.0
>            Reporter: Krystal
>            Assignee: Mehant Baid
>            Priority: Critical
>             Fix For: Future
>
>         Attachments: DRILL-520.patch
>
>
> Ran the following queries in drill:
> 0: jdbc:drill:schema=dfs> select ceiling(55.8) from dfs.`student` where rownum=11;
> +------------+
> |   EXPR$0   |
> +------------+
> | 56.0       |
> +------------+
> 0: jdbc:drill:schema=dfs> select floor(55.8) from dfs.`student` where rownum=11;
> +------------+
> |   EXPR$0   |
> +------------+
> | 55.0       |
> +------------+
> The same queries executed from oracle, postgres and mysql returned integer values of 56 and 55.
> Found the following description of the two functions from http://users.atw.hu/sqlnut/sqlnut2-chp-4-sect-4.html :
> Ceil/Ceiling:
> Rounds a noninteger value upwards to the next greatest integer. Returns an integer value unchanged.
> Floor:
> Rounds a noninteger value downwards to the next least integer. Returns an integer value unchanged.



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