You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ty...@apache.org on 2015/02/10 20:21:35 UTC

cassandra git commit: nija: fix cqlsh completion for full() collection indexes

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1 f5380de5e -> ad91d4162


nija: fix cqlsh completion for full() collection indexes


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ad91d416
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ad91d416
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ad91d416

Branch: refs/heads/cassandra-2.1
Commit: ad91d41628e6e2ff89d552fc3630682cd1c29f3f
Parents: f5380de
Author: Tyler Hobbs <ty...@apache.org>
Authored: Tue Feb 10 13:20:51 2015 -0600
Committer: Tyler Hobbs <ty...@apache.org>
Committed: Tue Feb 10 13:20:51 2015 -0600

----------------------------------------------------------------------
 pylib/cqlshlib/cql3handling.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ad91d416/pylib/cqlshlib/cql3handling.py
----------------------------------------------------------------------
diff --git a/pylib/cqlshlib/cql3handling.py b/pylib/cqlshlib/cql3handling.py
index 31f0de2..f089cd7 100644
--- a/pylib/cqlshlib/cql3handling.py
+++ b/pylib/cqlshlib/cql3handling.py
@@ -1001,7 +1001,7 @@ syntax_rules += r'''
                                cf=<columnFamilyName> "(" (
                                    col=<cident> |
                                    "keys(" col=<cident> ")" |
-                                   "fullCollection(" col=<cident> ")"
+                                   "full(" col=<cident> ")"
                                ) ")"
                                ( "USING" <stringLiteral> ( "WITH" "OPTIONS" "=" <mapLiteral> )? )?
                          ;