mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into trunk
This commit is contained in:
commit
cfb7aceac5
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
|
||||
2.1.1
|
||||
* (cqlsh) Tab completeion for indexes on map keys (CASSANDRA-7972)
|
||||
* (cqlsh) Fix UDT field selection in select clause (CASSANDRA-7891)
|
||||
* Fix resource leak in event of corrupt sstable
|
||||
* (cqlsh) Add command line option for cqlshrc file path (CASSANDRA-7131)
|
||||
|
|
|
|||
|
|
@ -984,7 +984,7 @@ def create_cf_composite_primary_key_comma_completer(ctxt, cass):
|
|||
|
||||
syntax_rules += r'''
|
||||
<createIndexStatement> ::= "CREATE" "CUSTOM"? "INDEX" ("IF" "NOT" "EXISTS")? indexname=<identifier>? "ON"
|
||||
cf=<columnFamilyName> "(" col=<cident> ")"
|
||||
cf=<columnFamilyName> ( "(" col=<cident> ")" | "(" "KEYS" "(" col=<cident> ")" ")")
|
||||
( "USING" <stringLiteral> ( "WITH" "OPTIONS" "=" <mapLiteral> )? )?
|
||||
;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue