sfc-gh-nthimmegowda commented on code in PR #14147:
URL: https://github.com/apache/arrow/pull/14147#discussion_r989374908
##########
cpp/src/parquet/encoding.cc:
##########
@@ -1146,15 +1146,11 @@ int PlainDecoder<DType>::Decode(T* buffer, int
max_values) {
return max_values;
}
-class PlainBooleanDecoder : public DecoderImpl,
- virtual public TypedDecoder<BooleanType>,
- virtual public BooleanDecoder {
+class PlainBooleanDecoder : public DecoderImpl, virtual public
TypedDecoder<BooleanType> {
public:
explicit PlainBooleanDecoder(const ColumnDescriptor* descr);
void SetData(int num_values, const uint8_t* data, int len) override;
- // Two flavors of bool decoding
- int Decode(uint8_t* buffer, int max_values) override;
Review Comment:
@wgtmac
Can you share the code pointer , abstract is fine.
Because this method / function was an abstract function which was overriden,
just wondering if you called in base class or called directly via
`PlainBooleanEncoder`
--
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]