cloud-fan commented on code in PR #36307:
URL: https://github.com/apache/spark/pull/36307#discussion_r858764568
##########
python/pyspark/sql/tests/test_udf.py:
##########
@@ -258,8 +258,7 @@ def test_udf_not_supported_in_join_condition(self):
def runWithJoinType(join_type, type_string):
with self.assertRaisesRegex(
AnalysisException,
- """Using PythonUDF in join condition of join type "%s" is not
supported"""
- % type_string,
+ """Python UDF in the ON clause of a "%s" JOIN.""" %
type_string,
Review Comment:
do you mean the complete error message will be something like `Python UDF in
the ON clause of a "INNER" JOIN`? This looks a bit weird, and I think `Python
UDF in the ON clause of a INNER JOIN` is better
--
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]