blob: fc5d8bde38947545bcfeb27a8fde9fc7691e521b [file] [log] [blame]
====
---- QUERY
# Insert parquet table with unsupported codec
create table if not exists parquet_invalid_codec (x BIGINT) stored as parquet
location '$FILESYSTEM_PREFIX/test-warehouse/parquet_invalid_codec';
====
---- QUERY
insert overwrite table parquet_invalid_codec select 1;
---- CATCH
Invalid parquet compression codec bzip2
====
---- QUERY
drop table parquet_invalid_codec
====