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
Iceberg supports adding and removing partition columns after a table has been created, we should have ALTER TABLE statements that perform these operations.
Syntax-wise, the way it looks in Spark is ALTER TABLE ... ADD/DROP PARTITION FIELD ....
We could do ALTER TABLE ... SET PROPERTIES partition = ARRAY[<partition>], the main usability problem I see is that you would have to re-specify any partitions you don't want removed when updating the list.
Alternatively, we could also have an ALTER TABLE ... EXECUTE <add/drop>_partition procedure
The text was updated successfully, but these errors were encountered:
Iceberg supports adding and removing partition columns after a table has been created, we should have
ALTER TABLE
statements that perform these operations.#1324
Syntax-wise, the way it looks in Spark is
ALTER TABLE ... ADD/DROP PARTITION FIELD ...
.We could do
ALTER TABLE ... SET PROPERTIES partition = ARRAY[<partition>]
, the main usability problem I see is that you would have to re-specify any partitions you don't want removed when updating the list.Alternatively, we could also have an ALTER TABLE ... EXECUTE <add/drop>_partition procedure
The text was updated successfully, but these errors were encountered: