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 46ff2c1 commit f2b448dCopy full SHA for f2b448d
pandas/core/arrays/arrow/array.py
@@ -1696,7 +1696,7 @@ def _str_accumulate(
1696
# the first NA value onward.
1697
idx = pc.index(na_mask, True).as_py()
1698
tail = pa.nulls(len(pa_array) - idx, type=pa_array.type)
1699
- pa_array = pa_array[:idx].combine_chunks()
+ pa_array = pa_array[:idx]
1700
1701
# error: Cannot call function of unknown type
1702
pa_result = pa.array(np_func(pa_array), type=pa_array.type) # type: ignore[operator]
0 commit comments