Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 53876 invoked from network); 23 Jun 2008 18:23:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Jun 2008 18:23:06 -0000 Received: (qmail 22688 invoked by uid 500); 23 Jun 2008 18:23:08 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 22673 invoked by uid 500); 23 Jun 2008 18:23:08 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 22658 invoked by uid 99); 23 Jun 2008 18:23:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jun 2008 11:23:08 -0700 X-ASF-Spam-Status: No, hits=-1999.0 required=10.0 tests=ALL_TRUSTED,FB_WORD1_END_DOLLAR X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jun 2008 18:22:26 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 34DC1234C145 for ; Mon, 23 Jun 2008 11:22:45 -0700 (PDT) Message-ID: <1854908446.1214245365215.JavaMail.jira@brutus> Date: Mon, 23 Jun 2008 11:22:45 -0700 (PDT) From: "stack (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Assigned: (HBASE-702) deleteall doesn't In-Reply-To: <1008250019.1214244885331.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-702?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack reassigned HBASE-702: --------------------------- Assignee: stack > deleteall doesn't > ----------------- > > Key: HBASE-702 > URL: https://issues.apache.org/jira/browse/HBASE-702 > Project: Hadoop HBase > Issue Type: Bug > Reporter: stack > Assignee: stack > Fix For: 0.2.0 > > > From the list, cure at xg dot pol: > {code} > Hi > Hbase 0.2.0 dev - fresh from trunk > Example : > I have a table x with column : 'col'. > i put somevalue into column 'col' for row 'aaa': > HTable table = new HTable("x"); > BatchUpdate batch = new BatchUpdate("aaa"); > batch.put("col:", "somevalue".getBytes()); > table.commit(batch); > i deleteAll - full denial remove 'aaa' > table.deleteAll("aaa".getBytes()); > but on shell i see that this row still exists. > when i use deleteAll(row, column) - it's ok and value is removed. > Thanks - Antony > {code} > I then tried it myself: > {code} > durruti:~/Documents/checkouts/hbase/trunk stack$ ./bin/hbase shell > HBase Shell; enter 'help' for list of supported commands. > Version: 0.2.0-dev, r670651, Mon Jun 23 11:08:56 PDT 2008 > hbase(main):001:0> scan 'x' > ROW COLUMN+CELL > aaa column=x:, timestamp=1214243416011, value=somevalue > 1 row(s) in 0.1760 seconds > hbase(main):002:0> deleteall 'x', 'aaa' > 0 row(s) in 0.0030 seconds > hbase(main):003:0> scan 'x' > ROW COLUMN+CELL > aaa column=x:, timestamp=1214243416011, value=somevalue > 1 row(s) in 0.0100 seconds > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.