You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Donggu Kang (Jira)" <ji...@apache.org> on 2023/01/30 05:46:00 UTC

[jira] [Created] (SPARK-42235) Missing typing for pandas_udf

Donggu Kang created SPARK-42235:
-----------------------------------

             Summary: Missing typing for pandas_udf
                 Key: SPARK-42235
                 URL: https://issues.apache.org/jira/browse/SPARK-42235
             Project: Spark
          Issue Type: Bug
          Components: PySpark
    Affects Versions: 3.3.0
            Reporter: Donggu Kang


The typing stub `site-packages/pyspark/sql/pandas/functions.pyi` has a list of possible signatures of `pandas_udf`. It is missing a case
 
```
import pyspark.sql.functions as F

# PySpark3's typing stub error
@F.pandas_udf(
returnType=LongType()
)
def my_udf(dummy_col: pd.Series) -> pd.Series:
...
```
 
The stub defined `pandas_udf(f, returnType, functionType)` but not `pandas_udf(f, returnType)`. The official documentation recommends using a return type hint instead of `returnType`.
 
```py
# defined
@overload def pandas_udf( f: PandasScalarToScalarFunction, returnType: Union[AtomicDataTypeOrString, ArrayType], functionType: PandasScalarUDFType, ) -> UserDefinedFunctionLike: ...
 
# not defined
@overload def pandas_udf( f: PandasScalarToScalarFunction, returnType: Union[AtomicDataTypeOrString, ArrayType]) -> UserDefinedFunctionLike: ...
```
 
 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org