ClickHouse/dbms/src/Parsers/ParserSelectWithUnionQuery.h

18 lines
315 B
C++
Raw Normal View History

2018-02-25 00:50:53 +00:00
#pragma once
#include <Parsers/ParserQueryWithOutput.h>
namespace DB
{
class ParserSelectWithUnionQuery : public IParserBase
{
protected:
const char * getName() const override { return "SELECT query, possibly with UNION"; }
2018-02-25 06:34:20 +00:00
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
2018-02-25 00:50:53 +00:00
};
}