cqlsh: Fix NULL option in COPY cmds after CASS-10415

Patch by Stefania Alborghetti; reviewed by Tyler Hobbs for
CASSANDRA-10577
This commit is contained in:
Stefania Alborghetti 2015-10-27 09:10:10 -05:00 committed by Tyler Hobbs
parent 87f43ac51d
commit 78810f2550
1 changed files with 2 additions and 1 deletions

View File

@ -327,10 +327,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>
;