ClickHouse/src/Interpreters/InterpreterCreateRoleQuery.h

27 lines
525 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
namespace DB
{
class ASTCreateRoleQuery;
struct Role;
2021-05-31 14:49:02 +00:00
class InterpreterCreateRoleQuery : public IInterpreter, WithMutableContext
{
public:
2021-05-31 14:49:02 +00:00
InterpreterCreateRoleQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) {}
BlockIO execute() override;
static void updateRoleFromQuery(Role & role, const ASTCreateRoleQuery & query);
private:
ASTPtr query_ptr;
};
}