Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 25E3611DCF for ; Wed, 3 Sep 2014 18:23:53 +0000 (UTC) Received: (qmail 49105 invoked by uid 500); 3 Sep 2014 18:23:53 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 49051 invoked by uid 500); 3 Sep 2014 18:23:52 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 49038 invoked by uid 99); 3 Sep 2014 18:23:52 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Sep 2014 18:23:52 +0000 Date: Wed, 3 Sep 2014 18:23:52 +0000 (UTC) From: "Enis Soztutar (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HBASE-11826) Split each tableOrRegionName admin methods into two targetted methods MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-11826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Enis Soztutar updated HBASE-11826: ---------------------------------- Attachment: hbase-11826_v3.patch reattach. > Split each tableOrRegionName admin methods into two targetted methods > --------------------------------------------------------------------- > > Key: HBASE-11826 > URL: https://issues.apache.org/jira/browse/HBASE-11826 > Project: HBase > Issue Type: Improvement > Reporter: Carter > Assignee: Carter > Fix For: 0.99.0, 2.0.0 > > Attachments: HBASE_11826.patch, HBASE_11826_v2.patch, HBASE_11826_v2.patch, hbase-11826_v3.patch, hbase-11826_v3.patch > > > Purpose of this is two implement [~enis]'s suggestion to strongly type the methods that take "tableOrRegionName" as an argument. > For instance: > {code} > void compact(final String tableNameOrRegionName) > void compact(final byte[] tableNameOrRegionName) > {code} > becomes > {code} > @Deprecated > void compact(final String tableNameOrRegionName) > @Deprecated > void compact(final byte[] tableNameOrRegionName) > void compact(TableName table) > void compactRegion(final byte[] regionName) > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)