ClickHouse/src/Storages/System/StorageSystemQuotas.h

26 lines
735 B
C++
Raw Normal View History

2019-11-04 19:18:17 +00:00
#pragma once
2021-10-02 07:13:14 +00:00
#include <base/shared_ptr_helper.h>
2019-11-04 19:18:17 +00:00
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class Context;
/** Implements the `quotas` system tables, which allows you to get information about quotas.
*/
2021-06-15 19:55:21 +00:00
class StorageSystemQuotas final : public 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:
2021-06-15 19:55:21 +00:00
friend struct shared_ptr_helper<StorageSystemQuotas>;
2019-11-04 19:18:17 +00:00
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
2019-11-04 19:18:17 +00:00
};
}