Home
last modified time | relevance | path

Searched refs:documentObj (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Ddocument_store.cpp326 valStr = documentObj.Print(); // If cant not find data, insert it. in GetUpsertRePlaceData()
342 errCode = JsonCommon::Append(originValue, documentObj, isReplace); in GetUpsertRePlaceData()
369 documentObj.InsertItemObject(0, idObj); in InsertIdToDocument()
383 const std::string &document, JsonObject &documentObj, bool &isReplace) in UpsertDataIntoDB() argument
436 errCode = CheckCommon::CheckUpdata(documentObj); in UpsertDocumentFormatCheck()
457 JsonObject documentObj = JsonObject::Parse(document, errCode, true); in UpsertDocument() local
462 errCode = UpsertDocumentFormatCheck(document, documentObj); in UpsertDocument()
503 JsonObject &documentObj, bool &isIdExist) in InsertDataIntoDB() argument
508 JsonObject documentObjChild = documentObj.GetChild(); in InsertDataIntoDB()
526 JsonObject documentObj = JsonObject::Parse(document, errCode, true); in InsertDocument() local
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/
H A Dcheck_common.cpp140 int CheckCommon::CheckDocument(JsonObject &documentObj, bool &isIdExist) in CheckDocument() argument
142 if (documentObj.GetDeep() > JSON_DEEP_MAX) { in CheckDocument()
146 int ret = CheckIdFormat(documentObj, isIdExist); in CheckDocument()
150 JsonObject documentObjChild = documentObj.GetChild(); in CheckDocument()
H A Dcheck_common.h34 static int CheckDocument(JsonObject &documentObj, bool &isIdExist);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/
H A Ddocument_store.h73 JsonObject &documentObj, bool &isReplace);
74 …sertDataIntoDB(const std::string &collection, const std::string &document, JsonObject &documentObj,