You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/08/13 07:35:52 UTC

svn commit: r1157327 - in /hbase/branches/0.90: CHANGES.txt src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java

Author: stack
Date: Sat Aug 13 05:35:52 2011
New Revision: 1157327

URL: http://svn.apache.org/viewvc?rev=1157327&view=rev
Log:
HBASE-4170 createTable java doc needs to be improved

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1157327&r1=1157326&r2=1157327&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Sat Aug 13 05:35:52 2011
@@ -7,6 +7,7 @@ Release 0.90.5 - Unreleased
                regionserver (Anirudh Todi)
    HBASE-4186  No region is added to HRegionServer.regionsInTransitionInRS
    HBASE-4196  TableRecordReader may skip first row of region (Ming Ma)
+   HBASE-4170  createTable java doc needs to be improved (Mubarak Seyed)
   
 Release 0.90.4 - August 10, 2011
   BUG FIXES

Modified: hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java?rev=1157327&r1=1157326&r2=1157327&view=diff
==============================================================================
--- hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java (original)
+++ hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java Sat Aug 13 05:35:52 2011
@@ -273,9 +273,7 @@ public class HBaseAdmin implements Abort
   /**
    * Creates a new table with an initial set of empty regions defined by the
    * specified split keys.  The total number of regions created will be the
-   * number of split keys plus one (the first region has a null start key and
-   * the last region has a null end key).
-   * Synchronous operation.
+   * number of split keys plus one. Synchronous operation.
    *
    * @param desc table descriptor for table
    * @param splitKeys array of split keys for the initial regions of the table