blob: dffd7ff2403718b90dcf6050d53f63458f2ca3ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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>;
}
|