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 cc697ab commit ab5a7b9Copy full SHA for ab5a7b9
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).toView();
2150
- ReadBufferFromMemory buf(value);
+ auto value = shared_data_values->getDataAt(j);
+ 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