amaliujia commented on code in PR #40056:
URL: https://github.com/apache/spark/pull/40056#discussion_r1108958235
##########
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:
Just wondering if this will be a kind of breaking change that some users use
toString already to match plans, etc.
cc @cloud-fan
--
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]