2020-08-19 08:34:03 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-22 17:52:35 +00:00
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/shared_ptr_helper.h>
|
2020-08-19 08:34:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
|
|
|
|
|
|
/** System table "time_zones" with list of timezones pulled from /contrib/cctz/testdata/zoneinfo
|
|
|
|
*/
|
2021-06-15 19:55:21 +00:00
|
|
|
class StorageSystemTimeZones final : public shared_ptr_helper<StorageSystemTimeZones>,
|
2020-08-19 08:34:03 +00:00
|
|
|
public IStorageSystemOneBlock<StorageSystemTimeZones>
|
|
|
|
{
|
2021-06-15 19:55:21 +00:00
|
|
|
friend struct shared_ptr_helper<StorageSystemTimeZones>;
|
2020-08-19 08:34:03 +00:00
|
|
|
|
|
|
|
protected:
|
2021-04-10 23:33:54 +00:00
|
|
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
|
2020-08-19 08:34:03 +00:00
|
|
|
|
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::string getName() const override { return "SystemTimeZones"; }
|
|
|
|
|
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
|
|
|
};
|
|
|
|
}
|