mroeschke opened a new issue, #38655:
URL: https://github.com/apache/arrow/issues/38655

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   ```python
   In [1]: import pyarrow as pa
   
   In [2]: pa.__version__
   Out[2]: '14.0.0'
   
   In [3]: import pyarrow.compute as pc
   
   In [4]: from datetime import  datetime
   
   In [5]: arr = pa.array([datetime(2019, 1, 3, 5, 11)]*50)
   
   In [6]: pc.iso_calendar(arr)
   Out[6]: 
   <pyarrow.lib.StructArray object at 0x1500ff640>
   -- is_valid: all not null
   -- child 0 type: int64
     [
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       ...
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0
     ]
   -- child 1 type: int64
     [
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       2019,
       ...
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0
     ]
   -- child 2 type: int64
     [
       1,
       1,
       1,
       1,
       1,
       1,
       1,
       1,
       1,
       1,
       ...
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0,
       0
     ]
   
   In [7]: pc.iso_calendar(arr)
   zsh: segmentation fault  ipython
   ```
   
   ### Component(s)
   
   Python


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to