Home
last modified time | relevance | path

Searched refs:CompareAgainstSchemaObject (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/
H A Drelational_schema_object.h70 …int CompareAgainstSchemaObject(const std::string &inSchemaString, std::map<std::string, int> &cmpR…
72 int CompareAgainstSchemaObject(const RelationalSchemaObject &inSchemaObject,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_object.h88 int CompareAgainstSchemaObject(const SchemaObject &inSchemaObject) const;
89 …int CompareAgainstSchemaObject(const SchemaObject &inSchemaObject, IndexDifference &indexDiffer) c…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_negotiate.cpp64 errCode = localSchema.CompareAgainstSchemaObject(remoteSchemaObj); in MakeLocalSyncOpinion()
69 errCode = remoteSchemaObj.CompareAgainstSchemaObject(localSchema); in MakeLocalSyncOpinion()
H A Dschema_object.cpp245 return CompareAgainstSchemaObject(newSchema, indexDiffer); in CompareAgainstSchemaString()
248 int SchemaObject::CompareAgainstSchemaObject(const SchemaObject &inSchemaObject) const in CompareAgainstSchemaObject() function in DistributedDB::SchemaObject
251 return CompareAgainstSchemaObject(inSchemaObject, indexDiffer); in CompareAgainstSchemaObject()
254 int SchemaObject::CompareAgainstSchemaObject(const SchemaObject &inSchemaObject, IndexDifference &i… in CompareAgainstSchemaObject() function in DistributedDB::SchemaObject
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/upgrader/
H A Dsingle_ver_schema_database_upgrader.cpp54 errCode = oriSchemaObject.CompareAgainstSchemaObject(newSchema_, indexDiffer); in ExecuteUpgradeSchema()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Drelational_schema_object.cpp350 int RelationalSchemaObject::CompareAgainstSchemaObject(const std::string &inSchemaString, in CompareAgainstSchemaObject() function in DistributedDB::RelationalSchemaObject
356 int RelationalSchemaObject::CompareAgainstSchemaObject(const RelationalSchemaObject &inSchemaObject, in CompareAgainstSchemaObject() function in DistributedDB::RelationalSchemaObject
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_schema_object_test.cpp1147 int ret = schema.CompareAgainstSchemaObject(schema, indexDiffer);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_natural_store.cpp1585 errCode = localSchema.CompareAgainstSchemaObject(remoteSchema); in CheckCompatible()
1591 errCode = remoteSchema.CompareAgainstSchemaObject(localSchema); in CheckCompatible()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dkvdb_manager.cpp923 return (oldSchema.CompareAgainstSchemaObject(newSchema) == -E_SCHEMA_EQUAL_EXACTLY); in CompareSchemaObject()