mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
18 lines
236 B
C++
18 lines
236 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IParserBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
class ParserQuery : public IParserBase
|
|
{
|
|
protected:
|
|
String getName() { return "Query"; }
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected);
|
|
};
|
|
|
|
}
|