mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
18 lines
287 B
C++
18 lines
287 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithOutput.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct ASTShowAccessQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowAccessQuery";
|
|
static constexpr auto Query = "SHOW ACCESS";
|
|
};
|
|
|
|
using ASTShowAccessQuery = ASTQueryWithOutputImpl<ASTShowAccessQueryNames>;
|
|
|
|
}
|