AntoinePrv commented on code in PR #47294: URL: https://github.com/apache/arrow/pull/47294#discussion_r2349481944
########## cpp/src/parquet/decoder.cc: ########## @@ -1898,7 +1900,7 @@ class RleBooleanDecoder : public TypedDecoderImpl<BooleanType>, public BooleanDe } private: - std::shared_ptr<::arrow::util::RleDecoder> decoder_; + std::shared_ptr<::arrow::util::RleBitPackedDecoder<bool>> decoder_; Review Comment: EDIT: removing the pointer seems to be a slight regression. Perhaps since `sizeof(decoder_) == 64` (mostly driven by the `BitReader` in the `BitPackedRunDecoder`). -- 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]
