dotjdk commented on issue #5676: URL: https://github.com/apache/iceberg/issues/5676#issuecomment-1233913590
I couldn't wait, so I just tried it. Same result using `DROP` and `ADD` ```sql create table data.test_table (ts timestamp not null, day_of_ts date) using iceberg partitioned by (day_of_ts); alter table data.test_table SET TBLPROPERTIES ('format-version' = '2'); refresh table data.test_table; alter table data.test_table DROP PARTITION FIELD day_of_ts; refresh table data.test_table; alter table data.test_table add partition field days(ts); refresh table data.test_table; alter table data.test_table drop column day_of_ts; refresh table data.test_table; select * from data.test_table; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org