Repository: cassandra Updated Branches: refs/heads/trunk af922ca6c -> adadd7761
Fix CQLSH parser syntax (follow-up CASSANDRA-11935) Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/8884302f Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/8884302f Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/8884302f Branch: refs/heads/trunk Commit: 8884302fac940c0504f1258eddd213aa2e17309d Parents: 5de016f Author: Benjamin Lerer <[email protected]> Authored: Fri Nov 25 09:47:57 2016 +0100 Committer: Benjamin Lerer <[email protected]> Committed: Fri Nov 25 09:47:57 2016 +0100 ---------------------------------------------------------------------- pylib/cqlshlib/cql3handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/8884302f/pylib/cqlshlib/cql3handling.py ---------------------------------------------------------------------- diff --git a/pylib/cqlshlib/cql3handling.py b/pylib/cqlshlib/cql3handling.py index f81b19f..f759422 100644 --- a/pylib/cqlshlib/cql3handling.py +++ b/pylib/cqlshlib/cql3handling.py @@ -152,7 +152,7 @@ JUNK ::= /([ \t\r\f\v]+|(--|[/][/])[^\n\r]*([\n\r]|$)|[/][*].*?[*][/])/ ; <colon> ::= ":" ; <star> ::= "*" ; <endtoken> ::= ";" ; -<op> ::= /[+-=%/,().]/ ; +<op> ::= /[-+=%/,().]/ ; <cmp> ::= /[<>!]=?/ ; <brackets> ::= /[][{}]/ ;
