HBASE-4170 createTable java doc needs to be improved

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1157328 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-08-13 05:36:31 +00:00
parent 20aef0eaf7
commit 5c8f6d6c9e
2 changed files with 2 additions and 3 deletions

View File

@ -434,6 +434,7 @@ Release 0.90.5 - Unreleased
HBASE-4168 A client continues to try and connect to a powered down HBASE-4168 A client continues to try and connect to a powered down
regionserver (Anirudh Todi) regionserver (Anirudh Todi)
HBASE-4196 TableRecordReader may skip first row of region (Ming Ma) 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 Release 0.90.4 - August 10, 2011

View File

@ -330,9 +330,7 @@ public class HBaseAdmin implements Abortable, Closeable {
/** /**
* Creates a new table with an initial set of empty regions defined by the * 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 * 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 * number of split keys plus one. Synchronous operation.
* the last region has a null end key).
* Synchronous operation.
* *
* @param desc table descriptor for table * @param desc table descriptor for table
* @param splitKeys array of split keys for the initial regions of the table * @param splitKeys array of split keys for the initial regions of the table