MaxGekk commented on a change in pull request #28343:
URL: https://github.com/apache/spark/pull/28343#discussion_r416351119
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/predicates.scala
##########
@@ -519,7 +520,9 @@ case class InSet(child: Expression, hset: Set[Any]) extends
UnaryExpression with
override def sql: String = {
val valueSQL = child.sql
- val listSQL = hset.toSeq.map(Literal(_).sql).mkString(", ")
+ val listSQL = hset.toSeq
+ .map(elem => Literal(convertToScala(elem, child.dataType)).sql)
Review comment:
So, the problem is Literal requires external types but elem has internal
Catalyst's type
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]