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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   Using the same dataset created in the top post of 
https://github.com/apache/arrow/issues/39637:
   
   ```
   import pyarrow.dataset as ds
   dataset = ds.dataset("test_string_view/", format="ipc")
   
   >>> dataset.schema
   Out[26]: 
   a: int64
   b: string_view
   
   >>> dataset.to_table(columns=["a"])
   pyarrow.Table
   a: int64
   ----
   a: [[1,2,3]]
   
   >>> dataset.to_table(columns=["b"])
   Segmentation fault (core dumped)
   ```
   
   So selecting the integer column works fine, but when selecting the 
string_view column, it crashes.
   
   ### Component(s)
   
   C++


-- 
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