sdf-jkl commented on code in PR #9663:
URL: https://github.com/apache/arrow-rs/pull/9663#discussion_r3076316120


##########
parquet-variant-compute/src/shred_variant.rs:
##########
@@ -79,7 +87,6 @@ pub fn shred_variant(array: &VariantArray, as_type: 
&DataType) -> Result<Variant
         return Ok(array.clone());
     };
 
-    let cast_options = CastOptions::default();
     let mut builder = make_variant_to_shredded_variant_arrow_row_builder(
         as_type,
         &cast_options,

Review Comment:
   `cast_options` is now a reference, so `&` is not needed.
   ```suggestion
           cast_options,
   ```



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