1
0
Fork 0

Add TRI_vpack_sub_t.

This commit is contained in:
Max Neunhoeffer 2016-02-22 13:02:17 +01:00
parent ea3a7f3dab
commit 82e017fd9a
1 changed files with 12 additions and 0 deletions

View File

@ -137,4 +137,16 @@ typedef struct TRI_document_edge_s {
TRI_voc_key_t _toKey;
} TRI_document_edge_t;
////////////////////////////////////////////////////////////////////////////////
/// @brief velocypack sub-object (for indexes, as part of TRI_index_element_t,
/// if offset is non-zero, then it is an offset into the VelocyPack data in
/// the data or WAL file. If offset is 0, then data contains the actual data
/// in place.
////////////////////////////////////////////////////////////////////////////////
struct TRI_vpack_sub_t {
uint32_t offset;
uint8_t data[8];
};
#endif