mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
31 lines
643 B
C++
31 lines
643 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class ASTSetRoleQuery;
|
|
struct ExtendedRoleSet;
|
|
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 ExtendedRoleSet & roles_from_query);
|
|
|
|
private:
|
|
void setRole(const ASTSetRoleQuery & query);
|
|
void setDefaultRole(const ASTSetRoleQuery & query);
|
|
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
}
|