ClickHouse/src/Parsers/ASTShowAccessQuery.h
2020-06-15 22:07:47 +03:00

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>;
}