cloud-fan commented on code in PR #47943:
URL: https://github.com/apache/spark/pull/47943#discussion_r1740884464
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/v2Commands.scala:
##########
@@ -1571,3 +1572,25 @@ case class SetVariable(
override protected def withNewChildInternal(newChild: LogicalPlan):
SetVariable =
copy(sourceQuery = newChild)
}
+
+/**
+ * The logical plan for the CALL command.
+ */
+case class Call(procedure: LogicalPlan, args: Seq[Expression]) extends
UnaryCommand {
Review Comment:
shall we extend `UnaryRunnableCommand` to avoid creating a corresponding
physical node?
--
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]