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 C4A2B1116E for ; Mon, 7 Jul 2014 22:27:35 +0000 (UTC) Received: (qmail 4830 invoked by uid 500); 7 Jul 2014 22:27:34 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 4794 invoked by uid 500); 7 Jul 2014 22:27:34 -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 4675 invoked by uid 99); 7 Jul 2014 22:27:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jul 2014 22:27:34 +0000 Date: Mon, 7 Jul 2014 22:27:34 +0000 (UTC) From: "Jeremiah Jordan (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-7509) conditional updates don't work from cqlsh MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Jeremiah Jordan created CASSANDRA-7509: ------------------------------------------ Summary: conditional updates don't work from cqlsh Key: CASSANDRA-7509 URL: https://issues.apache.org/jira/browse/CASSANDRA-7509 Project: Cassandra Issue Type: Bug Components: Tools Reporter: Jeremiah Jordan Priority: Blocker {noformat} apache-cassandra-2.1.0-rc2/bin $ ./cqlsh Connected to Test Cluster at 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra 2.1.0-rc2 | CQL spec 3.1.7 | Native protocol v3] Use HELP for help. cqlsh> use ks1 system system_traces cqlsh> use ks1 ... ; cqlsh:ks1> create table users( ... userID uuid, ... fname text, ... lname text, ... email text, ... address text, ... zip int, ... state text, ... PRIMARY KEY ((userID, fname), state) ... ); cqlsh:ks1> insert into users (userID, email) VALUES (cfd66ccc-d857-4e90-b1e5-df98a3d40cd6, 'lauras@gmail.com') if not exists; code=2200 [Invalid query] message="Conditional updates are not supported by the protocol version in use. You need to upgrade to a driver using the native protocol v2." cqlsh:ks1> {noformat} -- This message was sent by Atlassian JIRA (v6.2#6252)