ClickHouse/src/Storages/System/StorageSystemQuotasUsage.h
2021-06-16 23:28:41 +03:00

27 lines
793 B
C++

#pragma once
#include <common/shared_ptr_helper.h>
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class Context;
/** Implements the `quotas_usage` system table, which allows you to get information about
* how all users use the quotas.
*/
class StorageSystemQuotasUsage final : public shared_ptr_helper<StorageSystemQuotasUsage>, public IStorageSystemOneBlock<StorageSystemQuotasUsage>
{
public:
std::string getName() const override { return "SystemQuotasUsage"; }
static NamesAndTypesList getNamesAndTypes();
protected:
friend struct shared_ptr_helper<StorageSystemQuotasUsage>;
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
};
}