mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
50 lines
1.0 KiB
C++
50 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IParserBase.h>
|
|
#include <DB/Parsers/ParserQueryWithOutput.h>
|
|
#include <DB/Parsers/CommonParsers.h>
|
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
|
#include <DB/Parsers/ASTShowProcesslistQuery.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Запрос SHOW PROCESSLIST
|
|
*/
|
|
class ParserShowProcesslistQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const { return "SHOW PROCESSLIST query"; }
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected)
|
|
{
|
|
Pos begin = pos;
|
|
|
|
ParserWhiteSpaceOrComments ws;
|
|
ParserString s_show("SHOW", true, true);
|
|
ParserString s_processlist("PROCESSLIST", true, true);
|
|
|
|
auto query = std::make_shared<ASTShowProcesslistQuery>();
|
|
|
|
ws.ignore(pos, end);
|
|
|
|
if (!s_show.ignore(pos, end, max_parsed_pos, expected))
|
|
return false;
|
|
|
|
ws.ignore(pos, end);
|
|
|
|
if (!s_processlist.ignore(pos, end, max_parsed_pos, expected))
|
|
return false;
|
|
|
|
ws.ignore(pos, end);
|
|
|
|
query->range = StringRange(begin, pos);
|
|
node = query;
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
}
|