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

   ### Describe the enhancement requested
   
   Before
   ```
   >>> import pyarrow as pa
   >>> n_legs = pa.array([2, 2, 4, 4, 5, 100])
   >>> animals = pa.array(["Flamingo", "Parrot", "Dog", "Horse", "Brittle 
stars", "Centipede"])
   >>> batch = pa.record_batch([n_legs, animals], names=["n_legs", "animals"])
   
   >>> batch
   pyarrow.RecordBatch
   n_legs: int64
   animals: string
   ```
   
   After
   ```
   >>> batch
   pyarrow.RecordBatch
   n_legs: int64
   animals: string
   ----
   n_legs: [2,2,4,4,5,100]
   animals: ["Flamingo","Parrot","Dog","Horse","Brittle stars","Centipede"]
   ```
   
   ### 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