fix(db): fix compile error

Former-commit-id: e260fd302903e714dd2eb8fcf2e589f3ecdcc029
pull/191/head
Xu Peng 2019-04-17 16:59:31 +08:00
parent 33ffb08a88
commit 0b5d7e0437
2 changed files with 2 additions and 1 deletions

View File

@ -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);

View File

@ -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();