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

    https://github.com/apache/spark/pull/20217#discussion_r160949342
  
    --- Diff: python/pyspark/sql/catalog.py ---
    @@ -255,26 +255,67 @@ def registerFunction(self, name, f, 
returnType=StringType()):
             >>> _ = spark.udf.register("stringLengthInt", len, IntegerType())
             >>> spark.sql("SELECT stringLengthInt('test')").collect()
             [Row(stringLengthInt(test)=4)]
    +        """
    +
    +        # This is to check whether the input function is a wrapped/native 
UserDefinedFunction
    +        if hasattr(f, 'asNondeterministic'):
    --- End diff --
    
    The current way is simple. Any hole?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to