2019-12-01 22:01:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
#include <Parsers/IAST_fwd.h>
|
2020-02-10 02:26:56 +00:00
|
|
|
#include <optional>
|
2019-12-01 22:01:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class ASTCreateQuotaQuery;
|
|
|
|
struct Quota;
|
|
|
|
|
|
|
|
|
|
|
|
class InterpreterCreateQuotaQuery : public IInterpreter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InterpreterCreateQuotaQuery(const ASTPtr & query_ptr_, Context & context_) : query_ptr(query_ptr_), context(context_) {}
|
|
|
|
|
|
|
|
BlockIO execute() override;
|
|
|
|
|
|
|
|
bool ignoreQuota() const override { return true; }
|
|
|
|
bool ignoreLimits() const override { return true; }
|
|
|
|
|
2020-02-21 19:27:12 +00:00
|
|
|
static void updateQuotaFromQuery(Quota & quota, const ASTCreateQuotaQuery & query);
|
2019-12-01 22:01:05 +00:00
|
|
|
|
2020-02-21 19:27:12 +00:00
|
|
|
private:
|
2019-12-01 22:01:05 +00:00
|
|
|
ASTPtr query_ptr;
|
|
|
|
Context & context;
|
|
|
|
};
|
|
|
|
}
|