alamb commented on issue #4693: URL: https://github.com/apache/arrow-rs/issues/4693#issuecomment-1754960654
> I want to try it. Hi @fansehep -- thank you. > should we really need the prefix word 'set' and parquet.* ? No. I am sorry for the confusion, the `set ...` terminology is from DataFusion. This ticket in arrow-rs only covers the parsing of the values so for example, we would implement `FromStr` for https://docs.rs/parquet/45.0.0/parquet/format/struct.Encoding.html would allow something like this: ```rust // call `parse` to implement FromStr let encoding: Encoding = "PLAIN".parse().unwrap(); // call parse again, case insensitive let encoding: Encoding = "plain".parse().unwrap(); ``` -- 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]
