From commits-return-21562-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Tue Mar 6 20:25:44 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 22140180676 for ; Tue, 6 Mar 2018 20:25:43 +0100 (CET) Received: (qmail 49956 invoked by uid 500); 6 Mar 2018 19:25:43 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 49940 invoked by uid 99); 6 Mar 2018 19:25:43 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Mar 2018 19:25:43 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A5D8582259; Tue, 6 Mar 2018 19:25:42 +0000 (UTC) Date: Tue, 06 Mar 2018 19:25:43 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] 01/01: Merge branch '1.7' into 1.8 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: mmiller@apache.org In-Reply-To: <152036434256.16466.16992873507064121461@gitbox.apache.org> References: <152036434256.16466.16992873507064121461@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/1.8 X-Git-Reftype: branch X-Git-Rev: d2908b52e4e9e19500a3eed50a46ebed23b11627 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20180306192542.A5D8582259@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. mmiller pushed a commit to branch 1.8 in repository https://gitbox.apache.org/repos/asf/accumulo.git commit d2908b52e4e9e19500a3eed50a46ebed23b11627 Merge: 82d8368 68f70d5 Author: Mike Miller AuthorDate: Tue Mar 6 14:11:38 2018 -0500 Merge branch '1.7' into 1.8 .../org/apache/accumulo/core/client/impl/TableOperationsImpl.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --cc core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java index aea8740,d976c4d..be4999f --- a/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java +++ b/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java @@@ -1115,9 -1079,9 +1118,9 @@@ public class TableOperationsImpl extend } } - Range range = new KeyExtent(tableId, null, null).toMetadataRange(); + Range range; if (startRow == null || lastRow == null) - range = new KeyExtent(new Text(tableId), null, null).toMetadataRange(); + range = new KeyExtent(tableId, null, null).toMetadataRange(); else range = new Range(startRow, lastRow); -- To stop receiving notification emails like this one, please contact mmiller@apache.org.