Home
last modified time | relevance | path

Searched refs:cloudSchema_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/
H A Dschema_mgr.cpp32 if (cloudSchema_ == nullptr) { in ChkSchema()
196 cloudSchema_ = std::make_shared<DataBaseSchema>(cloudSchema); in SetCloudDbSchema()
201 return cloudSchema_; in GetCloudDbSchema()
206 if (cloudSchema_ == nullptr) { in GetCloudTableSchema()
209 for (const TableSchema &tableSchema : cloudSchema_->tables) { in GetCloudTableSchema()
220 if (cloudSchema_ == nullptr) { in IsSharedTable()
226 for (const auto &tableSchema : (*cloudSchema_).tables) { in IsSharedTable()
238 if (cloudSchema_ == nullptr) { in GetSharedTableOriginNames()
243 for (const auto &item : cloudSchema_->tables) { in GetSharedTableOriginNames()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/cloud/
H A Dschema_mgr.h46 std::shared_ptr<DataBaseSchema> cloudSchema_ = nullptr; variable