tolleybot opened a new issue, #39645:
URL: https://github.com/apache/arrow/issues/39645
### Describe the bug, including details regarding any error messages,
version, and platform.
### Description
There's an issue when reading encrypted Parquet files using `read_table`
with `decryption_properties`. When `pyarrow.data` is available, reading and
decrypting the file fails due to missing decryption properties.
### Expected Behavior
`read_table` should successfully read and decrypt encrypted Parquet files
when provided with `decryption_properties`.
### Current Behavior
The decryption process fails, indicating that decryption properties are not
correctly passed or utilized.
### Steps to Reproduce
1. Read an encrypted Parquet file using `read_table` with
`decryption_properties`.
### Simple Code Example to Reproduce
```python
from pyarrow.parquet import read_table
# <creation of decryption properties >
# Replace 'table' with the path to your encrypted Parquet file
read_table('path/to/encrypted/parquet/file',
decryption_properties=decryption_properties)
```
### Potential Solution
Ensure that the `decryption_properties` argument is correctly passed through.
### Impact on Users
This issue may not affect users not working with encrypted Parquet datasets.
The intended behavior for encrypted dataset decryption currently does not
function as expected.
### Component(s)
Parquet
--
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]