tutububug commented on code in PR #2142:
URL: https://github.com/apache/kvrocks/pull/2142#discussion_r1517108803


##########
src/storage/redis_db.cc:
##########
@@ -99,10 +99,18 @@ rocksdb::Status Database::GetMetadata(RedisTypes types, 
const Slice &ns_key, std
 }
 
 rocksdb::Status Database::GetRawMetadata(const Slice &ns_key, std::string 
*bytes) {
+  return getRaw(ns_key, bytes);
+}
+
+rocksdb::Status Database::GetRawData(const Slice &key, std::string *bytes) {
+  return getRaw(key, bytes);
+}
+
+rocksdb::Status Database::getRaw(const Slice &key, std::string *bytes) {

Review Comment:
   The code changed here should be reset, it's not in use now.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to