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/03/31 07:54:22 UTC

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

Author: stack
Date: Thu Mar 31 05:54:22 2011
New Revision: 1087192

URL: http://svn.apache.org/viewvc?rev=1087192&view=rev
Log:
HBASE-3717 deprecate HTable isTableEnabled() methods in favor of HBaseAdmin methods

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

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1087192&r1=1087191&r2=1087192&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Thu Mar 31 05:54:22 2011
@@ -1,4 +1,9 @@
 HBase Change Log
+Release 0.90.3 - Unreleased
+  IMPROVEMENT
+   HBASE-3717  deprecate HTable isTableEnabled() methods in favor of HBaseAdmin
+               methods (David Butler via Stack)
+
 Release 0.90.2 - Unreleased
   BUG FIXES
    HBASE-3545  Possible liveness issue with MasterServerAddress in

Modified: hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTable.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTable.java?rev=1087192&r1=1087191&r2=1087192&view=diff
==============================================================================
--- hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTable.java (original)
+++ hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTable.java Thu Mar 31 05:54:22 2011
@@ -216,6 +216,7 @@ public class HTable implements HTableInt
 
   /**
    * Tells whether or not a table is enabled or not.
+   * Warning: use {@link HBaseAdmin#isTableEnabled(byte[])} instead.
    * @param tableName Name of table to check.
    * @return {@code true} if table is online.
    * @throws IOException if a remote or network exception occurs
@@ -226,6 +227,7 @@ public class HTable implements HTableInt
 
   /**
    * Tells whether or not a table is enabled or not.
+   * Warning: use {@link HBaseAdmin#isTableEnabled(byte[])} instead.
    * @param tableName Name of table to check.
    * @return {@code true} if table is online.
    * @throws IOException if a remote or network exception occurs
@@ -236,6 +238,7 @@ public class HTable implements HTableInt
 
   /**
    * Tells whether or not a table is enabled or not.
+   * Warning: use {@link HBaseAdmin#isTableEnabled(byte[])} instead.
    * @param conf The Configuration object to use.
    * @param tableName Name of table to check.
    * @return {@code true} if table is online.