mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
22 lines
388 B
C++
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);
|
|
};
|
|
|
|
}
|