diff --git a/ircd/db.cc b/ircd/db.cc index 7bf0ce204..3a0f05a15 100644 --- a/ircd/db.cc +++ b/ircd/db.cc @@ -8007,11 +8007,10 @@ ircd::db::has(column &column, database::column &c(column); // Perform a co-RP query to the filtration -/* // NOTE disabled for rocksdb >= v5.15 due to a regression // where rocksdb does not init SuperVersion data in the column // family handle and this codepath triggers null derefs and ub. - if(c.table_opts.filter_policy) + if(0 && c.table_opts.filter_policy) { const auto k(slice(key)); auto opts(make_opts(gopts)); @@ -8020,7 +8019,6 @@ ircd::db::has(column &column, if(!d.d->KeyMayExist(opts, c, k, &discard, nullptr)) return false; } -*/ const auto it {