ClickHouse/dbms/include/DB/Parsers/ParserShowTablesQuery.h
2013-03-11 11:28:36 +00:00

22 lines
388 B
C++

#pragma once
#include <DB/Parsers/IParserBase.h>
namespace DB
{
/** Запрос типа такого:
* SHOW TABLES [FROM db] [[NOT] LIKE 'str']
* или
* SHOW DATABASES.
*/
class ParserShowTablesQuery : public IParserBase
{
protected:
String getName() { return "SHOW TABLES|DATABASES query"; }
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected);
};
}