未验证 提交 635b16ac 编写于 作者: K KochetovNicolai 提交者: GitHub

Update MergeTreeDataPart.cpp

Skip size check for LowCardinality column file.
上级 77c884b7
......@@ -549,7 +549,7 @@ void MergeTreeDataPart::loadRowsCount()
for (const NameAndTypePair & column : columns)
{
ColumnPtr column_col = column.type->createColumn();
if (!column_col->isFixedAndContiguous())
if (!column_col->isFixedAndContiguous() || column_col->lowCardinality())
continue;
size_t column_size = getColumnSize(column.name, *column.type).data_uncompressed;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册