memgraph/src/storage/v2/view.hpp
Teon Banek f02617f2bd Replace query::GraphView with storage::View
Reviewers: mferencevic, ipaljak

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2356
2019-09-06 14:58:27 +02:00

12 lines
174 B
C++

#pragma once
namespace storage {
/// Indicator for obtaining the state before or after a transaction & command.
enum class View {
OLD,
NEW,
};
} // namespace storage