aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Interpreters/Access/InterpreterGrantQuery.h
blob: 2e36ac4dceafb04130c1189e0ade8ce07716f7a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include <Core/UUID.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>


namespace DB
{

class ASTGrantQuery;
struct User;
struct Role;

class InterpreterGrantQuery : public IInterpreter, WithMutableContext
{
public:
    InterpreterGrantQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) {}

    BlockIO execute() override;

    static void updateUserFromQuery(User & user, const ASTGrantQuery & query);
    static void updateRoleFromQuery(Role & role, const ASTGrantQuery & query);

private:
    ASTPtr query_ptr;
};

}