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 80F1411B5E for ; Tue, 15 Jul 2014 09:33:05 +0000 (UTC) Received: (qmail 71033 invoked by uid 500); 15 Jul 2014 09:33:05 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 70986 invoked by uid 500); 15 Jul 2014 09:33:05 -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 70973 invoked by uid 99); 15 Jul 2014 09:33:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jul 2014 09:33:05 +0000 Date: Tue, 15 Jul 2014 09:33:05 +0000 (UTC) From: "Hadoop QA (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-11064) Odd behaviors of TableName for empty namespace 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-11064?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14061879#comment-14061879 ] Hadoop QA commented on HBASE-11064: ----------------------------------- {color:red}-1 overall{color}. Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12655727/HBASE-11064.2.patch against trunk revision . ATTACHMENT ID: 12655727 {color:green}+1 @author{color}. The patch does not contain any @author tags. {color:green}+1 tests included{color}. The patch appears to include 3 new or modified tests. {color:red}-1 patch{color}. The patch command could not apply the patch. Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/10068//console This message is automatically generated. > Odd behaviors of TableName for empty namespace > ---------------------------------------------- > > Key: HBASE-11064 > URL: https://issues.apache.org/jira/browse/HBASE-11064 > Project: HBase > Issue Type: Bug > Affects Versions: 0.98.3 > Reporter: Hiroshi Ikeda > Assignee: Rekha Joshi > Priority: Trivial > Fix For: 0.99.0, 1.0.0, 0.98.5 > > Attachments: HBASE-11064.1.patch, HBASE-11064.2.patch > > > In the class TableName, > {code} > public static byte [] isLegalFullyQualifiedTableName(final byte[] tableName) { > ... > int namespaceDelimIndex = ... > if (namespaceDelimIndex == 0 || namespaceDelimIndex == -1){ > isLegalTableQualifierName(tableName); > } else { > ... > {code} > That means, for example, giving ":a" as the argument throws an exception which says invalid qualifier, instead of invalid namespace. > Also, TableName.valueOf(String) and valueOf(byte[]) can create an instance with empty namespace, which is inconsistent. -- This message was sent by Atlassian JIRA (v6.2#6252)