Merge branch 'cassandra-2.1' into trunk

This commit is contained in:
Tyler Hobbs 2014-09-19 16:03:07 -05:00
commit 0ef0394dfd
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@
2.1.1
* (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)
* Provide visibility into prepared statements churn (CASSANDRA-7921, CASSANDRA-7930)

View File

@ -607,7 +607,10 @@ syntax_rules += r'''
| "*"
| "COUNT" "(" star=( "*" | "1" ) ")" ("AS" <cident>)?
;
<udtSubfieldSelection> ::= <identifier> "." <identifier>
;
<selector> ::= [colname]=<cident>
| <udtSubfieldSelection>
| "WRITETIME" "(" [colname]=<cident> ")"
| "TTL" "(" [colname]=<cident> ")"
| <functionName> <selectionFunctionArguments>