Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: zombee0 <[email protected]>
  • Loading branch information
zombee0 committed Dec 11, 2024
1 parent 80b9453 commit 2386032
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions be/src/formats/parquet/column_chunk_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ Status ColumnChunkReader::_parse_page_header() {
auto& page_type = _page_reader->current_header()->type;
// TODO: support DATA_PAGE_V2, now common writer use DATA_PAGE as default
if (UNLIKELY(page_type != tparquet::PageType::DICTIONARY_PAGE && page_type != tparquet::PageType::DATA_PAGE)) {
return Status::NotSupported(
strings::Substitute("Not supported page type: $0", page_type));
return Status::NotSupported(strings::Substitute("Not supported page type: $0", page_type));
}
if (page_type == tparquet::PageType::DATA_PAGE) {
const auto& header = *_page_reader->current_header();
Expand Down

0 comments on commit 2386032

Please sign in to comment.