Skip to content

Commit edf7392

Browse files
fix build through different versions merge
1 parent 98c0047 commit edf7392

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ydb/core/tx/columnshard/engines/portions/column_record.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ TChunkMeta::TChunkMeta(const TColumnChunkLoadContext& context, const TIndexInfo&
1414
if (context.GetMetaProto().HasRawBytes()) {
1515
RawBytes = context.GetMetaProto().GetRawBytes();
1616
}
17-
if (proto.HasMaxValue()) {
18-
AFL_VERIFY(field)("field_id", address.GetColumnId())("field_name", indexInfo.GetColumnName(address.GetColumnId()));
19-
Max = ConstantToScalar(proto.GetMaxValue(), field->type());
17+
if (context.GetMetaProto().HasMaxValue()) {
18+
AFL_VERIFY(field)("field_id", context.GetAddress().GetColumnId())("field_name", indexInfo.GetColumnName(context.GetAddress().GetColumnId()));
19+
Max = ConstantToScalar(context.GetMetaProto().GetMaxValue(), field->type());
2020
}
2121
return TConclusionStatus::Success();
2222
}

0 commit comments

Comments
 (0)