We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 574da81 commit e76cb29Copy full SHA for e76cb29
1 file changed
clickhouse/columns/string.cpp
@@ -247,7 +247,6 @@ void ColumnString::Append(ColumnRef column) {
247
// TODO: fill up existing block with some items and then add a new one for the rest of items
248
if (blocks_.size() == 0 || blocks_.back().GetAvailable() < total_size)
249
blocks_.emplace_back(std::max(DEFAULT_BLOCK_SIZE, total_size));
250
- items_.reserve(items_.size() + col->Size());
251
252
for (size_t i = 0; i < column->Size(); ++i) {
253
this->AppendUnsafe((*col)[i]);
0 commit comments