swamirishi commented on code in PR #9317:
URL: https://github.com/apache/ozone/pull/9317#discussion_r2551165133


##########
hadoop-hdds/framework/src/test/java/org/apache/hadoop/hdds/utils/db/InMemoryTestTable.java:
##########
@@ -30,14 +30,24 @@
  */
 public class InMemoryTestTable<KEY, VALUE> implements Table<KEY, VALUE> {
   private final NavigableMap<KEY, VALUE> map;
+  private final String name;
 
   public InMemoryTestTable() {
-    this(Collections.emptyMap());
+    this("");
   }
 
   public InMemoryTestTable(Map<KEY, VALUE> map) {
+    this(map, "");
+  }
+
+  public InMemoryTestTable(String name) {
+    this(Collections.emptyMap(), name);
+  }
+
+  public InMemoryTestTable(Map<KEY, VALUE> map, String name) {
     this.map = new ConcurrentSkipListMap<>(map);
     this.map.putAll(map);

Review Comment:
   Code change unrelated to PR



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to