mirror of https://github.com/apache/cassandra
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:
parent
87f43ac51d
commit
78810f2550
|
|
@ -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>
|
||||
;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue