ClickHouse/dbms/src/Parsers/ParserQuery.h

21 lines
338 B
C++
Raw Normal View History

2011-10-30 11:30:52 +00:00
#pragma once
#include <Parsers/IParserBase.h>
2011-10-30 11:30:52 +00:00
namespace DB
{
class ParserQuery : public IParserBase
{
private:
const char * end;
const char * getName() const override { return "Query"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
public:
ParserQuery(const char * end) : end(end) {}
2011-10-30 11:30:52 +00:00
};
}