apache / iceberg

Apache Iceberg
https://iceberg.apache.org/
Apache License 2.0
6.49k stars 2.24k forks source link

Replace dropped `PartitonField` with `AnyType` #11542

Closed Fokko closed 2 days ago

Fokko commented 1 week ago

When a field has previously been dropped from the schema, we don't know the type until we have the Avro schema of the partition struct, instead, it would be an option to replace this with an AnyType. This is okay since the field is not relevant for pruning.

Fixes #4563

Fokko commented 2 days ago

Bad idea, since I don't want to expose the new type to the public API.