mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
33 lines
783 B
C++
33 lines
783 B
C++
#pragma once
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** Implements `databases` system table, which allows you to get information about all databases.
|
|
*/
|
|
class StorageSystemDatabases : public ext::shared_ptr_helper<StorageSystemDatabases>, public IStorageSystemOneBlock<StorageSystemDatabases>
|
|
{
|
|
friend struct ext::shared_ptr_helper<StorageSystemDatabases>;
|
|
public:
|
|
std::string getName() const override
|
|
{
|
|
return "SystemDatabases";
|
|
}
|
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
|
|
|
protected:
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
|
|
|
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo &) const override;
|
|
};
|
|
|
|
}
|