We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea48c7a commit bb51125Copy full SHA for bb51125
dask_sql/physical/rel/logical/aggregate.py
@@ -83,7 +83,8 @@ def get_supported_aggregation(self, series):
83
if dask_cudf is not None and isinstance(series, dask_cudf.Series):
84
return native_agg
85
86
- ## If pandas StringDtype return native aggregation
+ ## If pandas StringDtype native aggregation works
87
+ ## and with ObjectDtype and Nulls native aggregation can fail
88
if isinstance(series, dd.Series) and isinstance(
89
series.dtype, pd.StringDtype
90
):
0 commit comments