rok commented on code in PR #14293:
URL: https://github.com/apache/arrow/pull/14293#discussion_r1089854312


##########
cpp/src/parquet/encoding.h:
##########
@@ -144,7 +145,8 @@ struct EncodingTraits<ByteArrayType> {
   /// \brief Internal helper class for decoding BYTE_ARRAY data where we can
   /// overflow the capacity of a single arrow::BinaryArray
   struct Accumulator {
-    std::unique_ptr<::arrow::BinaryBuilder> builder;
+    std::unique_ptr<::arrow::Int32Builder> offsets_builder;
+    std::unique_ptr<::arrow::BinaryBuilder> data_builder;
     std::vector<std::shared_ptr<::arrow::Array>> chunks;
   };

Review Comment:
   Indeed. Removed the change.



-- 
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]

Reply via email to