mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Treat dynamic/object structure streams as dynamic
This commit is contained in:
parent
0dad8b088a
commit
b7b88737ad
@ -427,7 +427,8 @@ bool ISerialization::isDynamicSubcolumn(const DB::ISerialization::SubstreamPath
|
||||
|
||||
for (size_t i = 0; i != prefix_len; ++i)
|
||||
{
|
||||
if (path[i].type == SubstreamType::DynamicData || path[i].type == SubstreamType::ObjectData)
|
||||
if (path[i].type == SubstreamType::DynamicData || path[i].type == SubstreamType::DynamicStructure
|
||||
|| path[i].type == SubstreamType::ObjectData || path[i].type == SubstreamType::ObjectStructure)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user