dotjdk
dotjdk
> Yes, it still happens with `REFRESH TABLE` in between. The last two examples you posted from the `TestAlterTablePartitionFields` testcase looks like exactly what I am doing, except the I...
I expected `REPLACE PARTITION FIELD` to be a single snapshot operation version of `DROP` and `ADD`, but that may be wrong. I haven`t tested this doing it in two operations....
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...