2020-02-17 02:59:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class ASTSetRoleQuery;
|
2020-02-22 16:32:15 +00:00
|
|
|
struct GenericRoleSet;
|
2020-02-17 02:59:56 +00:00
|
|
|
struct User;
|
|
|
|
|
|
|
|
|
|
|
|
class InterpreterSetRoleQuery : public IInterpreter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InterpreterSetRoleQuery(const ASTPtr & query_ptr_, Context & context_) : query_ptr(query_ptr_), context(context_) {}
|
|
|
|
|
|
|
|
BlockIO execute() override;
|
|
|
|
|
|
|
|
static void updateUserSetDefaultRoles(User & user, const GenericRoleSet & roles_from_query);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setRole(const ASTSetRoleQuery & query);
|
|
|
|
void setDefaultRole(const ASTSetRoleQuery & query);
|
|
|
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
Context & context;
|
|
|
|
};
|
|
|
|
}
|