mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Revert "Attempt to fix Stress test (MSan)"
This commit is contained in:
parent
085359c110
commit
c25558ad2e
@ -106,8 +106,8 @@ public:
|
||||
auto & dst_offsets = dst_column->getOffsets();
|
||||
|
||||
size_t reserve = Func::getBufferSize(input->getChars().size(), input->size());
|
||||
dst_data.resize_fill(reserve);
|
||||
dst_offsets.resize_fill(input_rows_count);
|
||||
dst_data.resize(reserve);
|
||||
dst_offsets.resize(input_rows_count);
|
||||
|
||||
const ColumnString::Offsets & src_offsets = input->getOffsets();
|
||||
|
||||
@ -164,7 +164,7 @@ public:
|
||||
src_offset_prev = src_offsets[row];
|
||||
}
|
||||
|
||||
dst_data.resize_fill(dst_pos - dst);
|
||||
dst_data.resize(dst_pos - dst);
|
||||
|
||||
return dst_column;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user