mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Strings = std::vector<String>;
|
|
|
|
/// Represents a set of users/roles like
|
|
/// {user_name | role_name | CURRENT_USER | ALL | NONE} [,...]
|
|
/// [EXCEPT {user_name | role_name | CURRENT_USER | ALL | NONE} [,...]]
|
|
class ASTRolesOrUsersSet : public IAST
|
|
{
|
|
public:
|
|
bool all = false;
|
|
Strings names;
|
|
bool current_user = false;
|
|
Strings except_names;
|
|
bool except_current_user = false;
|
|
|
|
bool allow_users = true; /// whether this set can contain names of users
|
|
bool allow_roles = true; /// whether this set can contain names of roles
|
|
bool id_mode = false; /// whether this set keep UUIDs instead of names
|
|
bool use_keyword_any = false; /// whether the keyword ANY should be used instead of the keyword ALL
|
|
|
|
bool empty() const { return names.empty() && !current_user && !all; }
|
|
void replaceCurrentUserTag(const String & current_user_name);
|
|
|
|
String getID(char) const override { return "RolesOrUsersSet"; }
|
|
ASTPtr clone() const override { return std::make_shared<ASTRolesOrUsersSet>(*this); }
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
}
|