ClickHouse/dbms/src/Parsers/ASTShowQuotasQuery.h
2019-12-05 21:03:57 +03:00

25 lines
444 B
C++

#pragma once
#include <Parsers/ASTQueryWithOutput.h>
namespace DB
{
/** SHOW QUOTAS
* SHOW QUOTA USAGE [CURRENT | ALL]
*/
class ASTShowQuotasQuery : public ASTQueryWithOutput
{
public:
bool usage = false;
bool current = false;
String getID(char) const override;
ASTPtr clone() const override;
protected:
void formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
};
}