Merge branch 'cassandra-2.2' into cassandra-3.0

This commit is contained in:
Tyler Hobbs 2015-10-27 09:12:22 -05:00
commit d856d3d7bb
1 changed files with 2 additions and 1 deletions

View File

@ -340,10 +340,11 @@ cqlsh_extra_syntax_rules = r'''
( "WITH" <copyOption> ( "AND" <copyOption> )* )?
;
<copyOption> ::= [optnames]=<identifier> "=" [optvals]=<copyOptionVal>
<copyOption> ::= [optnames]=(<identifier>|<reserved_identifier>) "=" [optvals]=<copyOptionVal>
;
<copyOptionVal> ::= <identifier>
| <reserved_identifier>
| <stringLiteral>
;