ClickHouse/src/Storages/System/StorageSystemTimeZones.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
509 B
C++
Raw Normal View History

#include "StorageSystemTimeZones.h"
#include <algorithm>
#include <DataTypes/DataTypeString.h>
extern const char * auto_time_zones[];
namespace DB
{
NamesAndTypesList StorageSystemTimeZones::getNamesAndTypes()
{
return {
{"time_zone", std::make_shared<DataTypeString>()},
};
}
void StorageSystemTimeZones::fillData(MutableColumns & res_columns, ContextPtr, const SelectQueryInfo &) const
{
for (auto * it = auto_time_zones; *it; ++it)
2020-08-24 20:29:56 +00:00
res_columns[0]->insert(String(*it));
}
}