dentiny opened a new issue, #1548:
URL: https://github.com/apache/iceberg-rust/issues/1548

   ### Is your feature request related to a problem or challenge?
   
   Currently iceberg-rust doesn't supported deletion actions, which means when 
there're no added data files, users don't have a way to properly set snapshot 
properties.
   
   To workaround the current limitation, @dentiny allows snapshot property to 
be set even with no added data files at `FastAppendAction`.
   At the end of the day, when all necessary operations are properly supported, 
we should be able to clean it up.
   
   Example code for end state:
   ```rs
   let action = tx.fast_append();
   action.set_property(...);
   
   let action = tx.fast_delete();
   action.set_property(...);
   ```
   
   Related issues: https://github.com/apache/iceberg-rust/issues/1533
   Related PRs: https://github.com/apache/iceberg-rust/pull/1534
   
   ### Describe the solution you'd like
   
   _No response_
   
   ### Willingness to contribute
   
   None


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to