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 7BDABD384 for ; Fri, 23 Nov 2012 21:51:16 +0000 (UTC) Received: (qmail 58340 invoked by uid 500); 23 Nov 2012 21:51:15 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 58276 invoked by uid 500); 23 Nov 2012 21:51:15 -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 58216 invoked by uid 99); 23 Nov 2012 21:51:14 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Nov 2012 21:51:14 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id AACD2319509; Fri, 23 Nov 2012 21:51:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brandonwilliams@apache.org To: commits@cassandra.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [5/8] git commit: typos Message-Id: <20121123215114.AACD2319509@tyr.zones.apache.org> Date: Fri, 23 Nov 2012 21:51:14 +0000 (UTC) typos Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/27db9665 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/27db9665 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/27db9665 Branch: refs/heads/trunk Commit: 27db966539f6912e38b100a1c7c62b2ab93df8b7 Parents: 64bc335 Author: Brandon Williams Authored: Fri Nov 23 15:50:38 2012 -0600 Committer: Brandon Williams Committed: Fri Nov 23 15:50:38 2012 -0600 ---------------------------------------------------------------------- .../cassandra/cql3/statements/SelectStatement.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/27db9665/src/java/org/apache/cassandra/cql3/statements/SelectStatement.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/cql3/statements/SelectStatement.java b/src/java/org/apache/cassandra/cql3/statements/SelectStatement.java index 4e61a7b..0a0dcfd 100644 --- a/src/java/org/apache/cassandra/cql3/statements/SelectStatement.java +++ b/src/java/org/apache/cassandra/cql3/statements/SelectStatement.java @@ -1264,8 +1264,8 @@ public class SelectStatement implements CQLStatement // - Have more than one IndexExpression // - Have no index expression and the column filter is not the identity if (stmt.metadataRestrictions.size() > 1 || (stmt.metadataRestrictions.isEmpty() && !stmt.columnFilterIsIdentity())) - throw new InvalidRequestException("Cannot execute this query as it might involve data filtering and thus may have impredictible performance. " - + "If you want to execute this query despite the performance impredictibility, use ALLOW FILTERING"); + throw new InvalidRequestException("Cannot execute this query as it might involve data filtering and thus may have unpredictable performance. " + + "If you want to execute this query despite the performance unpredictability, use ALLOW FILTERING"); } return new ParsedStatement.Prepared(stmt, Arrays.asList(names));