SPRKSCL1115
org.apache.spark.sql.functions.round has a workaround.
Description
Input code
val result = round(someColumn, 5)Output code
/*EWI: SPRKSCL1115 => org.apache.spark.sql.functions.round has a workaround, see documentation for more info*/
val result = round(someColumn, 5)Scenarios
val result = round(someColumn, col(5))