rename the variable name collection_schema (#2126)

Signed-off-by: DanielHuang1983 <huanghe888@hotmail.com>
This commit is contained in:
DanielHuang1983 2020-04-26 16:03:52 +08:00 committed by GitHub
parent 53133aafac
commit 7ecafbd93a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -432,9 +432,9 @@ TEST_F(MySqlMetaTest, ARCHIVE_TEST_DISK) {
collection.collection_id_ = collection_id;
auto status = impl.CreateCollection(collection);
milvus::engine::meta::CollectionSchema table_schema;
table_schema.collection_id_ = "";
status = impl.CreateCollection(table_schema);
milvus::engine::meta::CollectionSchema collection_schema;
collection_schema.collection_id_ = "";
status = impl.CreateCollection(collection_schema);
milvus::engine::meta::SegmentsSchema files;
milvus::engine::meta::SegmentSchema table_file;