mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 10:15:43 +00:00
related: #49071 Signed-off-by: MrPresent-Han <chun.han@gmail.com> Co-authored-by: MrPresent-Han <chun.han@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
MrPresent-Han
Claude Opus 4.7
parent
47a57f2473
commit
3aadc7a226
@@ -283,7 +283,14 @@ class ColumnVector final : public SimpleVector {
|
||||
|
||||
auto old_size = length_;
|
||||
values_->FillFieldData(other.GetRawData(), other.size());
|
||||
length_ += other.size();
|
||||
|
||||
auto values_length = values_->Length();
|
||||
AssertInfo(values_length >= old_size,
|
||||
"ColumnVector append length mismatch: values_length {} < "
|
||||
"old_size {}",
|
||||
values_length,
|
||||
old_size);
|
||||
length_ = values_length;
|
||||
valid_values_.resize(length_);
|
||||
|
||||
// Copy validity from other
|
||||
|
||||
Reference in New Issue
Block a user