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
feat: add implicit s3:DeleteObject grant for s3tables:DeleteTable (mi……nio#211)
Add implicit permission so that s3tables:DeleteTable also grants
s3:DeleteObject. This enables table purging (DROP TABLE ... PURGE)
to delete underlying data files in the table's storage location.
This is needed because Spark's DROP TABLE ... PURGE performs
client-side deletes rather than using purgeRequested=true to let
the catalog handle deletion. This workaround grants the necessary
privilege until the issue is fixed in Spark/Iceberg upstream.
References:
- apache/iceberg#14743
- apache/iceberg#11023