2018-07-20 13:17:16 +00:00
|
|
|
#pragma once
|
2018-07-23 16:10:57 +00:00
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
2018-07-20 13:17:16 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2018-07-24 14:28:56 +00:00
|
|
|
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageSystemCollations final : public ext::shared_ptr_helper<StorageSystemCollations>,
|
2018-07-23 16:10:57 +00:00
|
|
|
public IStorageSystemOneBlock<StorageSystemCollations>
|
2018-07-20 13:17:16 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageSystemCollations>;
|
2018-07-20 13:17:16 +00:00
|
|
|
protected:
|
2018-07-24 14:28:56 +00:00
|
|
|
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo & query_info) const override;
|
2018-07-20 13:17:16 +00:00
|
|
|
|
2018-07-23 16:10:57 +00:00
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
2018-07-24 14:28:56 +00:00
|
|
|
public:
|
2018-07-20 13:17:16 +00:00
|
|
|
|
2018-07-24 14:28:56 +00:00
|
|
|
std::string getName() const override { return "SystemTableCollations"; }
|
2018-07-20 13:17:16 +00:00
|
|
|
|
2018-07-24 14:28:56 +00:00
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
2018-07-20 13:17:16 +00:00
|
|
|
};
|
2018-07-24 14:28:56 +00:00
|
|
|
|
2018-07-20 13:17:16 +00:00
|
|
|
}
|