smiklosovic commented on code in PR #4876:
URL: https://github.com/apache/cassandra/pull/4876#discussion_r3388753880


##########
src/java/org/apache/cassandra/tools/nodetool/Rebuild.java:
##########
@@ -52,6 +55,11 @@ public class Rebuild extends AbstractCommand
             description = "Use --exclude-local-dc to exclude nodes in local 
data center as source for streaming.")
     private boolean excludeLocalDatacenterNodes = false;
 
+    @Option(paramLabel = "specific_tables",
+    names = {"-tb", "--table"},
+    description = "Use -tb to scope the rebuild to particular table")
+    private Set<String> tables = new HashSet<>();

Review Comment:
   so on empty --tables, all code path will be executed with empty set instead 
of null, right?



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