fix(db): fix compile error

Former-commit-id: b0734cdc673bbc74ef8b670e2d6f56edc5364eec
pull/191/head
Xu Peng 2019-04-17 16:59:31 +08:00 committed by xj.lin
parent 2bc205b791
commit cc5290693d
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();