You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by br...@apache.org on 2012/11/23 22:51:14 UTC

[5/8] git commit: typos

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 <br...@apache.org>
Authored: Fri Nov 23 15:50:38 2012 -0600
Committer: Brandon Williams <br...@apache.org>
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.<ColumnSpecification>asList(names));