aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/Access/ASTShowPrivilegesQuery.h
blob: 8cc4ed16f96615c997f0b5ed96c3b1f7e62b9ee3 (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 ASTShowPrivilegesIDAndQueryName
{
    static constexpr auto ID = "ShowPrivilegesQuery";
    static constexpr auto Query = "SHOW PRIVILEGES";
};

using ASTShowPrivilegesQuery = ASTQueryWithOutputImpl<ASTShowPrivilegesIDAndQueryName>;

}