f02617f2bd
Reviewers: mferencevic, ipaljak Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D2356
12 lines
174 B
C++
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
|