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

9 lines
252 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 {
return LINE(code::transaction_begin);
};