ClickHouse/src/Storages/System/StorageSystemQuotas.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
900 B
C++
Raw Normal View History

2019-11-04 19:18:17 +00:00
#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class Context;
/** Implements the `quotas` system tables, which allows you to get information about quotas.
*/
class StorageSystemQuotas final : public IStorageSystemOneBlock<StorageSystemQuotas>
2019-11-04 19:18:17 +00:00
{
public:
std::string getName() const override { return "SystemQuotas"; }
static NamesAndTypesList getNamesAndTypes();
void backupData(BackupEntriesCollector & backup_entries_collector, const String & data_path_in_backup, const std::optional<ASTs> & partitions) override;
void restoreDataFromBackup(RestorerFromBackup & restorer, const String & data_path_in_backup, const std::optional<ASTs> & partitions) override;
2019-11-04 19:18:17 +00:00
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
2019-11-04 19:18:17 +00:00
};
}