Github user majetideepak commented on a diff in the pull request:
https://github.com/apache/orc/pull/111#discussion_r114337218
--- Diff: c++/src/Statistics.hh ---
@@ -605,6 +676,43 @@ namespace orc {
}
};
+ class StripeStatisticsImpl: public StripeStatistics {
+ private:
+ std::unique_ptr<StatisticsImpl> columnStats;
+ std::vector<std::vector<std::unique_ptr<const ColumnStatistics> > >
rowIndexStats;
--- End diff --
If using `unique_ptr` is your concern, I believe this is handled by the ORC
Adaptor header.
`./c++/src/Adaptor.hh:86: #define unique_ptr auto_ptr`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---