2019-11-04 19:18:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
|
|
/** Implements the `quotas` system tables, which allows you to get information about quotas.
|
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageSystemQuotas final : public ext::shared_ptr_helper<StorageSystemQuotas>, public IStorageSystemOneBlock<StorageSystemQuotas>
|
2019-11-04 19:18:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string getName() const override { return "SystemQuotas"; }
|
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend struct ext::shared_ptr_helper<StorageSystemQuotas>;
|
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
|
|
|
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo &) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|