Return-Path: Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: (qmail 60673 invoked from network); 19 Oct 2010 21:51:50 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 19 Oct 2010 21:51:50 -0000 Received: (qmail 22415 invoked by uid 500); 19 Oct 2010 21:51:50 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 22399 invoked by uid 500); 19 Oct 2010 21:51:50 -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 22391 invoked by uid 99); 19 Oct 2010 21:51:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 21:51:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 21:51:48 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o9JLpQGp009171 for ; Tue, 19 Oct 2010 21:51:27 GMT Message-ID: <19865429.56351287525086627.JavaMail.jira@thor> Date: Tue, 19 Oct 2010 17:51:26 -0400 (EDT) From: "Jean-Daniel Cryans (JIRA)" To: issues@hbase.apache.org Subject: [jira] Resolved: (HBASE-2156) HBASE-2037 broke Scan MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-2156?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jean-Daniel Cryans resolved HBASE-2156. --------------------------------------- Resolution: Fixed Thanks Stack, committed to trunk and re-closing the issue. > HBASE-2037 broke Scan > --------------------- > > Key: HBASE-2156 > URL: https://issues.apache.org/jira/browse/HBASE-2156 > Project: HBase > Issue Type: Bug > Affects Versions: 0.20.3 > Reporter: Jean-Daniel Cryans > Assignee: Jean-Daniel Cryans > Priority: Blocker > Fix For: 0.90.0, 0.20.3 > > Attachments: HBASE-2156-test-fix.patch, HBASE-2156.patch, HBASE-2156.test-enabled.patch > > > Paul Ambrose wrote to the mailing list about some tests he has that doesn't pass on 0.20.3RC1-2. Looking into the issue it appears that this modification: > {code} > public Scan addFamily(byte [] family) { > familyMap.remove(family); > - familyMap.put(family, null); > + familyMap.put(family, EMPTY_NAVIGABLE_SET); > return this; > } > {code} > Makes it that when you use addColumn after that you put qualifiers into EMPTY_NAVIGABLE_SET which is static hence shared among all scanners after that like META scanners when calling tableExists. > This was introduced by HBASE-2037. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.