Addition to prev. revision [#CLICKHOUSE-2765].

This commit is contained in:
Alexey Milovidov 2017-01-22 13:03:28 +03:00
parent f41480f1cd
commit f22a2303c7

View File

@ -36,5 +36,5 @@ const DateLUTImpl & DateLUT::getImplementation(const std::string & time_zone) co
if (it == impls.end())
it->second = std::make_unique<DateLUTImpl>(time_zone);
return it->second;
return *it->second;
}