SPRKPY1013
pyspark.sql.functions.acosh has a workaround
Warning.
This issue appears when the tool detects the usage of pyspark.sql.functions.acosh which has a workaround.
Input code:
col = acosh(colName)
Output code:
#EWI: SPRKPY1013 => pyspark.sql.functions.acosh has a workaround, see documentation for more info
col = acosh(colName)
acosh(col: ColumnOrName)
Action: There is no acosh implementation but "call_function" can be used instead, using "acosh" as the first parameter, and colName as the second one.
col = call_function("acosh", colName)
- For more support, you can email us at [email protected]. If you have a contract for support with Snowflake, reach out to your sales engineer and they can direct your support needs.
Last modified 21d ago