andrea-licata opened a new issue, #47279:
URL: https://github.com/apache/arrow/issues/47279

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   Hi,
   
   I am receiving the following error when trying the method` 
pyarrow.Table.nbytes` on a table that has a column with _string_view_ type
   
   `ArrowTypeError: Extracting byte ranges not supported for type string_view
   `
   
   ## MRE 
   
   ``` py 
   import pyarrow as pa
   
   schema = pa.schema([pa.field("a", pa.string_view())])
   table = pa.Table.from_pylist([{"a": "1"}], schema=schema)
   table.nbytes```
   
   ### 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