mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
19 lines
362 B
C++
19 lines
362 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** Parses queries like
|
|
* SHOW QUOTAS
|
|
* SHOW QUOTA USAGE [CURRENT | ALL]
|
|
*/
|
|
class ParserShowQuotasQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "SHOW QUOTA query"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
}
|