sandeepvinayak commented on a change in pull request #2345:
URL: https://github.com/apache/hbase/pull/2345#discussion_r483365950
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java
##########
@@ -79,9 +81,12 @@
private boolean outputJSON;
// The following enable filtering by sequence, region, and row, respectively
private long sequence;
- private String table;
+
+ // List of tables for filter
+ private Set<String> tableList;
Review comment:
I used Set since every WALEntry is going to search in the Set which is
optimal for search.
as @virajjasani pointed out in another comment
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]