srielau commented on code in PR #36307:
URL: https://github.com/apache/spark/pull/36307#discussion_r858856816


##########
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:
   ```suggestion
                   """Python UDF in the ON clause of a %s JOIN.""" % 
type_string,
   ```



-- 
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]

Reply via email to