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
27 lines
508 B
C++
27 lines
508 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class ASTCreateRoleQuery;
|
|
struct Role;
|
|
|
|
|
|
class InterpreterCreateRoleQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterCreateRoleQuery(const ASTPtr & query_ptr_, Context & context_) : query_ptr(query_ptr_), context(context_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
static void updateRoleFromQuery(Role & role, const ASTCreateRoleQuery & query);
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
}
|