Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/arrow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d92d55740398c812860dec21e3713e5e52254756
Choose a base ref
..
head repository: apache/arrow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0d4b9a08e5c69e99c03877ce413c1ae3865b7038
Choose a head ref
Showing with 2 additions and 1 deletion.
  1. +2 −1 python/pyarrow/tests/parquet/test_encryption.py
3 changes: 2 additions & 1 deletion python/pyarrow/tests/parquet/test_encryption.py
Original file line number Diff line number Diff line change
@@ -539,5 +539,6 @@ def test_encrypted_parquet_read_table(tempdir, data_table, basic_encryption_conf
assert data_table.equals(result_table)

# Read the encrypted parquet folder using read_table
result_table = pq.read_table(tempdir, decryption_properties=file_decryption_properties)
result_table = pq.read_table(
tempdir, decryption_properties=file_decryption_properties)
assert data_table.equals(result_table)