memgraph/cypher/ast/distinct.hpp

18 lines
235 B
C++
Raw Normal View History

#pragma once
#include "ast_node.hpp"
#include "identifier.hpp"
namespace ast
{
struct Distinct : public AstNode<Distinct>
{
Distinct(Identifier* identifier)
: identifier(identifier) {}
Identifier* identifier;
};
}