Repository: cassandra Updated Branches: refs/heads/trunk aef76ddac -> a70982162
Remove incorrect test comment about ALLOW FILTERING Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/a7098216 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/a7098216 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/a7098216 Branch: refs/heads/trunk Commit: a709821629a91c02f059507828894e5ef194f770 Parents: aef76dd Author: Tyler Hobbs <[email protected]> Authored: Thu Feb 19 13:25:09 2015 -0600 Committer: Tyler Hobbs <[email protected]> Committed: Thu Feb 19 13:25:09 2015 -0600 ---------------------------------------------------------------------- .../unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/a7098216/test/unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java ---------------------------------------------------------------------- diff --git a/test/unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java b/test/unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java index b674ba2..cde4f92 100644 --- a/test/unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java +++ b/test/unit/org/apache/cassandra/cql3/SelectWithTokenFunctionTest.java @@ -225,7 +225,6 @@ public class SelectWithTokenFunctionTest extends CQLTester { createTable("CREATE TABLE IF NOT EXISTS %s (a int, b int, c int, d int, PRIMARY KEY ((a, b), c, d))"); // just test that the queries don't error - // note: these shouldn't require ALLOW FILTERING execute("SELECT * FROM %s WHERE token(a, b) > token(0, 0) AND c > 10 ALLOW FILTERING;"); execute("SELECT * FROM %s WHERE c > 10 AND token(a, b) > token(0, 0) ALLOW FILTERING;"); execute("SELECT * FROM %s WHERE token(a, b) > token(0, 0) AND (c, d) > (0, 0) ALLOW FILTERING;");
