diff --git a/table/block_based/filter_policy.cc b/table/block_based/filter_policy.cc index 38a6e9f83b22537d627736ca707077894d1d2e93..7d43a8fabed3a984bbdd6b5855b0701fcf4aca70 100644 --- a/table/block_based/filter_policy.cc +++ b/table/block_based/filter_policy.cc @@ -443,7 +443,8 @@ void BloomFilterPolicy::CreateFilter(const Slice* keys, int n, std::string* dst) const { // We should ideally only be using this deprecated interface for // appropriately constructed BloomFilterPolicy - assert(mode_ == kDeprecatedBlock); + // FIXME disabled because of bug in C interface; see issue #6129 + //assert(mode_ == kDeprecatedBlock); // Compute bloom filter size (in both bits and bytes) uint32_t bits = static_cast(n * whole_bits_per_key_);