kaushiksrini commented on code in PR #8225:
URL: https://github.com/apache/arrow-rs/pull/8225#discussion_r2383720272
##########
parquet/src/file/metadata/mod.rs:
##########
@@ -1430,6 +1444,12 @@ impl ColumnChunkMetaDataBuilder {
self
}
+ /// Sets geospatial statistics for this column chunk.
+ pub fn set_geo_statistics(mut self, value:
geo_statistics::GeospatialStatistics) -> Self {
+ self.0.geo_statistics = Some(Box::new(value));
Review Comment:
Got it! I changed it to a take in a heap allocated object
--
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]