CTTY opened a new issue, #1316: URL: https://github.com/apache/iceberg-rust/issues/1316
### Is your feature request related to a problem or challenge? Add API in `transaction` to support `TableUpdate::SetLocation` ### Describe the solution you'd like Something as simple as below should allow transaction to update the location of table. ``` pub fn set_location(mut self, location: String) -> Result<Self> { self.apply(vec![TableUpdate::SetLocation { location }], vec![])?; Ok(self) } ``` ### Willingness to contribute I can contribute to this feature independently -- 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: issues-unsubscr...@iceberg.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org