memgraph/include/storage/vertex_record.hpp
Kruno Tomola Fabro 8a89f6601d EdgeType indexes added.
Implemented untested UniqueOrderedIndex.

Introduced TypeGroupEdge/Vertex into database.

Added Index capabilityes to PropertyFamily.
Added method for adding index.
Added method for removing index.
2016-08-25 15:29:45 +01:00

13 lines
311 B
C++

#pragma once
#include "mvcc/version_list.hpp"
#include "storage/vertex.hpp"
class VertexRecord : public mvcc::VersionList<Vertex>
{
public:
VertexRecord(Id id) : VersionList(id) {}
VertexRecord(const VersionList &) = delete;
VertexRecord(VersionList &&other) : VersionList(std::move(other)) {}
};