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
843 B
C++
27 lines
843 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/// Represents a set of users/roles like
|
|
/// {user_name | role_name | CURRENT_USER} [,...] | NONE | ALL | ALL EXCEPT {user_name | role_name | CURRENT_USER} [,...]
|
|
class ASTExtendedRoleSet : public IAST
|
|
{
|
|
public:
|
|
Strings names;
|
|
bool current_user = false;
|
|
bool all = false;
|
|
Strings except_names;
|
|
bool except_current_user = false;
|
|
bool id_mode = false; /// If true then `names` and `except_names` keeps UUIDs, not names.
|
|
|
|
bool empty() const { return names.empty() && !current_user && !all; }
|
|
|
|
String getID(char) const override { return "ExtendedRoleSet"; }
|
|
ASTPtr clone() const override { return std::make_shared<ASTExtendedRoleSet>(*this); }
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
}
|