memgraph/cypher/ast/start.hpp

20 lines
343 B
C++
Raw Normal View History

#pragma once
#include "ast_node.hpp"
#include "queries.hpp"
namespace ast
{
struct Start : public AstNode<Start>
{
2015-10-19 01:44:00 +08:00
Start(ReadQuery* read_query, WriteQuery* write_query)
: read_query(read_query), write_query(write_query) {}
ReadQuery* read_query;
2015-10-19 01:44:00 +08:00
WriteQuery* write_query;
// ReadWriteQuery* read_write_query;
};
};