mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 18:02:24 +00:00
30 lines
620 B
C++
30 lines
620 B
C++
#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;
|
|
};
|
|
|
|
}
|