AlenkaF opened a new pull request, #14493:
URL: https://github.com/apache/arrow/pull/14493
Before this PR:
```python
table = pa.table({"a": [1, 2, 3], "b": ["a", "b", "c"]})
orc.write_table(table, 'example.orc')
orc.read_table('example.orc', columns=['b', 'a'])
# pyarrow.Table
# a: int64
# b: string
# ----
# a: [[1,2,3]]
# b: [["a","b","c"]]
```
After this PR:
```python
table = pa.table({"a": [1, 2, 3], "b": ["a", "b", "c"]})
orc.write_table(table, 'example.orc')
orc.read_table('example.orc', columns=['b', 'a'])
# pyarrow.Table
# b: string
# a: int64
# ----
# b: [["a","b","c"]]
# a: [[1,2,3]]
```
--
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]