return AlreadyExist error

Former-commit-id: b80220e68e8a5a53c1a2fef4e90d8a4729a85996
This commit is contained in:
zhiru 2019-07-15 10:41:22 +08:00
parent 5d714dfb99
commit 8ca3b33cd8

View File

@ -347,7 +347,7 @@ namespace meta {
return Status::Error("Table already exists and it is in delete state, please wait a second");
}
else {
return Status::OK();//table already exists, no error
return Status::AlreadyExist("Table already exists");
}
}
}