mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
17 lines
304 B
C++
17 lines
304 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
class ParserSelectWithUnionQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "SELECT query, possibly with UNION"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
}
|