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 6B5F818529 for ; Fri, 29 May 2015 20:55:19 +0000 (UTC) Received: (qmail 82036 invoked by uid 500); 29 May 2015 20:55:19 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 81994 invoked by uid 500); 29 May 2015 20:55:19 -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 81978 invoked by uid 99); 29 May 2015 20:55:19 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 May 2015 20:55:19 +0000 Date: Fri, 29 May 2015 20:55:19 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-13776) Setting illegal versions for HColumnDescriptor does not throw IllegalArgumentException 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-13776?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14565379#comment-14565379 ] Hudson commented on HBASE-13776: -------------------------------- FAILURE: Integrated in HBase-1.0 #937 (See [https://builds.apache.org/job/HBase-1.0/937/]) HBASE-13776 Revert due to warnOrThrowExceptionForFailure() absent in 1.0 (tedyu: rev 1c506828266aaf591e89a932c6612934987776e6) * hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java * hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFromClientSide.java HBASE-13776 Setting illegal versions for HColumnDescriptor does not throw IllegalArgumentException (Yuhao Bi) (tedyu: rev 70b7434c2283076c2fe2308fe0972577b4463ca0) * hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFromClientSide.java * hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java > Setting illegal versions for HColumnDescriptor does not throw IllegalArgumentException > --------------------------------------------------------------------------------------- > > Key: HBASE-13776 > URL: https://issues.apache.org/jira/browse/HBASE-13776 > Project: HBase > Issue Type: Bug > Affects Versions: 2.0.0, 0.98.14, 1.0.2, 1.2.0, 1.1.1 > Reporter: Yuhao Bi > Assignee: Yuhao Bi > Fix For: 2.0.0, 0.98.14, 1.0.2, 1.2.0, 1.1.1 > > Attachments: HBASE-13776-1.0.patch, HBASE-13776-v1.patch, HBASE-13776-v2.patch, HBASE-13776.patch > > > HColumnDescriptor hcd = new HColumnDescriptor( > new HColumnDescriptor(HConstants.CATALOG_FAMILY) > .setInMemory(true) > .setScope(HConstants.REPLICATION_SCOPE_LOCAL) > .setBloomFilterType(BloomType.NONE) > .setCacheDataInL1(true)); > final int minVersions = 123; > final int maxVersions = 234; > hcd.setMaxVersions(minVersions); > hcd.setMinVersions(maxVersions); > //no exception throw -- This message was sent by Atlassian JIRA (v6.3.4#6332)