Skip to content

Commit

Permalink
Update cpp/src/parquet/encoding.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
tachyonwill and pitrou committed Feb 8, 2022
1 parent ec2391f commit 5b55ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/encoding.cc
Expand Up @@ -2427,7 +2427,7 @@ class DeltaByteArrayDecoder : public DecoderImpl,
int suffix_read = suffix_decoder_.Decode(buffer, max_values);
if (ARROW_PREDICT_FALSE(suffix_read != max_values)) {
ParquetException::EofException("Read " + std::to_string(suffix_read) +
"Expecting " + std::to_string(max_values) +
", expecting " + std::to_string(max_values) +
" from suffix decoder");
}

Expand Down

0 comments on commit 5b55ec1

Please sign in to comment.