memgraph/include/query_engine/code_generator/handlers/transaction_begin.hpp

9 lines
257 B
C++
Raw Normal View History

#pragma once
#include "query_engine/code_generator/handlers/includes.hpp"
auto transaction_begin_action = [](CypherStateData &,
const QueryActionData &) -> std::string {
2016-08-08 16:32:34 +08:00
return code_line(code::transaction_begin);
};