mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
fix build
This commit is contained in:
parent
b8957e4d97
commit
7f9454cc77
@ -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(); }
|
||||
|
Loading…
Reference in New Issue
Block a user