mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Access/Authentication.h>
|
|
#include <Access/AllowedClientHosts.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class ASTExtendedRoleSet;
|
|
class ASTSettingsProfileElements;
|
|
|
|
/** CREATE USER [IF NOT EXISTS | OR REPLACE] name
|
|
* [IDENTIFIED [WITH {NO_PASSWORD|PLAINTEXT_PASSWORD|SHA256_PASSWORD|SHA256_HASH|DOUBLE_SHA1_PASSWORD|DOUBLE_SHA1_HASH}] BY {'password'|'hash'}]
|
|
* [HOST {LOCAL | NAME 'name' | NAME REGEXP 'name_regexp' | IP 'address' | LIKE 'pattern'} [,...] | ANY | NONE]
|
|
* [DEFAULT ROLE role [,...]]
|
|
* [SETTINGS variable [= value] [MIN [=] min_value] [MAX [=] max_value] [READONLY|WRITABLE] | PROFILE 'profile_name'] [,...]
|
|
*
|
|
* ALTER USER [IF EXISTS] name
|
|
* [RENAME TO new_name]
|
|
* [IDENTIFIED [WITH {PLAINTEXT_PASSWORD|SHA256_PASSWORD|DOUBLE_SHA1_PASSWORD}] BY {'password'|'hash'}]
|
|
* [[ADD|REMOVE] HOST {LOCAL | NAME 'name' | NAME REGEXP 'name_regexp' | IP 'address' | LIKE 'pattern'} [,...] | ANY | NONE]
|
|
* [DEFAULT ROLE role [,...] | ALL | ALL EXCEPT role [,...] ]
|
|
* [SETTINGS variable [= value] [MIN [=] min_value] [MAX [=] max_value] [READONLY|WRITABLE] | PROFILE 'profile_name'] [,...]
|
|
*/
|
|
class ASTCreateUserQuery : public IAST
|
|
{
|
|
public:
|
|
bool alter = false;
|
|
bool attach = false;
|
|
|
|
bool if_exists = false;
|
|
bool if_not_exists = false;
|
|
bool or_replace = false;
|
|
|
|
String name;
|
|
String new_name;
|
|
|
|
std::optional<Authentication> authentication;
|
|
|
|
std::optional<AllowedClientHosts> hosts;
|
|
std::optional<AllowedClientHosts> add_hosts;
|
|
std::optional<AllowedClientHosts> remove_hosts;
|
|
|
|
std::shared_ptr<ASTExtendedRoleSet> default_roles;
|
|
|
|
std::shared_ptr<ASTSettingsProfileElements> settings;
|
|
|
|
String getID(char) const override;
|
|
ASTPtr clone() const override;
|
|
void formatImpl(const FormatSettings & format, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
}
|