wgtmac commented on code in PR #45252:
URL: https://github.com/apache/arrow/pull/45252#discussion_r1914861178


##########
cpp/src/parquet/column_reader.cc:
##########
@@ -580,13 +580,20 @@ std::shared_ptr<Buffer> 
SerializedPageReader::DecompressIfNeeded(
     memcpy(decompressed, page_buffer->data(), levels_byte_len);
   }
 
-  // Decompress the values
-  PARQUET_ASSIGN_OR_THROW(
-      auto decompressed_len,
-      decompressor_->Decompress(compressed_len - levels_byte_len,
-                                page_buffer->data() + levels_byte_len,
-                                uncompressed_len - levels_byte_len,
-                                decompression_buffer_->mutable_data() + 
levels_byte_len));
+  // GH-31992: DataPageV2 may store only levels and no values

Review Comment:
   > Ok, it's really a bug in parquet-java, because a 0-size buffer compressed 
to a 1-size buffer using Snappy.
   
   I may not understand you correctly. The file with 0-sized snappy-compressed 
data is produced by parquet-mr: 
https://github.com/apache/arrow/issues/31992#issuecomment-2567972537



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