You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Sameer Agarwal (JIRA)" <ji...@apache.org> on 2018/01/08 20:45:00 UTC

[jira] [Updated] (SPARK-16323) Avoid unnecessary cast when doing integral divide

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

Sameer Agarwal updated SPARK-16323:
-----------------------------------
    Target Version/s: 2.4.0  (was: 2.3.0)

> Avoid unnecessary cast when doing integral divide
> -------------------------------------------------
>
>                 Key: SPARK-16323
>                 URL: https://issues.apache.org/jira/browse/SPARK-16323
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>            Reporter: Sean Zhong
>            Priority: Minor
>
> This is a follow up of issue SPARK-15776
> *Problem:*
> For Integer divide operator div:
> {code}
> scala> spark.sql("select 6 div 3").explain(true)
> ...
> == Analyzed Logical Plan ==
> CAST((6 / 3) AS BIGINT): bigint
> Project [cast((cast(6 as double) / cast(3 as double)) as bigint) AS CAST((6 / 3) AS BIGINT)#5L]
> +- OneRowRelation$
> ...
> {code}
> For performance reason, we should not do unnecessary cast {{cast(xx as double)}}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org