Skip to content

Commit

Permalink
[Fix](inverted index) fix wrong fs in inverted_index_file_writer
Browse files Browse the repository at this point in the history
  • Loading branch information
airborne12 committed May 16, 2024
1 parent 07cdd75 commit 2c201e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/olap/rowset/segment_v2/column_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,9 @@ Status ColumnReader::new_inverted_index_iterator(const TabletIndex* index_meta,
if (_inverted_index) {
RETURN_IF_ERROR(_inverted_index->new_iterator(read_options.stats,
read_options.runtime_state, iterator));
}
return Status::OK();
}
return Status::OK();
}

Status ColumnReader::read_page(const ColumnIteratorOptions& iter_opts, const PagePointer& pp,
Expand Down

0 comments on commit 2c201e2

Please sign in to comment.