You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Trino 436 (Iceberg 1.4.3), write.parquet.compression-codec property is also being set even if the file-format is not parquet. This doesn't happen in Trino 428 (Iceberg 1.3.1), not sure about Trino 431 to Trino 435 (Iceberg 1.4.1)
Is this an intended behavior?
trino> CREATE TABLE test.property_test (c1 integer) WITH (format = 'ORC');
CREATE TABLE
trino> SELECT * FROM test."property_test$properties";
key | value
---------------------------------+-------
write.format.default | ORC
write.parquet.compression-codec | zstd
(2 rows)
trino> CREATE TABLE test.property_test (c1 integer) WITH (format = 'AVRO');
CREATE TABLE
trino> SELECT * FROM test."property_test$properties";
key | value
---------------------------------+-------
write.format.default | AVRO
write.parquet.compression-codec | zstd
(2 rows)
In Trino 436 (Iceberg 1.4.3),
write.parquet.compression-codec
property is also being set even if the file-format is not parquet. This doesn't happen in Trino 428 (Iceberg 1.3.1), not sure about Trino 431 to Trino 435 (Iceberg 1.4.1)Is this an intended behavior?
Ref:
apache/iceberg#8593 (comment)
https://github.com/trinodb/trino/pull/19434/files#diff-f5cd96d1ec33fae497df9613afcefff034f01c99adf961e927ccd76e637c7b81R4707
The text was updated successfully, but these errors were encountered: