mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
18 lines
312 B
C++
18 lines
312 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/IParserBase.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
|
||
|
class ParserUnionQueryElement : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
const char * getName() const override { return "SELECT query, subquery, possibly with UNION"; }
|
||
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
||
|
};
|
||
|
|
||
|
}
|