20 lines
844 B
SQL
20 lines
844 B
SQL
# name: test/parquet/encrypted_parquet.test
|
|
# description: Test Parquet reader on data/parquet-testing/encryption
|
|
# group: [parquet]
|
|
|
|
# TODO: re-enable these tests once we encrypt the full Parquet Encryption spec
|
|
# for now, parquet crypto tests are in test/sql/copy/parquet/parquet_encryption.test_slow
|
|
mode skip
|
|
|
|
require parquet
|
|
|
|
statement error
|
|
SELECT * FROM parquet_scan('data/parquet-testing/encryption/encrypted_footer.parquet') limit 50;
|
|
----
|
|
Invalid Input Error: Encrypted Parquet files are not supported for file 'data/parquet-testing/encryption/encrypted_footer.parquet'
|
|
|
|
statement error
|
|
SELECT * FROM parquet_scan('data/parquet-testing/encryption/encrypted_column.parquet') limit 50;
|
|
----
|
|
Invalid Error: Failed to read Parquet file "data/parquet-testing/encryption/encrypted_column.parquet": Encrypted Parquet files are not supported
|