mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
18 lines
322 B
C++
18 lines
322 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithOutput.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct ASTShowProcesslistIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowProcesslistQuery";
|
|
static constexpr auto Query = "SHOW PROCESSLIST";
|
|
};
|
|
|
|
using ASTShowProcesslistQuery = ASTQueryWithOutputImpl<ASTShowProcesslistIDAndQueryNames>;
|
|
|
|
}
|