Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/
H A Drd_utils.cpp189 int RdKVRangeScan(GRD_DB *db, const char *collectionName, const Key &beginKey, const Key &endKey, in RdKVRangeScan() argument
197 GRD_KVItemT endInnerKey{(void *)&endKey[0], (uint32_t)endKey.size()}; in RdKVRangeScan()
H A Drd_single_ver_result_set.h28 const Key &endKey, GRD_KvScanModeE kvScanMode);
H A Drd_single_ver_result_set.cpp31 const Key &endKey, GRD_KvScanModeE kvScanMode) in RdSingleVerResultSet() argument
32 : beginKey_(beginKey), endKey_(endKey), kvScanMode_(kvScanMode), kvDB_(kvDB) {} in RdSingleVerResultSet()
H A Drd_single_ver_storage_executor.h69 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 Drd_single_ver_natural_store_connection.cpp137 std::string endKey; in PrintResultsetKeys() local
144 endKey = "NULL"; in PrintResultsetKeys()
146 endKey.assign(endKeyVec.begin(), endKeyVec.end()); in PrintResultsetKeys()
149 LOGD("begin key: %s, end key: %s", beginKey.c_str(), endKey.c_str()); in PrintResultsetKeys()
H A Drd_single_ver_storage_executor.cpp78 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 Drd_utils.h58 int RdKVRangeScan(GRD_DB *db, const char *collectionName, const Key &beginKey, const Key &endKey,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Dvirtual_single_ver_sync_db_Interface.cpp414 Key endKey = startKey; in GetSyncData() local
415 endKey.resize(DBConstant::MAX_KEY_SIZE, UCHAR_MAX); in GetSyncData()
430 data.key >= startKey && data.key <= endKey) { in GetSyncData()