mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
22 lines
398 B
C++
22 lines
398 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Query like this:
|
|
* SHOW TABLES [FROM db] [[NOT] LIKE 'str']
|
|
* or
|
|
* SHOW DATABASES.
|
|
*/
|
|
class ParserShowTablesQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const { return "SHOW [TEMPORARY] TABLES|DATABASES [[NOT] LIKE 'str']"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected);
|
|
};
|
|
|
|
}
|