Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 19398 invoked from network); 8 Dec 2010 15:38:23 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Dec 2010 15:38:23 -0000 Received: (qmail 44400 invoked by uid 500); 8 Dec 2010 15:38:23 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 44253 invoked by uid 500); 8 Dec 2010 15:38:23 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 44244 invoked by uid 99); 8 Dec 2010 15:38:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Dec 2010 15:38:22 +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; Wed, 08 Dec 2010 15:38:21 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id oB8Fc1ME019036 for ; Wed, 8 Dec 2010 15:38:01 GMT Message-ID: <31945436.16901291822681466.JavaMail.jira@thor> Date: Wed, 8 Dec 2010 10:38:01 -0500 (EST) From: "Brandon Williams (JIRA)" To: commits@cassandra.apache.org Subject: [jira] Commented: (CASSANDRA-1837) Deleted columns are resurrected after a flush In-Reply-To: <23923063.16821291821961386.JavaMail.jira@thor> 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/CASSANDRA-1837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12969345#action_12969345 ] Brandon Williams commented on CASSANDRA-1837: --------------------------------------------- I had a suspicion it was related to CASSANDRA-1780, but I backed it out and the problem persists. > Deleted columns are resurrected after a flush > --------------------------------------------- > > Key: CASSANDRA-1837 > URL: https://issues.apache.org/jira/browse/CASSANDRA-1837 > Project: Cassandra > Issue Type: Bug > Components: Core > Affects Versions: 0.7.0 rc 1 > Reporter: Brandon Williams > Fix For: 0.7.0 > > > Easily reproduced with the cli: > {noformat} > [default@unknown] create keyspace testks; > 2785d67c-02df-11e0-ac09-e700f669bcfc > [default@unknown] use testks; > Authenticated to keyspace: testks > [default@testks] create column family testcf; > 2fbad20d-02df-11e0-ac09-e700f669bcfc > [default@testks] set testcf['test']['foo'] = 'foo'; > Value inserted. > [default@testks] set testcf['test']['bar'] = 'bar'; > Value inserted. > [default@testks] list testcf; > Using default limit of 100 > ------------------- > RowKey: test > => (column=626172, value=626172, timestamp=1291821869120000) > => (column=666f6f, value=666f6f, timestamp=1291821857320000) > 1 Row Returned. > [default@testks] del testcf['test']; > row removed. > [default@testks] list testcf; > Using default limit of 100 > ------------------- > RowKey: test > 1 Row Returned. > {noformat} > Now flush testks and look again: > {noformat} > [default@testks] list testcf; > Using default limit of 100 > ------------------- > RowKey: test > => (column=626172, value=626172, timestamp=1291821869120000) > => (column=666f6f, value=666f6f, timestamp=1291821857320000) > 1 Row Returned. > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.