Skip to content

Commit a71776d

Browse files
committed
fix: 'value_columns' and 'column_labels' have equal length
1 parent 991a363 commit a71776d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/pandas/core/methods/describe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _get_aggs_for_dtype(dtype) -> list[aggregations.UnaryAggregateOp]:
125125
or (
126126
isinstance(dtype, pd.ArrowDtype)
127127
and pa.types.is_struct(dtype.pyarrow_dtype)
128-
and dtype != dtypes.OBJ_REF_DTYPE
128+
and not dtypes.contains_db_dtypes_json_dtype(dtype)
129129
)
130130
):
131131
return [aggregations.count_op, aggregations.nunique_op]

0 commit comments

Comments
 (0)