amaliujia commented on code in PR #38607:
URL: https://github.com/apache/spark/pull/38607#discussion_r1019829371
##########
python/pyspark/sql/connect/plan.py:
##########
@@ -712,6 +712,8 @@ def __init__(self, child: Optional["LogicalPlan"], alias:
str) -> None:
def plan(self, session: "RemoteSparkSession") -> proto.Relation:
rel = proto.Relation()
+ if self._child is not None:
+ rel.subquery_alias.input.CopyFrom(self._child.plan(session))
Review Comment:
Done.
BTW the e2e tests are slow. Not sure if we want to expand connect e2e test
suites a lot eventually which could slow down the run job.
--
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]