Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8904918DC3 for ; Thu, 3 Dec 2015 16:43:12 +0000 (UTC) Received: (qmail 72016 invoked by uid 500); 3 Dec 2015 16:43:11 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 71956 invoked by uid 500); 3 Dec 2015 16:43:11 -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 71918 invoked by uid 99); 3 Dec 2015 16:43:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2015 16:43:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 28A032C1F8B for ; Thu, 3 Dec 2015 16:43:11 +0000 (UTC) Date: Thu, 3 Dec 2015 16:43:11 +0000 (UTC) From: "Tyler Hobbs (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-10796) Views do not handle single-column deletions of view PK columns correctly 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-10796?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15038060#comment-15038060 ] Tyler Hobbs commented on CASSANDRA-10796: ----------------------------------------- Thanks. I've removed the unused import and added the suggested test cases. I'm still seeing timeout problems with the dtests, so I've merged in the latest 3.0/3.1/trunk and scheduled a new test run. > Views do not handle single-column deletions of view PK columns correctly > ------------------------------------------------------------------------ > > Key: CASSANDRA-10796 > URL: https://issues.apache.org/jira/browse/CASSANDRA-10796 > Project: Cassandra > Issue Type: Bug > Components: Coordination > Reporter: Tyler Hobbs > Assignee: Tyler Hobbs > Fix For: 3.0.1, 3.1 > > > When a materialized view has a regular base column in its primary key, and that regular base column is deleted through a single-column deletion, the view does not handle it correctly, and may produce an error. > For example, with a table like: > {noformat} > CREATE TABLE foo ( > a int, b int, c int, d int > PRIMARY KEY (a, b) > ) > {noformat} > and a view like: > {noformat} > CREATE MATERIALIZED VIEW BAR > AS SELECT * FROM foo > WHERE ... > PRIMARY KEY (a, d, b) > {noformat} > a deletion like this will not be handled correctly: > {noformat} > DELETE d FROM foo WHERE a = 0 AND b = 0 > {noformat} > The source of the problem is that we aren't checking whether individual cells in the TemporalRow are live or not when building the clustering and partition key for the row. Instead, we're just using the cell value, which is an empty ByteBuffer. > I should have a patch with a fix and tests posted tomorrow. -- This message was sent by Atlassian JIRA (v6.3.4#6332)