jecsand838 commented on code in PR #7954: URL: https://github.com/apache/arrow-rs/pull/7954#discussion_r2216783991
########## arrow-avro/src/codec.rs: ########## @@ -161,6 +161,66 @@ impl<'a> TryFrom<&Schema<'a>> for AvroField { } } +/// Builder for an [`AvroField`] +#[derive(Debug)] +pub struct AvroFieldBuilder<'a> { + schema: &'a Schema<'a>, + use_utf8view: bool, + strict_mode: bool, +} + +impl<'a> Default for AvroFieldBuilder<'a> { + fn default() -> Self { + panic!("AvroFieldBuilder requires a schema") + } +} Review Comment: ```suggestion ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org