fix build

This commit is contained in:
Nikolai Kochetov 2018-04-17 14:12:11 +03:00
parent b8957e4d97
commit 7f9454cc77

View File

@ -38,7 +38,7 @@ public:
MutableColumnPtr cloneResized(size_t size) const override
{
auto unique_ptr = column_unique;
return ColumnWithDictionary::create(std::move(unique_ptr)->mutate(), indexes->cloneResized(size));
return ColumnWithDictionary::create((*std::move(unique_ptr)).mutate(), indexes->cloneResized(size));
}
size_t size() const override { return indexes->size(); }