alamb commented on code in PR #8729:
URL: https://github.com/apache/arrow-rs/pull/8729#discussion_r2470885420


##########
parquet/src/arrow/array_reader/byte_array.rs:
##########
@@ -563,10 +563,10 @@ pub struct ByteArrayDecoderDictionary {
 }
 
 impl ByteArrayDecoderDictionary {
-    fn new(data: Bytes, num_levels: usize, num_values: Option<usize>) -> Self {
-        Self {
-            decoder: DictIndexDecoder::new(data, num_levels, num_values),
-        }
+    fn new(data: Bytes, num_levels: usize, num_values: Option<usize>) -> 
Result<Self> {
+        Ok(Self {

Review Comment:
   I verified this is a crate private structure, so this is not a public API 
change 



-- 
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]

Reply via email to