0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd::db: Minor simplify.

This commit is contained in:
Jason Volk 2018-09-01 04:06:13 -07:00
parent ff7d2514a0
commit ca1ee19a47

View file

@ -7016,28 +7016,20 @@ ircd::db::has(column &column,
database &d(column);
database::column &c(column);
// Perform a co-RP query to the filtration
const auto k(slice(key));
auto opts(make_opts(gopts));
opts.read_tier = NON_BLOCKING;
// Perform a co-RP query to the filtration
thread_local std::string discard;
bool ret
{
d.d->KeyMayExist(opts, c, k, &discard, nullptr)
};
if(!d.d->KeyMayExist(opts, c, k, &discard, nullptr))
return false;
if(ret)
{
const auto it
{
seek(column, key, gopts)
};
ret = valid_eq(*it, key);
}
return ret;
return valid_eq(*it, key);
}
//