alippai commented on issue #38722:
URL: https://github.com/apache/arrow/issues/38722#issuecomment-1811728162
A small example:
```python
import pyarrow as pa
import pyarrow.parquet as pq
import duckdb
print(pa.__version__) #13.0.0
print(duckdb.__version__) #0.9.2
t = pa.Table.from_pydict({"a": [1.0]})
pq.write_table(t, '/tmp/out.parquet', version='2.6',
data_page_version='2.0', use_dictionary=[])
duckdb.sql("select encodings from
parquet_metadata('/tmp/out.parquet')").df() #RLE, PLAIN
```
--
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]