ClickHouse/src/Storages/System/StorageSystemCurrentRoles.h
2021-10-02 10:13:14 +03:00

25 lines
769 B
C++

#pragma once
#include <base/shared_ptr_helper.h>
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class Context;
/// Implements `current_roles` system table, which allows you to get information about current roles.
class StorageSystemCurrentRoles final : public shared_ptr_helper<StorageSystemCurrentRoles>, public IStorageSystemOneBlock<StorageSystemCurrentRoles>
{
public:
std::string getName() const override { return "SystemCurrentRoles"; }
static NamesAndTypesList getNamesAndTypes();
protected:
friend struct shared_ptr_helper<StorageSystemCurrentRoles>;
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo &) const override;
};
}