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

xiong duan resolved CALCITE-4838.
---------------------------------
    Fix Version/s: 1.38.0
       Resolution: Fixed

> Add RoundingMode in RelDataTypeSystem to specify the rounding behavior
> ----------------------------------------------------------------------
>
>                 Key: CALCITE-4838
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4838
>             Project: Calcite
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 1.27.0
>            Reporter: xiong duan
>            Assignee: xiong duan
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.38.0
>
>
> According to the SQL Strandard about how to cast an approximate numeric to 
> int in different database have different RoundingMode. for example:
> In PostgreSQL、Mysql、Oracle(RoundingMode.HALF_UP):
> {code:java}
> select cast(5.1 as int) return 5
> select cast(5.5 as int) return 6
> select cast(-5.5 as int) return -6{code}
> In Calcite、Sql Server 2008(RoundingMode.DOWN):
> {code:java}
> select cast(5.1 as int) return 5
> select cast(5.5 as int) return 5
> select cast(-5.5 as int) return -5
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to