#pragma once #include 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); }; }