mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
25 lines
765 B
C++
25 lines
765 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** Parses queries like
|
|
* GRANT access_type[(column_name [,...])] [,...] ON {db.table|db.*|*.*|table|*} TO {user_name | CURRENT_USER} [,...] [WITH GRANT OPTION]
|
|
* REVOKE access_type[(column_name [,...])] [,...] ON {db.table|db.*|*.*|table|*} FROM {user_name | CURRENT_USER} [,...] | ALL | ALL EXCEPT {user_name | CURRENT_USER} [,...]
|
|
*/
|
|
class ParserGrantQuery : public IParserBase
|
|
{
|
|
public:
|
|
ParserGrantQuery & enableAttachMode(bool enable) { attach_mode = enable; return *this; }
|
|
|
|
protected:
|
|
const char * getName() const override { return "GRANT or REVOKE query"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
|
|
private:
|
|
bool attach_mode = false;
|
|
};
|
|
}
|