[
https://issues.apache.org/jira/browse/HBASE-11797?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118777#comment-14118777
]
Hudson commented on HBASE-11797:
--------------------------------
FAILURE: Integrated in HBase-TRUNK #5458 (See
[https://builds.apache.org/job/HBase-TRUNK/5458/])
HBASE-11797 Create Table interface to replace HTableInterface (Carter) (enis:
rev 211c1e8ad439f2dfbbd2f07ce099c0f948e06df3)
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java
*
hbase-server/src/main/java/org/apache/hadoop/hbase/rest/client/RemoteHTable.java
* hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/HTablePool.java
* hbase-server/src/main/java/org/apache/hadoop/hbase/client/HTableWrapper.java
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
> Create Table interface to replace HTableInterface
> -------------------------------------------------
>
> Key: HBASE-11797
> URL: https://issues.apache.org/jira/browse/HBASE-11797
> Project: HBase
> Issue Type: Bug
> Reporter: Carter
> Assignee: Carter
> Fix For: 0.99.0, 2.0.0
>
> Attachments: HBASE_11797.patch, HBASE_11797_v2.patch,
> HBASE_11797_v3.patch, hbase-11797_v4.patch
>
>
> Basically doing this:
> {code}
> interface Table {
> // get, put related stuff
> }
> @Deprecated
> interface HTableInterface extends Table {
> // users are encouraged to use the new Table interface
> }
> class HTable extends Table {
> // all HTable constructors are deprecated
> // Users are not encouraged to see this class
> }
> {code}
> I'm proposing that in this JIRA I move everything from HTableInterface to
> Table except the following:
> * Anything deprecated
> * Anything @InterfaceAudience.Private ({{coprocessorService(...)}} and
> {{batchCoprocessorService(...)}})
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)