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

ircd:Ⓜ️ Remove duplicate exists(event_id) util.

This commit is contained in:
Jason Volk 2018-03-10 14:26:18 -08:00
parent 046029725a
commit e4d891abac
3 changed files with 1 additions and 20 deletions

View file

@ -47,9 +47,6 @@ namespace ircd::m::dbs
string_view state_root(const mutable_buffer &out, const id::event &);
string_view state_root(const mutable_buffer &out, const event &);
// [GET] Query suite
bool exists(const event::id &);
// [SET (txn)] Basic write suite
string_view write(db::txn &, const event &, const write_opts &);
}

View file

@ -407,22 +407,6 @@ ircd::m::dbs::state_root(const mutable_buffer &out,
return ret;
}
bool
ircd::m::dbs::exists(const event::id &event_id)
{
static constexpr auto idx
{
json::indexof<event, "event_id"_>()
};
auto &column
{
event_column.at(idx)
};
return has(column, event_id);
}
//
// Database descriptors
//

View file

@ -328,7 +328,7 @@ ircd::m::vm::_eval_pdu(eval &eval,
for(size_t i(0); i < prev_count; ++i)
{
const auto prev_id{prev.prev_event(i)};
if(opts.prev_check_exists && !dbs::exists(prev_id))
if(opts.prev_check_exists && !exists(prev_id))
throw error
{
fault::EVENT, "Missing prev event %s", string_view{prev_id}