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 ab5a7b9 commit a8f5fecCopy full SHA for a8f5fec
src/Columns/ColumnObject.cpp
@@ -2146,8 +2146,8 @@ void ColumnObject::repairDuplicatesInDynamicPathsAndSharedData(size_t offset)
2146
/// and we cannot repair it anyhow. Throw logical error exception in this case.
2147
else
2148
{
2149
- auto value = shared_data_values->getDataAt(j);
2150
- ReadBufferFromMemory buf(value.data, value.size);
+ auto value = shared_data_values->getDataAt(j).toView();
+ ReadBufferFromMemory buf(value.data(), value.size());
2151
auto type_from_shared_data = decodeDataType(buf);
2152
if (!isNothing(type_from_shared_data))
2153
0 commit comments