mirror of https://github.com/milvus-io/milvus.git
fix(db): fix meta compile error
Former-commit-id: dde5e3262cc177db2fad98d82ee129718936fa01pull/191/head
parent
e6b0c5a099
commit
d4dae8127b
|
@ -4,7 +4,6 @@ namespace zilliz {
|
|||
namespace vecwise {
|
||||
namespace engine {
|
||||
|
||||
}
|
||||
|
||||
} // namespace engine
|
||||
} // namespace vecwise
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
#ifndef VECENGINE_DB_META_H_
|
||||
#define VECENGINE_DB_META_H_
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <cstddef>
|
||||
#include <vector>
|
||||
#include "options.h"
|
||||
#include "status.h"
|
||||
|
||||
namespace zilliz {
|
||||
namespace vecwise {
|
||||
|
@ -59,5 +64,3 @@ public:
|
|||
} // namespace engine
|
||||
} // namespace vecwise
|
||||
} // namespace zilliz
|
||||
|
||||
#endif // VECENGINE_DB_META_H_
|
||||
|
|
|
@ -4,63 +4,63 @@ namespace zilliz {
|
|||
namespace vecwise {
|
||||
namespace engine {
|
||||
|
||||
Status DBMetaImpl::DBMetaImpl(DBMetaOptions options_)
|
||||
DBMetaImpl::DBMetaImpl(const DBMetaOptions& options_)
|
||||
: _options(options_) {
|
||||
initialize();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::initialize() {
|
||||
// PXU TODO: Create DB Connection
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::add_group(const GroupOptions& options_,
|
||||
const std::string& group_id_,
|
||||
GroupSchema& group_info_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::get_group(const std::string& group_id_, GroupSchema& group_info_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::has_group(const std::string& group_id_, bool& has_or_not_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::add_group_file(const std::string& group_id_,
|
||||
GroupFileSchema& group_file_info_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::has_group_file(const std::string& group_id_,
|
||||
const std::string& file_id_,
|
||||
bool& has_or_not_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::get_group_file(const std::string& group_id_,
|
||||
const std::string& file_id_,
|
||||
GroupFileSchema& group_file_info_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::get_group_files(const std::string& group_id_,
|
||||
const int date_delta_,
|
||||
GroupFilesSchema& group_files_info_) {
|
||||
// PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::update_group_file(const GroupFileSchema& group_file_) {
|
||||
//PXU TODO
|
||||
return Status.OK();
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
} // namespace engine
|
||||
|
|
|
@ -10,7 +10,7 @@ namespace engine {
|
|||
|
||||
class DBMetaImpl : public Meta {
|
||||
public:
|
||||
DBMetaImpl(DBMetaOptions& options_);
|
||||
DBMetaImpl(const DBMetaOptions& options_);
|
||||
|
||||
virtual Status add_group(const GroupOptions& options_,
|
||||
const std::string& group_id_,
|
||||
|
|
Loading…
Reference in New Issue