8a89f6601d
Implemented untested UniqueOrderedIndex. Introduced TypeGroupEdge/Vertex into database. Added Index capabilityes to PropertyFamily. Added method for adding index. Added method for removing index.
13 lines
311 B
C++
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)) {}
|
|
};
|