Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhan1 committed Dec 20, 2024
1 parent ea3c95f commit fe3e5c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion be/src/vec/exec/format/json/new_json_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2129,7 +2129,7 @@ void NewJsonReader::_append_empty_skip_bitmap_value(Block& block, size_t cur_row
}

void NewJsonReader::_set_skip_bitmap_mark(SlotDescriptor* slot_desc, IColumn* column_ptr,
Block& block, size_t cur_row_count, bool* valid) {
Block& block, size_t cur_row_count, bool* valid) {
// we record the missing column's column unique id in skip bitmap
// to indicate which columns need to do the alignment process
auto* skip_bitmap_nullable_col_ptr = assert_cast<ColumnNullable*>(
Expand Down
2 changes: 1 addition & 1 deletion be/src/vec/exec/format/json/new_json_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class NewJsonReader : public GenericReader {
bool _should_process_skip_bitmap_col() const { return skip_bitmap_col_idx != -1; }
void _append_empty_skip_bitmap_value(Block& block, size_t cur_row_count);
void _set_skip_bitmap_mark(SlotDescriptor* slot_desc, IColumn* column_ptr, Block& block,
size_t cur_row_count, bool* valid);
size_t cur_row_count, bool* valid);
RuntimeState* _state = nullptr;
RuntimeProfile* _profile = nullptr;
ScannerCounter* _counter = nullptr;
Expand Down

0 comments on commit fe3e5c9

Please sign in to comment.