You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tajo.apache.org by "hyoungjunkim (JIRA)" <ji...@apache.org> on 2013/12/01 07:16:35 UTC

[jira] [Created] (TAJO-350) Implement round, floor, ceil

hyoungjunkim created TAJO-350:
---------------------------------

             Summary: Implement round, floor, ceil
                 Key: TAJO-350
                 URL: https://issues.apache.org/jira/browse/TAJO-350
             Project: Tajo
          Issue Type: New Feature
            Reporter: hyoungjunkim
            Priority: Minor


h3. Function Definition
{code}
INT8 round(value FLOAT8)
INT8 floor(value FLOAT8)
INT8 ceil(value FLOAT8)
{code}

h3. Example
round
{code}
select round(5.1) => 5
select round(5.5) => 6
select round(5.6) => 6
select round(-5.1) => -5
select round(-5.5) => -6
select round(-5.6) => -6
{code}

floor
{code}
select round(5.1) => 5
select round(5.5) => 5
select round(-5.1) => -6
select round(-5.6) => -6
{code}

ceil
{code}
select round(5.1) => 6
select round(5.5) => 6
select round(-5.1) => -5
select round(-5.6) => -5
{code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)