Home
last modified time | relevance | path

Searched refs:schemaIndexes_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_object.cpp97 schemaIndexes_ = other.schemaIndexes_; in SchemaObject()
111 schemaIndexes_ = other.schemaIndexes_; in operator =()
202 return schemaIndexes_; in GetIndexInfo()
210 return (schemaIndexes_.count(indexName) != 0); in IsIndexExist()
633 schemaIndexes_.clear(); in ParseCheckSchemaIndexes()
712 if (schemaIndexes_.count(indexName) != 0) { in ParseCheckEachIndexFromStringArray()
717 return CheckFieldPathIndexableThenSave(indexPathVec, schemaIndexes_[indexName]); in ParseCheckEachIndexFromStringArray()
961 for (const auto &entry : newSchema.schemaIndexes_) { in CompareSchemaIndexes()
962 if (schemaIndexes_.count(entry.first) == 0) { in CompareSchemaIndexes()
974 for (const auto &entry : schemaIndexes_) { in CompareSchemaIndexes()
[all …]
H A Dflatbuffer_schema.cpp753 if (owner_.schemaIndexes_.size() > SchemaConstant::SCHEMA_INDEX_COUNT_MAX) { in ParseCheckIndexes()
754 … LOGE("[FBSchema][ParseIndex] Index count=%zu exceed limitation.", owner_.schemaIndexes_.size()); in ParseCheckIndexes()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_object.h206 std::map<IndexName, IndexInfo> schemaIndexes_; variable