0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 20:58:51 +02:00

ircd:Ⓜ️:dbs: Add column layout key next to includes for quick reference.

This commit is contained in:
Jason Volk 2019-05-11 14:49:46 -07:00
parent dc1b5f6881
commit 5af3d3a4f2

View file

@ -43,18 +43,18 @@ namespace ircd::m::dbs::appendix
enum index :uint8_t;
}
#include "event_column.h"
#include "event_idx.h"
#include "event_json.h"
#include "event_refs.h"
#include "event_horizon.h"
#include "event_type.h"
#include "event_sender.h"
#include "room_head.h"
#include "room_events.h"
#include "room_joined.h"
#include "room_state.h"
#include "state_node.h"
#include "event_column.h" // event_idx => (direct value)
#include "event_idx.h" // event_id => event_idx
#include "event_json.h" // event_idx => (full JSON)
#include "event_refs.h" // eventidx | ref_type, event_idx
#include "event_horizon.h" // event_id | event_idx
#include "event_type.h" // type | event_idx
#include "event_sender.h" // hostpart | localpart, event_idx
#include "room_head.h" // room_id | event_id => event_idx
#include "room_events.h" // room_id | depth, event_idx => node_id
#include "room_joined.h" // room_id | origin, member => event_idx
#include "room_state.h" // room_id | type, state_key => event_idx
#include "state_node.h" // node_id => (m::state::node JSON)
/// Options that affect the dbs::write() of an event to the transaction.
struct ircd::m::dbs::write_opts