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 46B1B18C41 for ; Thu, 21 Jan 2016 10:59:29 +0000 (UTC) Received: (qmail 70070 invoked by uid 500); 21 Jan 2016 10:59:29 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 70035 invoked by uid 500); 21 Jan 2016 10:59:29 -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 70013 invoked by uid 99); 21 Jan 2016 10:59:28 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jan 2016 10:59:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C7AD4DFF94; Thu, 21 Jan 2016 10:59:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: blerer@apache.org To: commits@cassandra.apache.org Message-Id: <05b5bad391e64b308a3311d82a444222@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cassandra git commit: Update CQL documentation (CASSANDRA-10899) Date: Thu, 21 Jan 2016 10:59:28 +0000 (UTC) Repository: cassandra Updated Branches: refs/heads/cassandra-3.0 5006e1c81 -> 722671895 Update CQL documentation (CASSANDRA-10899) patch by Tyler Hobbs; reviewed by Benjamin Lerer for CASSANDRA-10899 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/72267189 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/72267189 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/72267189 Branch: refs/heads/cassandra-3.0 Commit: 7226718957acc6a347e89463f986ade87b3634ab Parents: 5006e1c Author: Tyler Hobbs Authored: Thu Jan 21 11:57:35 2016 +0100 Committer: Benjamin Lerer Committed: Thu Jan 21 11:57:35 2016 +0100 ---------------------------------------------------------------------- CHANGES.txt | 1 + doc/cql3/CQL.textile | 25 +++++++++++++------------ 2 files changed, 14 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/72267189/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index dec3ce7..89d34ec 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 3.0.3 + * Update CQL documentation (CASSANDRA-10899) * Check the column name, not cell name, for dropped columns when reading legacy sstables (CASSANDRA-11018) * Don't attempt to index clustering values of static rows (CASSANDRA-11021) http://git-wip-us.apache.org/repos/asf/cassandra/blob/72267189/doc/cql3/CQL.textile ---------------------------------------------------------------------- diff --git a/doc/cql3/CQL.textile b/doc/cql3/CQL.textile index f0072c0..e48e890 100644 --- a/doc/cql3/CQL.textile +++ b/doc/cql3/CQL.textile @@ -502,7 +502,7 @@ bc(syntax).. ::= CREATE MATERIALIZED VIEW ( IF NOT EXISTS )? AS SELECT ( '(' ( ',' ) * ')' | '*' ) FROM - WHERE ( IS NOT NULL ( AND IS NOT NULL )* )? + ( WHERE )? PRIMARY KEY '(' ( ',' )* ')' ( WITH