SPRKPY1044
pyspark.sql.functions.split has workaround
Description
F.split('col', '\\|')#EWI: SPRKPY1044 => pyspark.sql.functions.split has a workaround, see the documentation for more info
F.split('col', '\\|')Scenarios
F.split('col', lit('\\|'))
# the result of lit will be sent to the split functionF.split('col', '\\|', 1)
# the limit parameter is not supported by snowflake