memgraph/src/storage/v2/view.hpp

12 lines
174 B
C++
Raw Normal View History

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