Github user zjffdu commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17222#discussion_r110113683
  
    --- Diff: python/pyspark/sql/tests.py ---
    @@ -436,6 +436,20 @@ def test_udf_with_order_by_and_limit(self):
             res.explain(True)
             self.assertEqual(res.collect(), [Row(id=0, copy=0)])
     
    +    def test_non_existed_udf(self):
    +        try:
    +            self.spark.udf.registerJavaFunction("udf1", "non_existed_udf")
    +            self.fail("should fail due to can not load java udf class")
    +        except py4j.protocol.Py4JError as e:
    +            self.assertTrue("Can not load class non_existed_udf" in e.desc)
    +
    +    def test_non_existed_udaf(self):
    +        try:
    +            self.spark.udf.registerJavaFunction("udf1", "non_existed_udaf")
    --- End diff --
    
    Correct, fixed 😄 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to