Skip to content

Commit

Permalink
[Gluten-3187][CH] expose Bloom filter params
Browse files Browse the repository at this point in the history
  • Loading branch information
binmahone committed Sep 20, 2023
1 parent 4dc667c commit e822eb1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Interpreters/BloomFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ class BloomFilter
UInt64 isEmpty() const;

friend bool operator== (const BloomFilter & a, const BloomFilter & b);

size_t getSize() const { return size; }
size_t getHashes() const { return hashes; }
size_t getSeed() const { return seed; }
private:

size_t size;
Expand Down

0 comments on commit e822eb1

Please sign in to comment.