.withColumn("is_designer_present", when(array_contains(col("list_of_designers"),$"dept_resp"),1).otherwise(0))java.lang.RuntimeException: Unsupported literal type class org.apache.spark.sql.ColumnName dept_respat org.apache.spark.sql.cata
using array_contains to determine if element is within list_of_values sdf.withColumn), .withColumn( spark_fns.array_contains(sdf.list_of_values, "2" )
.w