mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
18 lines
342 B
C++
18 lines
342 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/IParserBase.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/** Parses queries like
|
||
|
* SHOW GRANTS [FOR user_name]
|
||
|
*/
|
||
|
class ParserShowGrantsQuery : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
const char * getName() const override { return "SHOW GRANTS query"; }
|
||
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
||
|
};
|
||
|
}
|