Merge branch 'master' of github.com:yandex/ClickHouse

This commit is contained in:
Alexey Milovidov 2017-04-08 04:32:24 +03:00
commit ba9590d340

View File

@ -4,9 +4,6 @@
namespace DB
{
template class SetVariantsTemplate<NonClearableSet>;
template class SetVariantsTemplate<ClearableSet>;
namespace ErrorCodes
{
extern const int UNKNOWN_SET_DATA_VARIANT;
@ -169,4 +166,7 @@ typename SetVariantsTemplate<Variant>::Type SetVariantsTemplate<Variant>::choose
return Type::hashed;
}
template struct SetVariantsTemplate<NonClearableSet>;
template struct SetVariantsTemplate<ClearableSet>;
}