aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/ParserUnionQueryElement.h
blob: 6b63c62c85b601c7c169675cdefe714d401e5c37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
};

}