cloud-fan commented on code in PR #48820:
URL: https://github.com/apache/spark/pull/48820#discussion_r1853170102
##########
python/pyspark/sql/tests/test_subquery.py:
##########
@@ -189,7 +181,7 @@ def test_scalar_subquery_against_local_relations(self):
"c1",
(
self.spark.table("t2")
- .where(sf.col("c2").outer() == sf.col("c2"))
+ .where(sf.outer(sf.col("t1.c2")) == sf.col("t2.c2"))
Review Comment:
This one can be `sf.outer("t1.c2")`
--
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]