DB.cpp 640 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*******************************************************************************
 * Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 ******************************************************************************/

#include "DBImpl.h"
#include "DBMetaImpl.h"
#include "Factories.h"

namespace zilliz {
J
jinhai 已提交
12
namespace milvus {
13 14 15
namespace engine {

void DB::Open(const Options& options, DB** dbptr) {
G
groot 已提交
16
    *dbptr = DBFactory::Build(options);
17 18 19
}

} // namespace engine
J
jinhai 已提交
20
} // namespace milvus
21
} // namespace zilliz