ClickHouse/dbms/src/Parsers/ParserQuery.h

20 lines
328 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;
2011-10-30 11:30:52 +00:00
protected:
ParserInsertQuery(const char * end) : end(end) {}
const char * getName() const { return "Query"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected);
2011-10-30 11:30:52 +00:00
};
}