ClickHouse/dbms/include/DB/Parsers/ParserSelectQuery.h

18 lines
305 B
C
Raw Normal View History

2011-08-15 01:12:57 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
2015-10-21 14:57:10 +00:00
#include <DB/Parsers/ParserQueryWithOutput.h>
2010-06-24 19:12:10 +00:00
namespace DB
{
2015-10-21 14:57:10 +00:00
class ParserSelectQuery : public ParserQueryWithOutput
2010-06-24 19:12:10 +00:00
{
protected:
const char * getName() const { return "SELECT query"; }
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected);
2010-06-24 19:12:10 +00:00
};
}