Is your feature request related to a problem or challenge?
Currently we don't expose an API to drop and purge table in current Catalog trait, existing drop_table: https://github.com/apache/iceberg-rust/blob/main/crates/iceberg/src/catalog/mod.rs#L98
Describe the solution you'd like
update the drop_table:
async fn drop_table(&self, table: &TableIdent, purge: Option<bool>) -> Result<()>;
// purge should be true if not present to match java's behavior
Then we should update the existing implementations as well
Willingness to contribute
I can contribute to this feature independently
Is your feature request related to a problem or challenge?
Currently we don't expose an API to drop and purge table in current Catalog trait, existing
drop_table: https://github.com/apache/iceberg-rust/blob/main/crates/iceberg/src/catalog/mod.rs#L98Describe the solution you'd like
update the
drop_table:Then we should update the existing implementations as well
Willingness to contribute
I can contribute to this feature independently