Update randomString.cpp

This commit is contained in:
alexey-milovidov 2020-05-09 21:54:23 +03:00 committed by GitHub
parent 4a66b10669
commit d459f07eee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,6 @@ public:
if (length > (1 << 30))
throw Exception("Too large string size in function " + getName(), ErrorCodes::TOO_LARGE_STRING_SIZE);
IColumn::Offset next_offset = offset + length + 1;
data_to.resize(next_offset);
offsets_to[row_num] = next_offset;