CTTY opened a new issue, #1562: URL: https://github.com/apache/iceberg-rust/issues/1562
### Is your feature request related to a problem or challenge? Right now `DataFileSerde` is not usable outside `spec` crate. Serde datafiles can actually be useful at some times. In the ongoing DataFusion write support work, write node will write data and generate data files, and it would be ideal to serialize data files and pass them to commit node for the distributed execution. ### Describe the solution you'd like We don't have to expose `DataFileSerde` directly. Instead, we can expose the serde functions: ``` pub fn serialize_data_file_to_json pub fn deserialize_json_to_data_file ``` ### 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: [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]
