Skip to content

Commit

Permalink
[Refact](inverted index) refact inverted index compound predicates ev…
Browse files Browse the repository at this point in the history
…aluate logic
  • Loading branch information
airborne12 committed Aug 6, 2024
1 parent 1fe5ce7 commit 2f6d151
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions be/src/olap/rowset/segment_v2/inverted_index_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,11 +367,6 @@ class InvertedIndexColumnWriterImpl : public InvertedIndexColumnWriter {
return Status::OK();
}

Status add_array_nulls(uint32_t row_id) override {
_null_bitmap.add(row_id);
return Status::OK();
}

Status add_array_values(size_t field_size, const void* value_ptr, const uint8_t* null_map,
const uint8_t* offsets_ptr, size_t count) override {
if (count == 0) {
Expand Down
1 change: 0 additions & 1 deletion be/src/olap/rowset/segment_v2/inverted_index_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class InvertedIndexColumnWriter {
virtual Status add_nulls(uint32_t count) = 0;
virtual Status add_array_nulls(uint32_t row_id) = 0;

virtual Status add_array_nulls(uint32_t row_id) = 0;
virtual Status finish() = 0;

virtual int64_t size() const = 0;
Expand Down

0 comments on commit 2f6d151

Please sign in to comment.