Skip to content

Commit

Permalink
Update cpp/src/parquet/column_writer.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
emkornfield and pitrou committed Jan 25, 2024
1 parent df8ca6c commit 7d28e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/column_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class SerializedPageWriter : public PageWriter {
int64_t uncompressed_size = page.buffer()->size();
if (uncompressed_size > std::numeric_limits<int32_t>::max()) {
throw ParquetException(
"Uncompressed dictionary page size overflows to INT32_MAX. Size:",
"Uncompressed dictionary page size overflows INT32_MAX. Size:",
uncompressed_size);
}
std::shared_ptr<Buffer> compressed_data;
Expand Down

0 comments on commit 7d28e6a

Please sign in to comment.