Summary: Preparing unique constraint code to be implemented in HA. To do so, I'm moving everything to `stograge/common/` folder. I also added a new header, `gid.hpp` which does a `ifdef` include of the correct `gid.hpp` based on the product. Reviewers: ipaljak, mferencevic, vkasljevic, teon.banek Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D2079
14 lines
226 B
C++
14 lines
226 B
C++
#pragma once
|
|
|
|
#ifdef MG_SINGLE_NODE
|
|
#include "storage/single_node/gid.hpp"
|
|
#endif
|
|
|
|
#ifdef MG_SINGLE_NODE_HA
|
|
#include "storage/single_node_ha/gid.hpp"
|
|
#endif
|
|
|
|
#ifdef MG_DISTRIBUTED
|
|
#include "storage/distributed/gid.hpp"
|
|
#endif
|