mirror of https://github.com/milvus-io/milvus.git
fix(db): fix compile error
Former-commit-id: e260fd302903e714dd2eb8fcf2e589f3ecdcc029pull/191/head
parent
33ffb08a88
commit
0b5d7e0437
|
@ -15,7 +15,7 @@ namespace vecwise {
|
|||
namespace engine {
|
||||
namespace meta {
|
||||
|
||||
long GetFileSize(const std::string& filename)
|
||||
long LocalMetaImpl::GetFileSize(const std::string& filename)
|
||||
{
|
||||
struct stat stat_buf;
|
||||
int rc = stat(filename.c_str(), &stat_buf);
|
||||
|
|
|
@ -53,6 +53,7 @@ private:
|
|||
std::string GetGroupMetaPath(const std::string& group_id);
|
||||
|
||||
Status CreateGroupMeta(const GroupSchema& group_schema);
|
||||
long GetFileSize(const std::string& filename);
|
||||
|
||||
Status initialize();
|
||||
|
||||
|
|
Loading…
Reference in New Issue