Author: billie
Date: Fri Jan 18 00:18:06 2013
New Revision: 1434983

URL: http://svn.apache.org/viewvc?rev=1434983&view=rev
Log:
ACCUMULO-947 documented exclusivity of begin row option for merge shell command

Modified:
    
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/util/shell/commands/MergeCommand.java

Modified: 
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/util/shell/commands/MergeCommand.java
URL: 
http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/util/shell/commands/MergeCommand.java?rev=1434983&r1=1434982&r2=1434983&view=diff
==============================================================================
--- 
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/util/shell/commands/MergeCommand.java
 (original)
+++ 
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/util/shell/commands/MergeCommand.java
 Fri Jan 18 00:18:06 2013
@@ -92,7 +92,9 @@ public class MergeCommand extends Comman
     verboseOpt = new Option("v", "verbose", false, "verbose output during 
merge");
     sizeOpt = new Option("s", "size", true, "merge tablets to the given size 
over the entire table");
     forceOpt = new Option("f", "force", false, "merge small tablets to large 
tablets, even if it goes over the given size");
-    o.addOption(OptUtil.startRowOpt());
+    Option startRowOpt = OptUtil.startRowOpt();
+    startRowOpt.setDescription("begin row (NOT inclusive)");
+    o.addOption(startRowOpt);
     o.addOption(OptUtil.endRowOpt());
     o.addOption(OptUtil.tableOpt("table to be merged"));
     o.addOption(verboseOpt);


Reply via email to