Remove redundant empty lines (#11138)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-11-03 11:38:15 +08:00 committed by GitHub
parent a60a303aec
commit 885e5f4210
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,17 +44,14 @@ InsertRecord::InsertRecord(const Schema& schema, int64_t size_per_chunk)
this->append_field_data<int32_t>(size_per_chunk);
break;
}
case DataType::INT64: {
this->append_field_data<int64_t>(size_per_chunk);
break;
}
case DataType::FLOAT: {
this->append_field_data<float>(size_per_chunk);
break;
}
case DataType::DOUBLE: {
this->append_field_data<double>(size_per_chunk);
break;
@ -65,4 +62,5 @@ InsertRecord::InsertRecord(const Schema& schema, int64_t size_per_chunk)
}
}
}
} // namespace milvus::segcore