add knowhere

Former-commit-id: 009352f91536d366e3559f19614ced91f8be01e0
pull/191/head
Yu Kun 2019-08-08 16:32:17 +08:00
parent 275cea60ff
commit 5707abd092
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@ cpp/cmake-build-debug/
cpp/cmake-build-release/
cpp/cmake_build
cpp/.idea/
cpp/thirdparty/knowhere_build
.idea/
.ycm_extra_conf.py

View File

@ -107,6 +107,8 @@ CreateTableTask::CreateTableTask(const ::milvus::grpc::TableSchema& schema)
BaseTaskPtr
CreateTableTask::Create(const ::milvus::grpc::TableSchema& schema) {
// BaseTaskPtr create_table_task_ptr = std::make_shared<CreateTableTask>(schema);
// return create_table_task_ptr;
return std::shared_ptr<BaseTask>(new CreateTableTask(schema));
}