rok commented on code in PR #38784:
URL: https://github.com/apache/arrow/pull/38784#discussion_r1398536517
##########
cpp/src/parquet/encoding.cc:
##########
@@ -904,7 +904,12 @@ class DecoderImpl : virtual public Decoder {
protected:
explicit DecoderImpl(const ColumnDescriptor* descr, Encoding::type encoding)
- : descr_(descr), encoding_(encoding), num_values_(0), data_(NULLPTR),
len_(0) {}
+ : descr_(descr),
+ encoding_(encoding),
+ num_values_(0),
+ data_(NULLPTR),
+ len_(0),
+ type_length_(0) {}
Review Comment:
Could you get `type_lenght` from the `ColumnDescriptor` for fixed width
types? I don't remember if type is available here or not.
--
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]