Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nautaa committed Feb 20, 2025
1 parent dff1790 commit 31637d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/oblsm/util/ob_bloomfilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ObBloomfilter
/**
* @brief Returns the count of objects inserted into the Bloom filter.
*/
size_t object_count() const { return object_count_; }
size_t object_count() const { return 0; }

/**
* @brief Checks if the Bloom filter is empty.
Expand All @@ -62,8 +62,6 @@ class ObBloomfilter
bool empty() const { return 0 == object_count(); }

private:
/// the count of objects inserted into the Bloom filter
size_t object_count_;
};

} // namespace oceanbase

0 comments on commit 31637d2

Please sign in to comment.