File tree Expand file tree Collapse file tree 3 files changed +757
-0
lines changed Expand file tree Collapse file tree 3 files changed +757
-0
lines changed Original file line number Diff line number Diff line change @@ -542,6 +542,7 @@ def __hash__(self):
542
542
"pyspark.sql.tests.arrow.test_arrow_grouped_map" ,
543
543
"pyspark.sql.tests.arrow.test_arrow_python_udf" ,
544
544
"pyspark.sql.tests.arrow.test_arrow_udf" ,
545
+ "pyspark.sql.tests.arrow.test_arrow_udf_grouped_agg" ,
545
546
"pyspark.sql.tests.arrow.test_arrow_udf_scalar" ,
546
547
"pyspark.sql.tests.pandas.test_pandas_cogrouped_map" ,
547
548
"pyspark.sql.tests.pandas.test_pandas_grouped_map" ,
Original file line number Diff line number Diff line change @@ -456,6 +456,7 @@ def calculate(iterator: Iterator[pd.Series]) -> Iterator[pd.Series]:
456
456
if kind == "arrow" and eval_type not in [
457
457
PythonEvalType .SQL_SCALAR_ARROW_UDF ,
458
458
PythonEvalType .SQL_SCALAR_ARROW_ITER_UDF ,
459
+ PythonEvalType .SQL_GROUPED_AGG_ARROW_UDF ,
459
460
None ,
460
461
]: # None means it should infer the type from type hints.
461
462
raise PySparkTypeError (
You can’t perform that action at this time.
0 commit comments