Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dflatbuffer_schema.cpp723 const std::string &rawIndexStr = entry.second; in ParseCheckIndexes() local
724 if (IsNotCompositeIndex(rawIndexStr)) { in ParseCheckIndexes()
734 for (uint32_t curPos = 0; curPos < rawIndexStr.size();) { in ParseCheckIndexes()
735 uint32_t nextCommaPos = rawIndexStr.find_first_of(',', curPos); in ParseCheckIndexes()
736 std::string eachIndexField = rawIndexStr.substr(curPos, nextCommaPos - curPos); in ParseCheckIndexes()
741 if (nextCommaPos >= rawIndexStr.size()) { // No ',' anymore in ParseCheckIndexes()