Shubhambhusate commented on code in PR #53691:
URL: https://github.com/apache/spark/pull/53691#discussion_r2711654679
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala:
##########
@@ -6659,10 +6659,12 @@ class AstBuilder extends DataTypeAstBuilder
}.getOrElse(Option(ctx.SET).map { _ =>
visitOperatorPipeSet(ctx, left)
}.getOrElse(Option(ctx.DROP).map { _ =>
- val ids: Seq[String] = visitIdentifierSeq(ctx.identifierSeq())
+ val ids: Seq[Seq[String]] =
+ ctx.multipartIdentifierList().multipartIdentifier.asScala.toSeq.map(
+ _.parts.asScala.map(_.getText).toSeq)
Review Comment:
I have made the changes can you review it
--
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]