hvanhovell commented on code in PR #40056:
URL: https://github.com/apache/spark/pull/40056#discussion_r1108975147
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala:
##########
@@ -459,7 +459,7 @@ case class UnresolvedStar(target: Option[Seq[String]])
extends Star with Unevalu
}
}
- override def toString: String = target.map(_ + ".").getOrElse("") + "*"
+ override def toString: String = target.map(_.mkString("", ".",
".")).getOrElse("") + "*"
Review Comment:
this is already merged code. I hope they don't rely on this because moving
from 2.12 to 2.13 would break their code.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]