Description
sql("SELECT udf1(udf2(42))").explain()
== Physical Plan == *Project [UDF(UDF(42)) AS UDF(UDF(42))#7] +- Scan OneRowRelation[]
Although udf1 and udf2 are different UDF, but the name in the plans are the same. It looks confusing.
sql("SELECT udf1(udf2(42))").explain()
== Physical Plan == *Project [UDF(UDF(42)) AS UDF(UDF(42))#7] +- Scan OneRowRelation[]
Although udf1 and udf2 are different UDF, but the name in the plans are the same. It looks confusing.