ClickHouse/src/Storages/System/StorageSystemSettingsProfiles.h

24 lines
680 B
C++
Raw Normal View History

#pragma once
#include <boost/noncopyable.hpp>
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class Context;
/// Implements `settings_profiles` system table, which allows you to get information about profiles.
class StorageSystemSettingsProfiles final : public IStorageSystemOneBlock<StorageSystemSettingsProfiles>, boost::noncopyable
{
public:
std::string getName() const override { return "SystemSettingsProfiles"; }
static NamesAndTypesList getNamesAndTypes();
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
};
}