You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Mangesh Rananavare (Jira)" <ji...@apache.org> on 2019/09/12 09:02:00 UTC

[jira] [Updated] (SPARK-29067) divide function does not throw an error, if a number is not passed to it

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

Mangesh Rananavare updated SPARK-29067:
---------------------------------------
    Description: 
Ex. 

dataset.where(col("col1").divide("col2")).$greater(10)).show();

If you see closely I forgot to wrap the divide parameter "col2" into col() function, so basically I pass a String. This give me a NumberFormatException!, but instead the where clause resolves to null and I get a empty dataset as a result of above computation!!

  was:
Ex. 

dataset.where(col("col1").divide("col2")).$greater(10)).show();

If you see closely I forgot to put enclose the divide parameter "col2" into col() function, so basically I pass a String. This give me a NumberFormatException!, but instead the where clause resolves to null and I get a empty dataset as a result of above computation!!


> divide function does not throw an error, if a number is not passed to it
> ------------------------------------------------------------------------
>
>                 Key: SPARK-29067
>                 URL: https://issues.apache.org/jira/browse/SPARK-29067
>             Project: Spark
>          Issue Type: Bug
>          Components: Java API
>    Affects Versions: 2.4.3
>         Environment: Apache Spark Java : 2.4.3
>            Reporter: Mangesh Rananavare
>            Priority: Major
>
> Ex. 
> dataset.where(col("col1").divide("col2")).$greater(10)).show();
> If you see closely I forgot to wrap the divide parameter "col2" into col() function, so basically I pass a String. This give me a NumberFormatException!, but instead the where clause resolves to null and I get a empty dataset as a result of above computation!!



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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