[ 
https://issues.apache.org/jira/browse/ARROW-13522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17391675#comment-17391675
 ] 

A. Coady commented on ARROW-13522:
----------------------------------

Didn't reproduce on ubuntu; seems to macOS only. And updated the example.
 * macOS 11.5.1
 * pyarrow-5.0.0-cp39-cp39-macosx_10_13_x86_64.whl

> Regression with compute `utf8_*trim` functions.
> -----------------------------------------------
>
>                 Key: ARROW-13522
>                 URL: https://issues.apache.org/jira/browse/ARROW-13522
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C++, Python
>    Affects Versions: 5.0.0
>            Reporter: A. Coady
>            Priority: Major
>
> {code:python}
> import pyarrow as pa
> import pyarrow.compute as pc
> arr = pa.array(["ab", "ac"])
> r = pc.utf8_ltrim(arr, characters="a")
> assert r.to_pylist() == ["b", "c"], r
> r = pc.utf8_rtrim(arr, characters="b")
> assert r.to_pylist() == ["a", "ac"], r
> {code}
> Seems to go awry after the first match.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to