提交 644d2a4e 编写于 作者: J jinhai

Merge remote-tracking branch 'upstream/branch-0.3.1' into branch-0.3.1


Former-commit-id: c623a4aba15cdb7e5652ed5029090112ec01e8f1
...@@ -13,6 +13,7 @@ Please mark all change in change log and use the ticket from JIRA. ...@@ -13,6 +13,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-157 - fix changelog - MS-157 - fix changelog
- MS-190 - use env variable to switch mem manager and fix cmake - MS-190 - use env variable to switch mem manager and fix cmake
- MS-217 - Fix SQ8 row count bug - MS-217 - Fix SQ8 row count bug
- MS-224 - Return AlreadyExist status in MySQLMetaImpl::CreateTable if table already exists
## Improvement ## Improvement
- MS-156 - Add unittest for merge result functions - MS-156 - Add unittest for merge result functions
...@@ -22,11 +23,9 @@ Please mark all change in change log and use the ticket from JIRA. ...@@ -22,11 +23,9 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-208 - Add buildinde interface for C++ SDK - MS-208 - Add buildinde interface for C++ SDK
- MS-212 - Support Inner product metric type - MS-212 - Support Inner product metric type
## New Feature
- MS-195 - Add nlist and use_blas_threshold conf
## New Feature ## New Feature
- MS-180 - Add new mem manager - MS-180 - Add new mem manager
- MS-195 - Add nlist and use_blas_threshold conf
## Task ## Task
......
...@@ -347,7 +347,7 @@ namespace meta { ...@@ -347,7 +347,7 @@ namespace meta {
return Status::Error("Table already exists and it is in delete state, please wait a second"); return Status::Error("Table already exists and it is in delete state, please wait a second");
} }
else { else {
return Status::OK();//table already exists, no error return Status::AlreadyExist("Table already exists");
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册