SPRKSCL1141

org.apache.spark.sql.functions.stddev_pop has a workaround.

Description

This issue appears when the tool detects the usage of org.apache.spark.sql.functions.stddev_pop which has a workaround.

Input code

val result = stddev_pop("columnName")

Output code

/*EWI: SPRKSCL1141 => org.apache.spark.sql.functions.stddev_pop has a workaround, see documentation for more info*/
val result = stddev_pop("columnName")

Scenarios

This function has two overloads.

1. stddev_pop(e: Column)

Action: does not need any change.

2. stddev_pop(columnName: String)

Action: convert the param to Column type using the com.snowflake.snowpark.functions.col function. For example:

val result = stddev_pop(col("columnName"))

Recommendation

  • For more support, you can email us at snowconvert-info@snowflake.com. If you have a contract for support with Snowflake, reach out to your sales engineer and they can direct your support needs.