ClickHouse/src/Parsers/ASTCreateRowPolicyQuery.h

57 lines
1.8 KiB
C++
Raw Normal View History

2019-11-29 17:22:56 +00:00
#pragma once
#include <Parsers/IAST.h>
#include <Parsers/ASTQueryWithOnCluster.h>
2019-11-29 17:22:56 +00:00
#include <Access/RowPolicy.h>
#include <array>
#include <optional>
2019-11-29 17:22:56 +00:00
namespace DB
{
class ASTRowPolicyNames;
class ASTExtendedRoleSet;
2019-11-29 17:22:56 +00:00
/** CREATE [ROW] POLICY [IF NOT EXISTS | OR REPLACE] name ON [database.]table
* [AS {PERMISSIVE | RESTRICTIVE}]
* [FOR {SELECT | INSERT | UPDATE | DELETE | ALL}]
* [USING condition]
* [WITH CHECK condition] [,...]
* [TO {role [,...] | ALL | ALL EXCEPT role [,...]}]
*
* ALTER [ROW] POLICY [IF EXISTS] name ON [database.]table
* [RENAME TO new_name]
* [AS {PERMISSIVE | RESTRICTIVE}]
* [FOR {SELECT | INSERT | UPDATE | DELETE | ALL}]
* [USING {condition | NONE}]
* [WITH CHECK {condition | NONE}] [,...]
* [TO {role [,...] | ALL | ALL EXCEPT role [,...]}]
*/
class ASTCreateRowPolicyQuery : public IAST, public ASTQueryWithOnCluster
2019-11-29 17:22:56 +00:00
{
public:
bool alter = false;
bool attach = false;
2019-11-29 17:22:56 +00:00
bool if_exists = false;
bool if_not_exists = false;
bool or_replace = false;
std::shared_ptr<ASTRowPolicyNames> names;
String new_short_name;
2019-11-29 17:22:56 +00:00
std::optional<bool> is_restrictive;
std::array<std::optional<ASTPtr>, RowPolicy::MAX_CONDITION_TYPE> conditions; /// `nullopt` means "not set", `nullptr` means set to NONE.
2019-11-29 17:22:56 +00:00
std::shared_ptr<ASTExtendedRoleSet> roles;
2019-11-29 17:22:56 +00:00
String getID(char) const override;
ASTPtr clone() const override;
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
ASTPtr getRewrittenASTWithoutOnCluster(const std::string &) const override { return removeOnCluster<ASTCreateRowPolicyQuery>(clone()); }
void replaceCurrentUserTagWithName(const String & current_user_name) const;
void replaceEmptyDatabaseWithCurrent(const String & current_database) const;
2019-11-29 17:22:56 +00:00
};
}