Searched refs:beginKey (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_utils.cpp | 189 int RdKVRangeScan(GRD_DB *db, const char *collectionName, const Key &beginKey, const Key &endKey, in RdKVRangeScan() argument 196 GRD_KVItemT beginInnerKey{(void *)&beginKey[0], (uint32_t)beginKey.size()}; in RdKVRangeScan()
|
H A D | rd_single_ver_result_set.h | 27 RdSingleVerResultSet(RdSingleVerNaturalStore *kvDB, const Key &beginKey,
|
H A D | rd_single_ver_result_set.cpp | 30 RdSingleVerResultSet::RdSingleVerResultSet(RdSingleVerNaturalStore *kvDB, const Key &beginKey, in RdSingleVerResultSet() argument 32 : beginKey_(beginKey), endKey_(endKey), kvScanMode_(kvScanMode), kvDB_(kvDB) {} in RdSingleVerResultSet()
|
H A D | rd_single_ver_storage_executor.h | 69 int GetCount(const Key &beginKey, const Key &endKey, int &count, GRD_KvScanModeE kvScanMode); 107 int OpenResultSet(const Key &beginKey, const Key &endKey, GRD_ResultSet **resultSet);
|
H A D | rd_single_ver_natural_store_connection.cpp | 136 std::string beginKey; in PrintResultsetKeys() local 139 beginKey = "NULL"; in PrintResultsetKeys() 141 beginKey.assign(beginKeyVec.begin(), beginKeyVec.end()); in PrintResultsetKeys() 149 LOGD("begin key: %s, end key: %s", beginKey.c_str(), endKey.c_str()); in PrintResultsetKeys()
|
H A D | rd_single_ver_storage_executor.cpp | 78 int RdSingleVerStorageExecutor::OpenResultSet(const Key &beginKey, const Key &endKey, GRD_ResultSet… in OpenResultSet() argument 80 int errCode = RdKVRangeScan(db_, SYNC_COLLECTION_NAME, beginKey, endKey, resultSet); in OpenResultSet() 241 int RdSingleVerStorageExecutor::GetCount(const Key &beginKey, const Key &endKey, int &count, GRD_Kv… in GetCount() argument 245 int errCode = RdKVRangeScan(db_, SYNC_COLLECTION_NAME, beginKey, endKey, &tmpResultSet); in GetCount()
|
H A D | rd_utils.h | 58 int RdKVRangeScan(GRD_DB *db, const char *collectionName, const Key &beginKey, const Key &endKey,
|