mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +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>;
|
|
|
|
}
|