ALTER TABLE SET TBLPROPERTIES
Adds properties to an Iceberg table and sets their assigned values.
In accordance with Iceberg
specifications
Synopsis
ALTER TABLE [
db_name
.]table_name
SET TBLPROPERTIES ('property_name
' = 'property_value
' [ , ... ])
Example
ALTER TABLE iceberg_table SET TBLPROPERTIES ( 'format'='parquet', 'write_compression'='snappy', 'optimize_rewrite_delete_file_threshold'='10' )