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

22 lines
434 B
C++
Raw Normal View History

2012-06-18 07:49:19 +00:00
#pragma once
2015-10-21 14:57:10 +00:00
#include <DB/Parsers/ParserQueryWithOutput.h>
2012-06-18 07:49:19 +00:00
namespace DB
{
/** Запрос типа такого:
* SHOW TABLES [FROM db] [[NOT] LIKE 'str']
2012-06-18 07:49:19 +00:00
* или
* SHOW DATABASES.
*/
class ParserShowTablesQuery : public IParserBase
2012-06-18 07:49:19 +00:00
{
protected:
const char * getName() const { return "SHOW TABLES|DATABASES query"; }
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected);
2012-06-18 07:49:19 +00:00
};
}