You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Ning Zhang (JIRA)" <ji...@apache.org> on 2009/08/20 05:04:15 UTC

[jira] Updated: (HIVE-774) Fix the behavior of "/" and add "DIV"

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

Ning Zhang updated HIVE-774:
----------------------------

    Attachment: hive-774.patch

> Fix the behavior of "/" and add "DIV"
> -------------------------------------
>
>                 Key: HIVE-774
>                 URL: https://issues.apache.org/jira/browse/HIVE-774
>             Project: Hadoop Hive
>          Issue Type: Bug
>    Affects Versions: 0.4.0, 0.5.0
>            Reporter: Zheng Shao
>            Assignee: Ning Zhang
>         Attachments: hive-774.patch
>
>
> In hive, "select 3/2" will return 1 while MySQL returns 1.5.
> See http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html#operator_div for details.
> {code}
> mysql> select 3/2;
> +--------+
> | 3/2    |
> +--------+
> | 1.5000 |
> +--------+
> 1 row in set (0.00 sec)
> mysql> select 3 div 2;
> +---------+
> | 3 div 2 |
> +---------+
> |       1 |
> +---------+
> 1 row in set (0.00 sec)
> mysql> select -3 div 2;
> +----------+
> | -3 div 2 |
> +----------+
> |       -1 |
> +----------+
> 1 row in set (0.00 sec)
> mysql> select -3 div -2;
> +-----------+
> | -3 div -2 |
> +-----------+
> |         1 |
> +-----------+
> 1 row in set (0.00 sec)
> mysql> select 3 div -2;
> +----------+
> | 3 div -2 |
> +----------+
> |       -1 |
> +----------+
> 1 row in set (0.00 sec)
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.