We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76cb29 commit 69062c9Copy full SHA for 69062c9
clickhouse/columns/string.cpp
@@ -248,6 +248,7 @@ void ColumnString::Append(ColumnRef column) {
248
if (blocks_.size() == 0 || blocks_.back().GetAvailable() < total_size)
249
blocks_.emplace_back(std::max(DEFAULT_BLOCK_SIZE, total_size));
250
251
+ // Intentionally not doing items_.reserve() since that cripples performance.
252
for (size_t i = 0; i < column->Size(); ++i) {
253
this->AppendUnsafe((*col)[i]);
254
}
0 commit comments