2020-05-08 12:50:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
|
|
/// Implements `quota_limits` system table, which allows you to get information about the limits set for quotas.
|
|
|
|
class StorageSystemQuotaLimits final : public ext::shared_ptr_helper<StorageSystemQuotaLimits>, public IStorageSystemOneBlock<StorageSystemQuotaLimits>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string getName() const override { return "SystemQuotaLimits"; }
|
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend struct ext::shared_ptr_helper<StorageSystemQuotaLimits>;
|
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
2021-04-10 23:33:54 +00:00
|
|
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
|
2020-05-08 12:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|